From 75bb53afd60eb87d9c7ecad4736eb7a52f04f2fb Mon Sep 17 00:00:00 2001 From: kenjis Date: Sun, 18 Jun 2023 08:51:05 +0900 Subject: [PATCH 1/2] docs: add changelog/upgrade guide for v4.3.7 --- user_guide_src/source/changelogs/index.rst | 1 + user_guide_src/source/changelogs/v4.3.7.rst | 29 +++++++++++ .../source/installation/upgrade_437.rst | 50 +++++++++++++++++++ .../source/installation/upgrading.rst | 1 + 4 files changed, 81 insertions(+) create mode 100644 user_guide_src/source/changelogs/v4.3.7.rst create mode 100644 user_guide_src/source/installation/upgrade_437.rst diff --git a/user_guide_src/source/changelogs/index.rst b/user_guide_src/source/changelogs/index.rst index f1d8427dc42b..4959a51ea9c3 100644 --- a/user_guide_src/source/changelogs/index.rst +++ b/user_guide_src/source/changelogs/index.rst @@ -12,6 +12,7 @@ See all the changes. .. toctree:: :titlesonly: + v4.3.7 v4.3.6 v4.3.5 v4.3.4 diff --git a/user_guide_src/source/changelogs/v4.3.7.rst b/user_guide_src/source/changelogs/v4.3.7.rst new file mode 100644 index 000000000000..b167c0c48dcf --- /dev/null +++ b/user_guide_src/source/changelogs/v4.3.7.rst @@ -0,0 +1,29 @@ +Version 4.3.7 +############# + +Release Date: Unreleased + +**4.3.7 release of CodeIgniter4** + +.. contents:: + :local: + :depth: 3 + +BREAKING +******** + +Message Changes +*************** + +Changes +******* + +Deprecations +************ + +Bugs Fixed +********** + +See the repo's +`CHANGELOG.md `_ +for a complete list of bugs fixed. diff --git a/user_guide_src/source/installation/upgrade_437.rst b/user_guide_src/source/installation/upgrade_437.rst new file mode 100644 index 000000000000..f9917deecfe5 --- /dev/null +++ b/user_guide_src/source/installation/upgrade_437.rst @@ -0,0 +1,50 @@ +############################# +Upgrading from 4.3.6 to 4.3.6 +############################# + +Please refer to the upgrade instructions corresponding to your installation method. + +- :ref:`Composer Installation App Starter Upgrading ` +- :ref:`Composer Installation Adding CodeIgniter4 to an Existing Project Upgrading ` +- :ref:`Manual Installation 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. + +There are some third-party CodeIgniter modules available to assist with merging changes to +the project space: `Explore on Packagist `_. + +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 diff --git a/user_guide_src/source/installation/upgrading.rst b/user_guide_src/source/installation/upgrading.rst index 6b411b767044..a44aac6cd044 100644 --- a/user_guide_src/source/installation/upgrading.rst +++ b/user_guide_src/source/installation/upgrading.rst @@ -16,6 +16,7 @@ See also :doc:`./backward_compatibility_notes`. backward_compatibility_notes + upgrade_437 upgrade_436 upgrade_435 upgrade_434 From 843f509f9e7089b92c36752be6dce4ccd1fbfc4f Mon Sep 17 00:00:00 2001 From: kenjis Date: Mon, 19 Jun 2023 08:18:14 +0900 Subject: [PATCH 2/2] docs: fix typo Co-authored-by: Michal Sniatala --- user_guide_src/source/installation/upgrade_437.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user_guide_src/source/installation/upgrade_437.rst b/user_guide_src/source/installation/upgrade_437.rst index f9917deecfe5..36cac74545d7 100644 --- a/user_guide_src/source/installation/upgrade_437.rst +++ b/user_guide_src/source/installation/upgrade_437.rst @@ -1,5 +1,5 @@ ############################# -Upgrading from 4.3.6 to 4.3.6 +Upgrading from 4.3.6 to 4.3.7 ############################# Please refer to the upgrade instructions corresponding to your installation method.