Skip to content

Commit fe9c7ea

Browse files
authored
Merge pull request #7874 from kenjis/release-4.4.1
Prep for 4.4.1 release
2 parents daa8811 + 228ece2 commit fe9c7ea

File tree

5 files changed

+31
-32
lines changed

5 files changed

+31
-32
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## [v4.4.1](https://github.com/codeigniter4/CodeIgniter4/tree/v4.4.1) (2023-09-05)
4+
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.4.0...v4.4.1)
5+
6+
### Fixed Bugs
7+
8+
* docs: add missing Config updates for Hot Reloading by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7862
9+
* fix: auto route legacy does not work by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7871
10+
* fix: Factories may not return shared instance by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7868
11+
* fix: replace `config(DocTypes::class)` with `new DocTypes()` by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7872
12+
* fix: FeatureTest may cause risky tests by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7867
13+
* fix: reverse routing causes ErrorException by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7880
14+
* fix: Email library forces to switch to TLS when setting port 465 by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7883
15+
* fix: [DebugBar] make CSS rotate class less broad by @sanchawebo in https://github.com/codeigniter4/CodeIgniter4/pull/7882
16+
* fix: FeatureTest fails when forceGlobalSecureRequests is true by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7890
17+
318
## [v4.4.0](https://github.com/codeigniter4/CodeIgniter4/tree/v4.4.0) (2023-08-25)
419
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.3.8...v4.4.0)
520

system/CodeIgniter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ class CodeIgniter
5252
/**
5353
* The current version of CodeIgniter Framework
5454
*/
55-
public const CI_VERSION = '4.4.0';
55+
public const CI_VERSION = '4.4.1';
5656

5757
/**
5858
* App startup time.
Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,22 @@
11
Version 4.4.1
22
#############
33

4-
Release Date: Unreleased
4+
Release Date: September 5, 2023
55

66
**4.4.1 release of CodeIgniter4**
77

88
.. contents::
99
:local:
1010
:depth: 3
1111

12-
BREAKING
13-
********
14-
15-
Message Changes
16-
***************
17-
18-
Changes
19-
*******
20-
21-
Deprecations
22-
************
23-
2412
Bugs Fixed
2513
**********
2614

15+
- **AutoRouting Legacy:** Fixed a bug that Auto Routing Legacy does not work.
16+
- **FeatureTest:**
17+
- Fixed a bug that FeatureTest may cause risky tests.
18+
- Fixed a bug that FeatureTest fails when forceGlobalSecureRequests is true.
19+
2720
See the repo's
2821
`CHANGELOG.md <https://github.com/codeigniter4/CodeIgniter4/blob/develop/CHANGELOG.md>`_
2922
for a complete list of bugs fixed.

user_guide_src/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
version = '4.4'
2727

2828
# The full version, including alpha/beta/rc tags.
29-
release = '4.4.0'
29+
release = '4.4.1'
3030

3131
# -- General configuration ---------------------------------------------------
3232

user_guide_src/source/installation/upgrade_441.rst

Lines changed: 8 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,6 @@ Please refer to the upgrade instructions corresponding to your installation meth
1212
:local:
1313
:depth: 2
1414

15-
Mandatory File Changes
16-
**********************
17-
18-
Breaking Changes
19-
****************
20-
21-
Breaking Enhancements
22-
*********************
23-
2415
Project Files
2516
*************
2617

@@ -33,18 +24,18 @@ the project space: `Explore on Packagist <https://packagist.org/explore/?query=c
3324
Content Changes
3425
===============
3526

36-
The following files received significant changes (including deprecations or visual adjustments)
37-
and it is recommended that you merge the updated versions with your application:
38-
39-
Config
40-
------
41-
42-
- @TODO
27+
Version 4.4.1 did not alter any executable code in project files.
4328

4429
All Changes
4530
===========
4631

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

50-
- @TODO
35+
- app/Config/Autoload.php
36+
- app/Config/DocTypes.php
37+
- app/Config/Email.php
38+
- app/Config/ForeignCharacters.php
39+
- app/Config/Mimes.php
40+
- app/Config/Modules.php
41+
- composer.json

0 commit comments

Comments
 (0)