Skip to content

Commit

Permalink
Merge pull request codeigniter4#7874 from kenjis/release-4.4.1
Browse files Browse the repository at this point in the history
Prep for 4.4.1 release
  • Loading branch information
kenjis authored Sep 4, 2023
2 parents daa8811 + 228ece2 commit fe9c7ea
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 32 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion system/CodeIgniter.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
19 changes: 6 additions & 13 deletions user_guide_src/source/changelogs/v4.4.1.rst
Original file line number Diff line number Diff line change
@@ -1,29 +1,22 @@
Version 4.4.1
#############

Release Date: Unreleased
Release Date: September 5, 2023

**4.4.1 release of CodeIgniter4**

.. contents::
:local:
:depth: 3

BREAKING
********

Message Changes
***************

Changes
*******

Deprecations
************

Bugs Fixed
**********

- **AutoRouting Legacy:** Fixed a bug that Auto Routing Legacy does not work.
- **FeatureTest:**
- Fixed a bug that FeatureTest may cause risky tests.
- Fixed a bug that FeatureTest fails when forceGlobalSecureRequests is true.

See the repo's
`CHANGELOG.md <https://github.com/codeigniter4/CodeIgniter4/blob/develop/CHANGELOG.md>`_
for a complete list of 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 @@ -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 ---------------------------------------------------

Expand Down
25 changes: 8 additions & 17 deletions user_guide_src/source/installation/upgrade_441.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
*************

Expand All @@ -33,18 +24,18 @@ the project space: `Explore on Packagist <https://packagist.org/explore/?query=c
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
Version 4.4.1 did not alter any executable code in project files.

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
- app/Config/Autoload.php
- app/Config/DocTypes.php
- app/Config/Email.php
- app/Config/ForeignCharacters.php
- app/Config/Mimes.php
- app/Config/Modules.php
- composer.json

0 comments on commit fe9c7ea

Please sign in to comment.