Version 4.3.2
Release Date: February 18, 2023
4.3.2 release of CodeIgniter4
BREAKING
Behavior Changes
base_url()
Due to a bug, in previous versions
base_url()
without argument returned baseURL without a trailing slash (/
) likehttp://localhost:8080
.Now it returns baseURL with a trailing slash. This is the same behavior as
base_url()
in CodeIgniter 3.
uri_string()
The parameter
$relative
inuri_string()
was removed. Due to a bug, the function always returned a path relative to baseURL.When baseURL is accessed, it will now return an empty string (
''
). This is the same behavior asuri_string()
in CodeIgniter 3. In previous versions it returned/
.
Bugs Fixed
QueryBuilder:
where()
generates incorrect SQL when usingRawSql
QueryBuilder:
RawSql
passed toset()
disappears without errorSession: Can’t connect to Redis with
RedisHandler
over TLSAutoloader: May not add Composer package’s namespaces
Parser:
!
does not work if delimiters are changedUserGuide: Added missing items in ChangeLog and Upgrading Guide v4.3.0
See the repo’s CHANGELOG.md for a complete list of bugs fixed.