Skip to content

Commit eede117

Browse files
authored
Merge pull request #5293 from codeigniter4/release-4.1.5
Prep for 4.1.5 release
2 parents 3fe0214 + 0334967 commit eede117

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

@@ -33,6 +33,3 @@ Deprecations
3333
============
3434

3535
- Deprecated ``CodeIgniter\\Cache\\Handlers\\BaseHandler::RESERVED_CHARACTERS`` in favor of the new config property
36-
37-
Bugs Fixed
38-
==========
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
@@ -104,8 +104,40 @@ See *Applying Filters* in :doc:`Routing </incoming/routing>` for the functionali
104104
Project Files
105105
=============
106106

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

119+
The following files received significant changes (including deprecations or visual adjustments)
120+
and it is recommended that you merge the updated versions with your application:
121+
122+
* ``app/Config/CURLRequest.php``
123+
* ``app/Config/Cache.php``
124+
* ``app/Config/Feature.php``
125+
* ``app/Config/Generators.php``
126+
* ``app/Config/Publisher.php``
127+
* ``app/Config/Security.php``
128+
* ``app/Views/welcome_message.php``
129+
110130
All Changes
111131
-----------
132+
133+
This is a list of all files in the project space that received changes;
134+
many will be simple comments or formatting that have no effect on the runtime:
135+
136+
* ``app/Config/CURLRequest.php``
137+
* ``app/Config/Cache.php``
138+
* ``app/Config/Feature.php``
139+
* ``app/Config/Generators.php``
140+
* ``app/Config/Kint.php``
141+
* ``app/Config/Publisher.php``
142+
* ``app/Config/Security.php``
143+
* ``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)