From 228ece2f97c02a07d87133482d6aa2ccc13ffe0a Mon Sep 17 00:00:00 2001 From: kenjis Date: Tue, 29 Aug 2023 15:43:35 +0900 Subject: [PATCH] Prep for 4.4.1 release --- CHANGELOG.md | 15 +++++++++++ system/CodeIgniter.php | 2 +- user_guide_src/source/changelogs/v4.4.1.rst | 14 +---------- user_guide_src/source/conf.py | 2 +- .../source/installation/upgrade_441.rst | 25 ++++++------------- 5 files changed, 26 insertions(+), 32 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 59da5951f9a4..dc2b5bc5640c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [v4.4.1](https://github.com/codeigniter4/CodeIgniter4/tree/v4.4.1) (2023-09-05) +[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.4.0...v4.4.1) + +### Fixed Bugs + +* docs: add missing Config updates for Hot Reloading by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7862 +* fix: auto route legacy does not work by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7871 +* fix: Factories may not return shared instance by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7868 +* fix: replace `config(DocTypes::class)` with `new DocTypes()` by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7872 +* fix: FeatureTest may cause risky tests by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7867 +* fix: reverse routing causes ErrorException by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7880 +* fix: Email library forces to switch to TLS when setting port 465 by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7883 +* fix: [DebugBar] make CSS rotate class less broad by @sanchawebo in https://github.com/codeigniter4/CodeIgniter4/pull/7882 +* fix: FeatureTest fails when forceGlobalSecureRequests is true by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7890 + ## [v4.4.0](https://github.com/codeigniter4/CodeIgniter4/tree/v4.4.0) (2023-08-25) [Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.3.8...v4.4.0) diff --git a/system/CodeIgniter.php b/system/CodeIgniter.php index e991af8de121..6ef3ab8261b2 100644 --- a/system/CodeIgniter.php +++ b/system/CodeIgniter.php @@ -52,7 +52,7 @@ class CodeIgniter /** * The current version of CodeIgniter Framework */ - public const CI_VERSION = '4.4.0'; + public const CI_VERSION = '4.4.1'; /** * App startup time. diff --git a/user_guide_src/source/changelogs/v4.4.1.rst b/user_guide_src/source/changelogs/v4.4.1.rst index 3c90b408872c..b6c92affc8fd 100644 --- a/user_guide_src/source/changelogs/v4.4.1.rst +++ b/user_guide_src/source/changelogs/v4.4.1.rst @@ -1,7 +1,7 @@ Version 4.4.1 ############# -Release Date: Unreleased +Release Date: September 5, 2023 **4.4.1 release of CodeIgniter4** @@ -9,18 +9,6 @@ Release Date: Unreleased :local: :depth: 3 -BREAKING -******** - -Message Changes -*************** - -Changes -******* - -Deprecations -************ - Bugs Fixed ********** diff --git a/user_guide_src/source/conf.py b/user_guide_src/source/conf.py index 7c940ea991e8..a456e6a937a4 100644 --- a/user_guide_src/source/conf.py +++ b/user_guide_src/source/conf.py @@ -26,7 +26,7 @@ version = '4.4' # The full version, including alpha/beta/rc tags. -release = '4.4.0' +release = '4.4.1' # -- General configuration --------------------------------------------------- diff --git a/user_guide_src/source/installation/upgrade_441.rst b/user_guide_src/source/installation/upgrade_441.rst index 9824405edb37..c2fc56859f11 100644 --- a/user_guide_src/source/installation/upgrade_441.rst +++ b/user_guide_src/source/installation/upgrade_441.rst @@ -12,15 +12,6 @@ Please refer to the upgrade instructions corresponding to your installation meth :local: :depth: 2 -Mandatory File Changes -********************** - -Breaking Changes -**************** - -Breaking Enhancements -********************* - Project Files ************* @@ -33,13 +24,7 @@ the project space: `Explore on Packagist