Skip to content

Commit 5e852b3

Browse files
authored
Merge pull request #4210 from codeigniter4/develop
4.1.1 Ready code
2 parents 51e2371 + a790851 commit 5e852b3

File tree

9 files changed

+39
-13
lines changed

9 files changed

+39
-13
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22

33
## [Unreleased](https://github.com/codeigniter4/CodeIgniter4/tree/HEAD)
44

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
614

715
## [v4.1.0](https://github.com/codeigniter4/CodeIgniter4/tree/v4.1.0) (2021-01-31)
816

admin/framework/.gitattributes

-9
This file was deleted.

system/CodeIgniter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ class CodeIgniter
4444
/**
4545
* The current version of CodeIgniter Framework
4646
*/
47-
const CI_VERSION = '4.1.0';
47+
const CI_VERSION = '4.1.1';
4848

4949
/**
5050
* App startup time.

user_guide_src/source/changelogs/index.rst

+2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ See all the changes.
1212
.. toctree::
1313
:titlesonly:
1414

15+
v4.1.2
16+
v4.1.1
1517
v4.1.0
1618
v4.0.5
1719
v4.0.4
+7-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Version 4.1.1
22
====================================================
33

4-
Release Date: Not released
4+
Release Date: February 1, 2021
55

66
**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 numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Version 4.1.2
2+
====================================================
3+
4+
Release Date: Not released
5+
6+
**4.1.2 release of CodeIgniter4**

user_guide_src/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
version = '4.1'
2525

2626
# The full version, including alpha/beta/rc tags.
27-
release = '4.1.0'
27+
release = '4.1.1'
2828

2929
# -- General configuration ---------------------------------------------------
3030

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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.

user_guide_src/source/installation/upgrading.rst

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ upgrading from.
88
.. toctree::
99
:titlesonly:
1010

11+
Upgrading from 4.0.5 to 4.1.0 or 4.1.1 <upgrade_410>
1112
Upgrading from 4.0.4 to 4.0.5 <upgrade_405>
1213
Upgrading from 4.0.x to 4.0.4 <upgrade_404>
1314
Upgrading from 3.x to 4.x <upgrade_4xx>

0 commit comments

Comments
 (0)