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 1
1
# Changelog
2
2
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
+
3
24
## [ v4.4.6] ( https://github.com/codeigniter4/CodeIgniter4/tree/v4.4.6 ) (2024-02-24)
4
25
[ Full Changelog] ( https://github.com/codeigniter4/CodeIgniter4/compare/v4.4.5...v4.4.6 )
5
26
Original file line number Diff line number Diff line change 10
10
<output >api/build/</output >
11
11
<cache >api/cache/</cache >
12
12
</paths >
13
- <version number =" 4.4.6 " >
13
+ <version number =" 4.4.7 " >
14
14
<api format =" php" >
15
15
<source dsn =" ." >
16
16
<path >system</path >
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ class CodeIgniter
54
54
/**
55
55
* The current version of CodeIgniter Framework
56
56
*/
57
- public const CI_VERSION = '4.4.6 ' ;
57
+ public const CI_VERSION = '4.4.7 ' ;
58
58
59
59
/**
60
60
* App startup time.
Original file line number Diff line number Diff line change 2
2
Version 4.4.7
3
3
#############
4
4
5
- Release Date: Unreleased
5
+ Release Date: March 29, 2024
6
6
7
7
**4.4.7 release of CodeIgniter4 **
8
8
@@ -33,18 +33,6 @@ BREAKING
33
33
hours due to Daylight Saving Time (DST). This bug has been fixed. See
34
34
:ref: `Note in Times and Dates <time-viewing-differences >` for details.
35
35
36
- ***************
37
- Message Changes
38
- ***************
39
-
40
- *******
41
- Changes
42
- *******
43
-
44
- ************
45
- Deprecations
46
- ************
47
-
48
36
**********
49
37
Bugs Fixed
50
38
**********
Original file line number Diff line number Diff line change 26
26
version = '4.4'
27
27
28
28
# The full version, including alpha/beta/rc tags.
29
- release = '4.4.6 '
29
+ release = '4.4.7 '
30
30
31
31
# -- General configuration ---------------------------------------------------
32
32
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
89
89
versions, change the time zone of both dates being compared to UTC before passing
90
90
them to ``Time::difference() ``.
91
91
92
- *********************
93
- Breaking Enhancements
94
- *********************
95
-
96
92
*************
97
93
Project Files
98
94
*************
@@ -115,12 +111,26 @@ Config
115
111
- app/Config/App.php
116
112
- The property ``$permittedURIChars `` was added. See :ref: `urls-uri-security `
117
113
for details.
118
- - @TODO
119
114
120
115
All Changes
121
116
===========
122
117
123
118
This is a list of all files in the **project space ** that received changes;
124
119
many will be simple comments or formatting that have no effect on the runtime:
125
120
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