Skip to content

Prep for 4.1.5 release #5293

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion system/CodeIgniter.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class CodeIgniter
/**
* The current version of CodeIgniter Framework
*/
public const CI_VERSION = '4.1.4';
public const CI_VERSION = '4.1.5';

private const MIN_PHP_VERSION = '7.3';

Expand Down
5 changes: 1 addition & 4 deletions user_guide_src/source/changelogs/v4.1.5.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Version 4.1.5
#############

Release Date: Not released
Release Date: November 8, 2021

**4.1.5 release of CodeIgniter4**

Expand Down Expand Up @@ -33,6 +33,3 @@ Deprecations
============

- Deprecated ``CodeIgniter\\Cache\\Handlers\\BaseHandler::RESERVED_CHARACTERS`` in favor of the new config property

Bugs Fixed
==========
25 changes: 25 additions & 0 deletions user_guide_src/source/changelogs/v4.1.6.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
Version 4.1.6
#############

Release Date: Not released

**4.1.6 release of CodeIgniter4**

.. contents::
:local:
:depth: 1

BREAKING
========

Enhancements
============

Changes
=======

Deprecations
============

Bugs Fixed
==========
2 changes: 1 addition & 1 deletion user_guide_src/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
version = '4.1'

# The full version, including alpha/beta/rc tags.
release = '4.1.4'
release = '4.1.5'

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/installation/upgrade_405.rst
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ All Changes
-----------

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

* ``LICENSE``
* ``README.md``
Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/installation/upgrade_412.rst
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ All Changes
-----------

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

* ``app/Config/App.php``
* ``app/Config/Autoload.php``
Expand Down
32 changes: 32 additions & 0 deletions user_guide_src/source/installation/upgrade_415.rst
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,40 @@ See *Applying Filters* in :doc:`Routing </incoming/routing>` for the functionali
Project Files
=============

Numerous 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.
There are some third-party CodeIgniter modules available to assist with merging changes to
the project space: `Explore on Packagist <https://packagist.org/explore/?query=codeigniter4%20updates>`_.

.. note:: Except in very rare cases for bug fixes, no changes made to files for the project space
will break your application. All changes noted here are optional until the next major version,
and any mandatory changes will be covered in the sections above.

Content Changes
---------------

The following files received significant changes (including deprecations or visual adjustments)
and it is recommended that you merge the updated versions with your application:

* ``app/Config/CURLRequest.php``
* ``app/Config/Cache.php``
* ``app/Config/Feature.php``
* ``app/Config/Generators.php``
* ``app/Config/Publisher.php``
* ``app/Config/Security.php``
* ``app/Views/welcome_message.php``

All Changes
-----------

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

* ``app/Config/CURLRequest.php``
* ``app/Config/Cache.php``
* ``app/Config/Feature.php``
* ``app/Config/Generators.php``
* ``app/Config/Kint.php``
* ``app/Config/Publisher.php``
* ``app/Config/Security.php``
* ``app/Views/welcome_message.php``
1 change: 1 addition & 0 deletions user_guide_src/source/installation/upgrading.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ upgrading from.
.. toctree::
:titlesonly:

Upgrading from 4.1.5 to 4.1.6 <upgrade_416>
Upgrading from 4.1.4 to 4.1.5 <upgrade_415>
Upgrading from 4.1.3 to 4.1.4 <upgrade_414>
Upgrading from 4.1.2 to 4.1.3 <upgrade_413>
Expand Down