Skip to content

Commit d9902df

Browse files
committed
Merge remote-tracking branch 'origin/develop' into 4.6
2 parents 050a76a + b0b7ecb commit d9902df

File tree

6 files changed

+25
-35
lines changed

6 files changed

+25
-35
lines changed

CHANGELOG.md

+19-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
# Changelog
22

3-
## [v4.5.4](https://github.com/codeigniter4/CodeIgniter4/tree/v4.5.3) (2024-07-27)
3+
## [v4.5.5](https://github.com/codeigniter4/CodeIgniter4/tree/v4.5.5) (2024-09-07)
4+
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.5.4...v4.5.5)
5+
6+
### Fixed Bugs
7+
8+
* fix: Validation rule `differs`/`matches` with dot array by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/9103
9+
* fix: update preload.php by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/9111
10+
* fix: [Validation] TypeError when using numeric field names by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/9142
11+
* fix: `auto_link()` regexp by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/9169
12+
13+
### Refactoring
14+
15+
* refactor: reduce_multiples() and fix user guide by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/9099
16+
* refactor: enable AddMethodCallBasedStrictParamTypeRector by @samsonasik in https://github.com/codeigniter4/CodeIgniter4/pull/9156
17+
* refactor: BaseBuilder by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/9157
18+
* refactor: improve error message for missing PHP DB extensions by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/9160
19+
* refactor: fix typo in BaseConnection.php by @ThomasMeschke in https://github.com/codeigniter4/CodeIgniter4/pull/9170
20+
21+
## [v4.5.4](https://github.com/codeigniter4/CodeIgniter4/tree/v4.5.4) (2024-07-27)
422
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.5.3...v4.5.4)
523

624
### Fixed Bugs

phpdoc.dist.xml

+1-1
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.5.4">
13+
<version number="4.5.5">
1414
<api format="php">
1515
<source dsn=".">
1616
<path>system</path>

system/CodeIgniter.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ class CodeIgniter
5656
/**
5757
* The current version of CodeIgniter Framework
5858
*/
59-
public const CI_VERSION = '4.5.4';
59+
public const CI_VERSION = '4.5.5';
6060

6161
/**
6262
* App startup time.

user_guide_src/source/changelogs/v4.5.5.rst

+1-17
Original file line numberDiff line numberDiff line change
@@ -2,30 +2,14 @@
22
Version 4.5.5
33
#############
44

5-
Release Date: Unreleased
5+
Release Date: September 7, 2024
66

77
**4.5.5 release of CodeIgniter4**
88

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

13-
********
14-
BREAKING
15-
********
16-
17-
***************
18-
Message Changes
19-
***************
20-
21-
*******
22-
Changes
23-
*******
24-
25-
************
26-
Deprecations
27-
************
28-
2913
**********
3014
Bugs Fixed
3115
**********

user_guide_src/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
version = '4.5'
2727

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

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

user_guide_src/source/installation/upgrade_455.rst

+2-14
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,6 @@ Please refer to the upgrade instructions corresponding to your installation meth
1212
:local:
1313
:depth: 2
1414

15-
**********************
16-
Mandatory File Changes
17-
**********************
18-
19-
****************
20-
Breaking Changes
21-
****************
22-
23-
*********************
24-
Breaking Enhancements
25-
*********************
26-
2715
*************
2816
Project Files
2917
*************
@@ -44,12 +32,12 @@ and it is recommended that you merge the updated versions with your application:
4432
Config
4533
------
4634

47-
- @TODO
35+
- composer.json
4836

4937
All Changes
5038
===========
5139

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

55-
- @TODO
43+
- composer.json

0 commit comments

Comments
 (0)