File tree Expand file tree Collapse file tree 6 files changed +41
-22
lines changed Expand file tree Collapse file tree 6 files changed +41
-22
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ v4.4.7] ( https://github.com/codeigniter4/CodeIgniter4/tree/v4.4.7 ) (2024-03-29)
4+ [ Full Changelog] ( https://github.com/codeigniter4/CodeIgniter4/compare/v4.4.6...v4.4.7 )
5+
6+ ### Breaking Changes
7+ * fix: Time::difference() DST bug by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8661
8+
9+ ### Fixed Bugs
10+ * fix: [ Validation] FileRules cause error if getimagesize() returns false by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8592
11+ * fix: isWriteType() to recognize CTE; always excluding RETURNING by @markconnellypro in https://github.com/codeigniter4/CodeIgniter4/pull/8599
12+ * fix: duplicate Cache-Control header with Session by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8601
13+ * fix: [ DebugBar] scroll to top by @ddevsr in https://github.com/codeigniter4/CodeIgniter4/pull/8595
14+ * fix: Model::shouldUpdate() logic by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8614
15+ * fix: esc() for 'raw' context by @Cleric-K in https://github.com/codeigniter4/CodeIgniter4/pull/8633
16+ * docs: fix incorrect CURLRequest allow_redirects description by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8653
17+ * fix: Model::set() does not accept object by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8670
18+
19+ ### Refactoring
20+ * refactor: replace PHP_VERSION by PHP_VERSION_ID by @justbyitself in https://github.com/codeigniter4/CodeIgniter4/pull/8618
21+ * refactor: apply early return pattern by @justbyitself in https://github.com/codeigniter4/CodeIgniter4/pull/8621
22+ * refactor: move footer info to top in error_exception.php by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8626
23+
324## [ v4.4.6] ( https://github.com/codeigniter4/CodeIgniter4/tree/v4.4.6 ) (2024-02-24)
425[ Full Changelog] ( https://github.com/codeigniter4/CodeIgniter4/compare/v4.4.5...v4.4.6 )
526
Original file line number Diff line number Diff line change 1010 <output >api/build/</output >
1111 <cache >api/cache/</cache >
1212 </paths >
13- <version number =" 4.4.6 " >
13+ <version number =" 4.4.7 " >
1414 <api format =" php" >
1515 <source dsn =" ." >
1616 <path >system</path >
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ class CodeIgniter
5454 /**
5555 * The current version of CodeIgniter Framework
5656 */
57- public const CI_VERSION = '4.4.6 ' ;
57+ public const CI_VERSION = '4.4.7 ' ;
5858
5959 /**
6060 * App startup time.
Original file line number Diff line number Diff line change 22Version 4.4.7
33#############
44
5- Release Date: Unreleased
5+ Release Date: March 29, 2024
66
77**4.4.7 release of CodeIgniter4 **
88
@@ -33,18 +33,6 @@ BREAKING
3333 hours due to Daylight Saving Time (DST). This bug has been fixed. See
3434 :ref: `Note in Times and Dates <time-viewing-differences >` for details.
3535
36- ***************
37- Message Changes
38- ***************
39-
40- *******
41- Changes
42- *******
43-
44- ************
45- Deprecations
46- ************
47-
4836**********
4937Bugs Fixed
5038**********
Original file line number Diff line number Diff line change 2626version = '4.4'
2727
2828# The full version, including alpha/beta/rc tags.
29- release = '4.4.6 '
29+ release = '4.4.7 '
3030
3131# -- General configuration ---------------------------------------------------
3232
Original file line number Diff line number Diff line change @@ -89,10 +89,6 @@ In the unlikely event that you wish to maintain the behavior of the previous
8989versions, change the time zone of both dates being compared to UTC before passing
9090them to ``Time::difference() ``.
9191
92- *********************
93- Breaking Enhancements
94- *********************
95-
9692*************
9793Project Files
9894*************
@@ -115,12 +111,26 @@ Config
115111- app/Config/App.php
116112 - The property ``$permittedURIChars `` was added. See :ref: `urls-uri-security `
117113 for details.
118- - @TODO
119114
120115All Changes
121116===========
122117
123118This is a list of all files in the **project space ** that received changes;
124119many will be simple comments or formatting that have no effect on the runtime:
125120
126- - @TODO
121+ - app/Config/Cache.php
122+ - app/Config/ContentSecurityPolicy.php
123+ - app/Config/Database.php
124+ - app/Config/Exceptions.php
125+ - app/Config/Filters.php
126+ - app/Config/Format.php
127+ - app/Config/Logger.php
128+ - app/Config/Mimes.php
129+ - app/Config/Routing.php
130+ - app/Config/Toolbar.php
131+ - app/Config/Validation.php
132+ - app/Config/View.php
133+ - app/Controllers/BaseController.php
134+ - app/Views/errors/html/debug.css
135+ - app/Views/errors/html/error_exception.php
136+ - composer.json
You can’t perform that action at this time.
0 commit comments