CodeIgniter Forums
v4.4.2 bug fix released - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: General (https://forum.codeigniter.com/forumdisplay.php?fid=1)
+--- Forum: News & Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=2)
+--- Thread: v4.4.2 bug fix released (/showthread.php?tid=88693)



v4.4.2 bug fix released - kenjis - 10-19-2023

Hi, all.

We are pleased to announce the release of v4.4.2.

This release fixes 17 bugs.

The following relatively important bug fixes are included:
- CI returns "200 OK" when PageNotFound
- base_url()/site_url() does not work on CLI
- named routes don't work with spark
- spark may not show exceptions or show backtrace as json
- spark routes may show incorrect route names

With this version, 4.4 is now pretty stable. All pre-4.4 users are also encouraged to upgrade.

ChangeLog: https://codeigniter.com/user_guide/changelogs/v4.4.2.html
Upgrading Guide: https://codeigniter.com/user_guide/installation/upgrade_442.html


RE: v4.4.2 bug fix released - InsiteFX - 10-19-2023

Thank you CodeIgniter Development Team.


RE: v4.4.2 bug fix released - FabriceL - 10-19-2023

Congratulations to the whole team. Well done for all your hard work


RE: v4.4.2 bug fix released - ozornick - 10-19-2023

Nice work! We are waiting for version 4.5


RE: v4.4.2 bug fix released - MrWhite - 10-22-2023

Big thanks Smile


RE: v4.4.2 bug fix released - nina674 - 10-23-2023

Thanks for the fix!


RE: v4.4.2 bug fix released - chronic - 10-25-2023

Am I the only one who, after the version update,

Code:
codeigniter4/framework (v4.4.2)
codeigniter4/shield (dev-develop 92b5755)

finds myself having authentication problems with shield?

PHP Code:
Call to undefined function CodeIgniter\Shield\Filters\auth() 

Furthermore, if I insert it into the list of helpers to load in the BaseController it is not loaded:

PHP Code:
protected $helpers = ['auth''setting']; 

I need to load it like this in the initController

PHP Code:
helper('auth'); 

Sorry if maybe this isn't the right thread in which I'm reporting, but having updated both together with composer I don't understand which of the two created my problems.


RE: v4.4.2 bug fix released - kenjis - 10-25-2023

The issue is not on CI 4.4.2. It is on Shield.
I recommend you go https://github.com/codeigniter4/shield/discussions
See https://github.com/codeigniter4/shield/blob/develop/UPGRADING.md#version-100-beta7-to-100-beta8
and if you use `develop` branch, it is better to watch the repository.


RE: v4.4.2 bug fix released - kenjis - 10-26-2023

v4.4.3 security fix has been released.
See https://forum.codeigniter.com/showthread.php?tid=88730


RE: v4.4.2 bug fix released - chronic - 10-28-2023

Thanks kenjis, you solved my problem.

Now I have also saved the URL for the future.