File tree 9 files changed +39
-13
lines changed
9 files changed +39
-13
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased] ( https://github.com/codeigniter4/CodeIgniter4/tree/HEAD )
4
4
5
- [ Full Changelog] ( https://github.com/codeigniter4/CodeIgniter4/compare/v4.1.0...HEAD )
5
+ [ Full Changelog] ( https://github.com/codeigniter4/CodeIgniter4/compare/v4.1.1...HEAD )
6
+
7
+ ## [ v4.1.1] ( https://github.com/codeigniter4/CodeIgniter4/tree/v4.1.0 ) (2021-02-01)
8
+
9
+ [ Full Changelog] ( https://github.com/codeigniter4/CodeIgniter4/compare/v4.1.0...v4.1.1 )
10
+
11
+ ** Fixed bugs:**
12
+
13
+ - Fixed an issue where ** .gitattributes** was preventing framework downloads
6
14
7
15
## [ v4.1.0] ( https://github.com/codeigniter4/CodeIgniter4/tree/v4.1.0 ) (2021-01-31)
8
16
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ class CodeIgniter
44
44
/**
45
45
* The current version of CodeIgniter Framework
46
46
*/
47
- const CI_VERSION = '4.1.0 ' ;
47
+ const CI_VERSION = '4.1.1 ' ;
48
48
49
49
/**
50
50
* App startup time.
Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ See all the changes.
12
12
.. toctree ::
13
13
:titlesonly:
14
14
15
+ v4.1.2
16
+ v4.1.1
15
17
v4.1.0
16
18
v4.0.5
17
19
v4.0.4
Original file line number Diff line number Diff line change 1
1
Version 4.1.1
2
2
====================================================
3
3
4
- Release Date: Not released
4
+ Release Date: February 1, 2021
5
5
6
6
**4.1.1 release of CodeIgniter4 **
7
+
8
+ Bugs Fixed:
9
+
10
+ - Fixed an issue where **.gitattributes ** was preventing framework downloads.
11
+
12
+ Note that this fix was also applied retroactively to ``4.0.5 `` on the **framework ** repo.
Original file line number Diff line number Diff line change
1
+ Version 4.1.2
2
+ ====================================================
3
+
4
+ Release Date: Not released
5
+
6
+ **4.1.2 release of CodeIgniter4 **
Original file line number Diff line number Diff line change 24
24
version = '4.1'
25
25
26
26
# The full version, including alpha/beta/rc tags.
27
- release = '4.1.0 '
27
+ release = '4.1.1 '
28
28
29
29
# -- General configuration ---------------------------------------------------
30
30
Original file line number Diff line number Diff line change
1
+ ######################################
2
+ Upgrading from 4.0.5 to 4.1.0 or 4.1.1
3
+ ######################################
4
+
5
+ **Legacy Autoloading **
6
+
7
+ `Autoloader::loadLegacy() ` method was originally for transition to CodeIgniter v4. Since `4.1.0 `,
8
+ this support was removed and this method should not be used.
9
+
10
+ **Model::fillPlaceholders **
11
+
12
+ Replace any use of this method with its equivalent version from Validation instead.
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ upgrading from.
8
8
.. toctree ::
9
9
:titlesonly:
10
10
11
+ Upgrading from 4.0.5 to 4.1.0 or 4.1.1 <upgrade_410 >
11
12
Upgrading from 4.0.4 to 4.0.5 <upgrade_405 >
12
13
Upgrading from 4.0.x to 4.0.4 <upgrade_404 >
13
14
Upgrading from 3.x to 4.x <upgrade_4xx >
You can’t perform that action at this time.
0 commit comments