Skip to content

Commit e73db00

Browse files
authored
Merge pull request #8674 from kenjis/release-4.4.7
Prep for 4.4.7 release
2 parents fa851ac + 4708e7a commit e73db00

File tree

6 files changed

+41
-22
lines changed

6 files changed

+41
-22
lines changed

CHANGELOG.md

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

3+
## [v4.4.7](https://github.com/codeigniter4/CodeIgniter4/tree/v4.4.7) (2024-03-29)
4+
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.4.6...v4.4.7)
5+
6+
### Breaking Changes
7+
* fix: Time::difference() DST bug by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8661
8+
9+
### Fixed Bugs
10+
* fix: [Validation] FileRules cause error if getimagesize() returns false by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8592
11+
* fix: isWriteType() to recognize CTE; always excluding RETURNING by @markconnellypro in https://github.com/codeigniter4/CodeIgniter4/pull/8599
12+
* fix: duplicate Cache-Control header with Session by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8601
13+
* fix: [DebugBar] scroll to top by @ddevsr in https://github.com/codeigniter4/CodeIgniter4/pull/8595
14+
* fix: Model::shouldUpdate() logic by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8614
15+
* fix: esc() for 'raw' context by @Cleric-K in https://github.com/codeigniter4/CodeIgniter4/pull/8633
16+
* docs: fix incorrect CURLRequest allow_redirects description by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8653
17+
* fix: Model::set() does not accept object by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8670
18+
19+
### Refactoring
20+
* refactor: replace PHP_VERSION by PHP_VERSION_ID by @justbyitself in https://github.com/codeigniter4/CodeIgniter4/pull/8618
21+
* refactor: apply early return pattern by @justbyitself in https://github.com/codeigniter4/CodeIgniter4/pull/8621
22+
* refactor: move footer info to top in error_exception.php by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8626
23+
324
## [v4.4.6](https://github.com/codeigniter4/CodeIgniter4/tree/v4.4.6) (2024-02-24)
425
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.4.5...v4.4.6)
526

phpdoc.dist.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<output>api/build/</output>
1111
<cache>api/cache/</cache>
1212
</paths>
13-
<version number="4.4.6">
13+
<version number="4.4.7">
1414
<api format="php">
1515
<source dsn=".">
1616
<path>system</path>

system/CodeIgniter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class CodeIgniter
5454
/**
5555
* The current version of CodeIgniter Framework
5656
*/
57-
public const CI_VERSION = '4.4.6';
57+
public const CI_VERSION = '4.4.7';
5858

5959
/**
6060
* App startup time.

user_guide_src/source/changelogs/v4.4.7.rst

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Version 4.4.7
33
#############
44

5-
Release Date: Unreleased
5+
Release Date: March 29, 2024
66

77
**4.4.7 release of CodeIgniter4**
88

@@ -33,18 +33,6 @@ BREAKING
3333
hours due to Daylight Saving Time (DST). This bug has been fixed. See
3434
:ref:`Note in Times and Dates <time-viewing-differences>` for details.
3535

36-
***************
37-
Message Changes
38-
***************
39-
40-
*******
41-
Changes
42-
*******
43-
44-
************
45-
Deprecations
46-
************
47-
4836
**********
4937
Bugs Fixed
5038
**********

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.6'
29+
release = '4.4.7'
3030

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

user_guide_src/source/installation/upgrade_447.rst

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,6 @@ In the unlikely event that you wish to maintain the behavior of the previous
8989
versions, change the time zone of both dates being compared to UTC before passing
9090
them to ``Time::difference()``.
9191

92-
*********************
93-
Breaking Enhancements
94-
*********************
95-
9692
*************
9793
Project Files
9894
*************
@@ -115,12 +111,26 @@ Config
115111
- app/Config/App.php
116112
- The property ``$permittedURIChars`` was added. See :ref:`urls-uri-security`
117113
for details.
118-
- @TODO
119114

120115
All Changes
121116
===========
122117

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

126-
- @TODO
121+
- app/Config/Cache.php
122+
- app/Config/ContentSecurityPolicy.php
123+
- app/Config/Database.php
124+
- app/Config/Exceptions.php
125+
- app/Config/Filters.php
126+
- app/Config/Format.php
127+
- app/Config/Logger.php
128+
- app/Config/Mimes.php
129+
- app/Config/Routing.php
130+
- app/Config/Toolbar.php
131+
- app/Config/Validation.php
132+
- app/Config/View.php
133+
- app/Controllers/BaseController.php
134+
- app/Views/errors/html/debug.css
135+
- app/Views/errors/html/error_exception.php
136+
- composer.json

0 commit comments

Comments
 (0)