-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
107 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ See all the changes. | |
.. toctree:: | ||
:titlesonly: | ||
|
||
v4.1.4 | ||
v4.1.3 | ||
v4.1.2 | ||
v4.1.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,25 @@ | ||
Version 4.1.3 | ||
============= | ||
|
||
Release Date: Not released | ||
Release Date: June 6, 2021 | ||
|
||
**4.1.3 release of CodeIgniter4** | ||
|
||
Enhancements: | ||
|
||
- New functions in the File Helper: ``directory_mirror()`` and ``same_file()`` | ||
- Implemented NexusPHP's ``Tachycardia`` for slow test identification | ||
- Added a new ``$ttl`` option to ``Cache`` config for future use | ||
|
||
Changes: | ||
|
||
- Added MySQL 8.0 to the test matrix | ||
- Improved environment detection from ``$_SERVER`` | ||
- Numerous sweeping code improvements via Rector and analysis | ||
|
||
Bugs Fixed: | ||
|
||
- Fixed a bug where ``CURLRequest`` would try to use a project URI instead of its base | ||
- Fixed a bug where CLI mode was not detected under ``cgi-fcgi`` | ||
- Fixed a logic bug in Cookie construction | ||
- Fixed numerous issues in SQLite3's ``Forge`` class related to an incorrect attribute name |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Version 4.1.4 | ||
============= | ||
|
||
Release Date: Not released | ||
|
||
**4.1.4 release of CodeIgniter4** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
############################# | ||
Upgrading from 4.1.1 to 4.1.2 | ||
############################# | ||
|
||
**Cache TTL** | ||
|
||
There is a new value in **app/Config/Cache.php**: ``$ttl``. This is not used by framework | ||
handlers where 60 seconds is hard-coded, but may be useful to projects and modules. | ||
In a future release this value will replace the hard-coded version, so either leave this as | ||
``60`` or stop relying on the hard-coded version. | ||
|
||
Project Files | ||
============= | ||
|
||
Only a few files in the project space (root, app, public, writable) received updates. Due to | ||
these files being outside of the system scope they will not be changed without your intervention. | ||
The following files received changes and it is recommended that you merge the updated versions with your application: | ||
|
||
* ``app/Config/Cache.php`` | ||
* ``spark`` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters