Skip to content

Commit 0455f3d

Browse files
committed
Prep for 4.1.3 release
1 parent a5fc431 commit 0455f3d

File tree

7 files changed

+50
-3
lines changed

7 files changed

+50
-3
lines changed

system/CodeIgniter.php

Lines changed: 1 addition & 1 deletion
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.2';
47+
const CI_VERSION = '4.1.3';
4848

4949
private const MIN_PHP_VERSION = '7.3';
5050

user_guide_src/source/changelogs/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ See all the changes.
1212
.. toctree::
1313
:titlesonly:
1414

15+
v4.1.4
1516
v4.1.3
1617
v4.1.2
1718
v4.1.1
Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
11
Version 4.1.3
22
=============
33

4-
Release Date: Not released
4+
Release Date: June 6, 2021
55

66
**4.1.3 release of CodeIgniter4**
7+
8+
Enhancements:
9+
10+
- New functions in the File Helper: ``directory_mirror()`` and ``same_file()``
11+
- Implemented NexusPHP's ``Tachycardia`` for slow test identification
12+
- Added a new ``$ttl`` option to ``Cache`` config for future use
13+
14+
Changes:
15+
16+
- Added MySQL 8.0 to the test matrix
17+
- Improved environment detection from ``$_SERVER``
18+
- Numerous sweeping code improvements via Rector and analysis
19+
20+
Bugs Fixed:
21+
22+
- Fixed a bug where ``CURLRequest`` would try to use a project URI instead of its base
23+
- Fixed a bug where CLI mode was not detected under ``cgi-fcgi``
24+
- Fixed a logic bug in Cookie construction
25+
- Fixed numerous issues in SQLite3's ``Forge`` class related to an incorrect attribute name
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Version 4.1.4
2+
=============
3+
4+
Release Date: Not released
5+
6+
**4.1.4 release of CodeIgniter4**

user_guide_src/source/conf.py

Lines changed: 1 addition & 1 deletion
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.2'
27+
release = '4.1.3'
2828

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

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
#############################
2+
Upgrading from 4.1.1 to 4.1.2
3+
#############################
4+
5+
**Cache TTL**
6+
7+
There is a new value in **app/Config/Cache.php**: ``$ttl``. This is not used by framework
8+
handlers where 60 seconds is hard-coded, but may be useful to projects and modules.
9+
In a future release this value will replace the hard-coded version, so either leave this as
10+
``60`` or stop relying on the hard-coded version.
11+
12+
Project Files
13+
=============
14+
15+
Only a few files in the project space (root, app, public, writable) received updates. Due to
16+
these files being outside of the system scope they will not be changed without your intervention.
17+
The following files received changes and it is recommended that you merge the updated versions with your application:
18+
19+
* ``app/Config/Cache.php``
20+
* ``spark``

user_guide_src/source/installation/upgrading.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ upgrading from.
88
.. toctree::
99
:titlesonly:
1010

11+
Upgrading from 4.1.2 to 4.1.3 <upgrade_413>
1112
Upgrading from 4.1.1 to 4.1.2 <upgrade_412>
1213
Upgrading from 4.0.5 to 4.1.0 or 4.1.1 <upgrade_410>
1314
Upgrading from 4.0.4 to 4.0.5 <upgrade_405>

0 commit comments

Comments
 (0)