-
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.
Merge remote-tracking branch 'upstream/develop' into 4.6
Conflicts: user_guide_src/source/changelogs/index.rst user_guide_src/source/installation/upgrading.rst
- Loading branch information
Showing
11 changed files
with
156 additions
and
49 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,9 @@ | |
- `4.y`: The next minor version. (e.g., `4.6`) | ||
- `4.z`: The next next minor version. (e.g., `4.7`) | ||
|
||
> [!NOTE] | ||
> Copy this file, and replace the versions above with the actual versions. | ||
## Merge `develop` branch into next minor version branch `4.y` | ||
|
||
Before starting release process, if there are commits in `develop` branch that | ||
|
@@ -35,6 +38,26 @@ If you release a new minor version. | |
"Branch protection rules" to the next minor version. E.g. `4.5` → `4.6` | ||
* [ ] Delete the merged `4.y` branch (This closes all PRs to the branch) | ||
|
||
## Preparation | ||
|
||
Work off direct clones of the repos so the release branches persist for a time. | ||
|
||
* [ ] Clone both **codeigniter4/CodeIgniter4** and **codeigniter4/userguide** and | ||
resolve any necessary PRs | ||
```console | ||
rm -rf CodeIgniter4.bk userguide.bk | ||
mv CodeIgniter4 CodeIgniter4.bk | ||
mv userguide userguide.bk | ||
git clone [email protected]:codeigniter4/CodeIgniter4.git | ||
git clone [email protected]:codeigniter4/userguide.git | ||
``` | ||
* [ ] Vet the **admin/** folders for any removed hidden files (Action deploy scripts | ||
*do not remove these*) | ||
```console | ||
cd CodeIgniter4 | ||
git diff --name-status origin/master admin/ | ||
``` | ||
|
||
## Changelog | ||
|
||
When generating the changelog each Pull Request to be included must have one of | ||
|
@@ -65,33 +88,14 @@ the changelog. | |
Copy the resulting content into **CHANGELOG.md** and adjust the format to match | ||
the existing content. | ||
|
||
## Preparation | ||
|
||
Work off direct clones of the repos so the release branches persist for a time. | ||
|
||
* [ ] Clone both **codeigniter4/CodeIgniter4** and **codeigniter4/userguide** and | ||
resolve any necessary PRs | ||
```console | ||
rm -rf CodeIgniter4.bk userguide.bk | ||
mv CodeIgniter4 CodeIgniter4.bk | ||
mv userguide userguide.bk | ||
git clone [email protected]:codeigniter4/CodeIgniter4.git | ||
git clone [email protected]:codeigniter4/userguide.git | ||
``` | ||
* [ ] Vet the **admin/** folders for any removed hidden files (Action deploy scripts | ||
*do not remove these*) | ||
```console | ||
cd CodeIgniter4 | ||
git diff --name-status origin/master admin/ | ||
``` | ||
* [ ] Merge any Security Advisory PRs in private forks | ||
|
||
## Process | ||
|
||
> **Note** Most changes that need noting in the User Guide and docs should have | ||
> [!NOTE] | ||
> Most changes that need noting in the User Guide and docs should have | ||
> been included with their PR, so this process assumes you will not be | ||
> generating much new content. | ||
* [ ] Merge any Security Advisory PRs in private forks | ||
* [ ] Replace **CHANGELOG.md** with the new version generated above | ||
* [ ] Update **user_guide_src/source/changelogs/v4.x.x.rst** | ||
* Remove the section titles that have no items | ||
|
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
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ See all the changes. | |
:titlesonly: | ||
|
||
v4.6.0 | ||
v4.5.6 | ||
v4.5.5 | ||
v4.5.4 | ||
v4.5.3 | ||
|
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,35 @@ | ||
############# | ||
Version 4.5.6 | ||
############# | ||
|
||
Release Date: Unreleased | ||
|
||
**4.5.6 release of CodeIgniter4** | ||
|
||
.. contents:: | ||
:local: | ||
:depth: 3 | ||
|
||
******** | ||
BREAKING | ||
******** | ||
|
||
*************** | ||
Message Changes | ||
*************** | ||
|
||
******* | ||
Changes | ||
******* | ||
|
||
************ | ||
Deprecations | ||
************ | ||
|
||
********** | ||
Bugs Fixed | ||
********** | ||
|
||
See the repo's | ||
`CHANGELOG.md <https://github.com/codeigniter4/CodeIgniter4/blob/develop/CHANGELOG.md>`_ | ||
for a complete list of bugs fixed. |
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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
############################# | ||
Upgrading from 4.5.5 to 4.5.6 | ||
############################# | ||
|
||
Please refer to the upgrade instructions corresponding to your installation method. | ||
|
||
- :ref:`Composer Installation App Starter Upgrading <app-starter-upgrading>` | ||
- :ref:`Composer Installation Adding CodeIgniter4 to an Existing Project Upgrading <adding-codeigniter4-upgrading>` | ||
- :ref:`Manual Installation Upgrading <installing-manual-upgrading>` | ||
|
||
.. contents:: | ||
:local: | ||
:depth: 2 | ||
|
||
********************** | ||
Mandatory File Changes | ||
********************** | ||
|
||
**************** | ||
Breaking Changes | ||
**************** | ||
|
||
********************* | ||
Breaking Enhancements | ||
********************* | ||
|
||
************* | ||
Project Files | ||
************* | ||
|
||
Some 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. | ||
|
||
.. note:: 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>`_. | ||
|
||
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: | ||
|
||
Config | ||
------ | ||
|
||
- @TODO | ||
|
||
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: | ||
|
||
- @TODO |
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