File tree Expand file tree Collapse file tree 5 files changed +31
-32
lines changed Expand file tree Collapse file tree 5 files changed +31
-32
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## [ v4.4.1] ( https://github.com/codeigniter4/CodeIgniter4/tree/v4.4.1 ) (2023-09-05)
4
+ [ Full Changelog] ( https://github.com/codeigniter4/CodeIgniter4/compare/v4.4.0...v4.4.1 )
5
+
6
+ ### Fixed Bugs
7
+
8
+ * docs: add missing Config updates for Hot Reloading by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7862
9
+ * fix: auto route legacy does not work by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7871
10
+ * fix: Factories may not return shared instance by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7868
11
+ * fix: replace ` config(DocTypes::class) ` with ` new DocTypes() ` by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7872
12
+ * fix: FeatureTest may cause risky tests by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7867
13
+ * fix: reverse routing causes ErrorException by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7880
14
+ * fix: Email library forces to switch to TLS when setting port 465 by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7883
15
+ * fix: [ DebugBar] make CSS rotate class less broad by @sanchawebo in https://github.com/codeigniter4/CodeIgniter4/pull/7882
16
+ * fix: FeatureTest fails when forceGlobalSecureRequests is true by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7890
17
+
3
18
## [ v4.4.0] ( https://github.com/codeigniter4/CodeIgniter4/tree/v4.4.0 ) (2023-08-25)
4
19
[ Full Changelog] ( https://github.com/codeigniter4/CodeIgniter4/compare/v4.3.8...v4.4.0 )
5
20
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ class CodeIgniter
52
52
/**
53
53
* The current version of CodeIgniter Framework
54
54
*/
55
- public const CI_VERSION = '4.4.0 ' ;
55
+ public const CI_VERSION = '4.4.1 ' ;
56
56
57
57
/**
58
58
* App startup time.
Original file line number Diff line number Diff line change 1
1
Version 4.4.1
2
2
#############
3
3
4
- Release Date: Unreleased
4
+ Release Date: September 5, 2023
5
5
6
6
**4.4.1 release of CodeIgniter4 **
7
7
8
8
.. contents ::
9
9
:local:
10
10
:depth: 3
11
11
12
- BREAKING
13
- ********
14
-
15
- Message Changes
16
- ***************
17
-
18
- Changes
19
- *******
20
-
21
- Deprecations
22
- ************
23
-
24
12
Bugs Fixed
25
13
**********
26
14
15
+ - **AutoRouting Legacy: ** Fixed a bug that Auto Routing Legacy does not work.
16
+ - **FeatureTest: **
17
+ - Fixed a bug that FeatureTest may cause risky tests.
18
+ - Fixed a bug that FeatureTest fails when forceGlobalSecureRequests is true.
19
+
27
20
See the repo's
28
21
`CHANGELOG.md <https://github.com/codeigniter4/CodeIgniter4/blob/develop/CHANGELOG.md >`_
29
22
for a complete list of bugs fixed.
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.0 '
29
+ release = '4.4.1 '
30
30
31
31
# -- General configuration ---------------------------------------------------
32
32
Original file line number Diff line number Diff line change @@ -12,15 +12,6 @@ Please refer to the upgrade instructions corresponding to your installation meth
12
12
:local:
13
13
:depth: 2
14
14
15
- Mandatory File Changes
16
- **********************
17
-
18
- Breaking Changes
19
- ****************
20
-
21
- Breaking Enhancements
22
- *********************
23
-
24
15
Project Files
25
16
*************
26
17
@@ -33,18 +24,18 @@ the project space: `Explore on Packagist <https://packagist.org/explore/?query=c
33
24
Content Changes
34
25
===============
35
26
36
- The following files received significant changes (including deprecations or visual adjustments)
37
- and it is recommended that you merge the updated versions with your application:
38
-
39
- Config
40
- ------
41
-
42
- - @TODO
27
+ Version 4.4.1 did not alter any executable code in project files.
43
28
44
29
All Changes
45
30
===========
46
31
47
32
This is a list of all files in the **project space ** that received changes;
48
33
many will be simple comments or formatting that have no effect on the runtime:
49
34
50
- - @TODO
35
+ - app/Config/Autoload.php
36
+ - app/Config/DocTypes.php
37
+ - app/Config/Email.php
38
+ - app/Config/ForeignCharacters.php
39
+ - app/Config/Mimes.php
40
+ - app/Config/Modules.php
41
+ - composer.json
You can’t perform that action at this time.
0 commit comments