Skip to content

Commit 2019bb3

Browse files
committed
Prep for 4.1.5 release
1 parent f6cd180 commit 2019bb3

File tree

8 files changed

+63
-8
lines changed

8 files changed

+63
-8
lines changed

system/CodeIgniter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class CodeIgniter
4545
/**
4646
* The current version of CodeIgniter Framework
4747
*/
48-
public const CI_VERSION = '4.1.4';
48+
public const CI_VERSION = '4.1.5';
4949

5050
private const MIN_PHP_VERSION = '7.3';
5151

user_guide_src/source/changelogs/v4.1.5.rst

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Version 4.1.5
22
#############
33

4-
Release Date: Not released
4+
Release Date: November 8, 2021
55

66
**4.1.5 release of CodeIgniter4**
77

@@ -31,6 +31,3 @@ Deprecations
3131
============
3232

3333
- Deprecated ``CodeIgniter\\Cache\\Handlers\\BaseHandler::RESERVED_CHARACTERS`` in favor of the new config property
34-
35-
Bugs Fixed
36-
==========
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
Version 4.1.6
2+
#############
3+
4+
Release Date: Not released
5+
6+
**4.1.6 release of CodeIgniter4**
7+
8+
.. contents::
9+
:local:
10+
:depth: 1
11+
12+
BREAKING
13+
========
14+
15+
Enhancements
16+
============
17+
18+
Changes
19+
=======
20+
21+
Deprecations
22+
============
23+
24+
Bugs Fixed
25+
==========

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.4'
27+
release = '4.1.5'
2828

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

user_guide_src/source/installation/upgrade_405.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ All Changes
9292
-----------
9393

9494
This is a list of all files in the project space that received changes;
95-
many will be simple comments or formatting that have no affect on the runtime:
95+
many will be simple comments or formatting that have no effect on the runtime:
9696

9797
* ``LICENSE``
9898
* ``README.md``

user_guide_src/source/installation/upgrade_412.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ All Changes
114114
-----------
115115

116116
This is a list of all files in the project space that received changes;
117-
many will be simple comments or formatting that have no affect on the runtime:
117+
many will be simple comments or formatting that have no effect on the runtime:
118118

119119
* ``app/Config/App.php``
120120
* ``app/Config/Autoload.php``

user_guide_src/source/installation/upgrade_415.rst

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,40 @@ See *Applying Filters* in :doc:`Routing </incoming/routing>` for the functionali
9696
Project Files
9797
=============
9898

99+
Numerous files in the project space (root, app, public, writable) received updates. Due to
100+
these files being outside of the system scope they will not be changed without your intervention.
101+
There are some third-party CodeIgniter modules available to assist with merging changes to
102+
the project space: `Explore on Packagist <https://packagist.org/explore/?query=codeigniter4%20updates>`_.
103+
104+
.. note:: Except in very rare cases for bug fixes, no changes made to files for the project space
105+
will break your application. All changes noted here are optional until the next major version,
106+
and any mandatory changes will be covered in the sections above.
107+
99108
Content Changes
100109
---------------
101110

111+
The following files received significant changes (including deprecations or visual adjustments)
112+
and it is recommended that you merge the updated versions with your application:
113+
114+
* ``app/Config/CURLRequest.php``
115+
* ``app/Config/Cache.php``
116+
* ``app/Config/Feature.php``
117+
* ``app/Config/Generators.php``
118+
* ``app/Config/Publisher.php``
119+
* ``app/Config/Security.php``
120+
* ``app/Views/welcome_message.php``
121+
102122
All Changes
103123
-----------
124+
125+
This is a list of all files in the project space that received changes;
126+
many will be simple comments or formatting that have no effect on the runtime:
127+
128+
* ``app/Config/CURLRequest.php``
129+
* ``app/Config/Cache.php``
130+
* ``app/Config/Feature.php``
131+
* ``app/Config/Generators.php``
132+
* ``app/Config/Kint.php``
133+
* ``app/Config/Publisher.php``
134+
* ``app/Config/Security.php``
135+
* ``app/Views/welcome_message.php``

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.5 to 4.1.6 <upgrade_416>
1112
Upgrading from 4.1.4 to 4.1.5 <upgrade_415>
1213
Upgrading from 4.1.3 to 4.1.4 <upgrade_414>
1314
Upgrading from 4.1.2 to 4.1.3 <upgrade_413>

0 commit comments

Comments
 (0)