Version 4.1.6¶
Release Date: January 3, 2022
4.1.6 release of CodeIgniter4
SECURITY¶
- Deserialization of Untrusted Data found in the
old()function was fixed. See the Security advisory for more information.
BREAKING¶
- Multiple table names will no longer be stored in
BaseBuilder::$tableName- an empty string will be used instead.
Validation changes¶
- The previous version of the Validation can’t handle an array item.
Because of the bug fix, the validation results may be different,
or raise a
TypeError. But the previous version’s results are probably incorrect. - The Validation separated the validation process of multiple field
like
contacts.*.nameand single field. When a single field has an array data, the previous version validates each element of the array. The validation rule gets an element of the array as the parameter. On the other hand, the current version passes the array to the validation rule as a whole.
Enhancements¶
- Database pane on debug toolbar now displays location where Query was called from. Also displays full backtrace.
- Subqueries in QueryBuilder can now be an instance of the BaseBuilder class.
Changes¶
- The process of sending cookies has been moved to the
Responseclass. Now theSecurityandCookieStoreclass don’t send cookies, set them to the Response.
Deprecations¶
Seeder::faker()andSeeder::$fakerare deprecated.BaseBuilder::cleanClone()is deprecated.
Sending Cookies¶
The process of sending cookies has been moved to the Response class.
And the following methods are deprecated:
CookieStore::dispatch()CookieStore::setRawCookie()CookieStore::setCookie()Security::sendCookie()Security::doSendCookie()
Bugs Fixed¶
See the repo’s CHANGELOG.md for a complete list of bugs fixed.