Skip to content

Commit db9cfd4

Browse files
authored
Merge pull request #8947 from kenjis/release-4.5.2
Prep for 4.5.2 release
2 parents 5b3c374 + 0f7a454 commit db9cfd4

File tree

7 files changed

+45
-44
lines changed

7 files changed

+45
-44
lines changed

CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# Changelog
22

3+
## [v4.5.2](https://github.com/codeigniter4/CodeIgniter4/tree/v4.5.2) (2024-06-10)
4+
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.5.1...v4.5.2)
5+
6+
### Fixed Bugs
7+
8+
* chore: fix phpunit.xml.dist for appstarter by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8785
9+
* fix: update `preload.php` for 4.5 by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8805
10+
* fix: [ErrorException] Undefined array key in `spark phpini:check` by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8804
11+
* fix: incorrect Security exception message by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8818
12+
* fix: [QueryBuilder] TypeError in join() with BETWEEN by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8792
13+
* fix: [SQLSRV] Query Builder always sets `"<database>"."<schema>".` to the table name. by @ping-yee in https://github.com/codeigniter4/CodeIgniter4/pull/8786
14+
* fix: remove unused undefined param $raw in MockCache::save() by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8847
15+
* fix: FileCollection pseudo-regex by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8868
16+
* fix: [Model] casting may throw InvalidArgumentException: Invalid parameter: nullable by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8870
17+
* fix: [Model] casting causes TypeError when finding no record by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8871
18+
* fix: correct property default values in Email by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8855
19+
* fix: CLI::promptByMultipleKeys() and prompt() by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8873
20+
* fix: [Postgres] show missing error message by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8913
21+
* fix: TypeError in number_to_amount() by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8932
22+
* fix: Model::find() returns incorrect data with casting by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/8933
23+
24+
### Refactoring
25+
26+
* refactor: remove unused path parameter on PhpStreamWrapper::stream_open() by @samsonasik in https://github.com/codeigniter4/CodeIgniter4/pull/8926
27+
328
## [v4.5.1](https://github.com/codeigniter4/CodeIgniter4/tree/v4.5.1) (2024-04-14)
429
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.5.0...v4.5.1)
530

admin/next-upgrading-guide.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ Project Files
3131
Some files in the **project space** (root, app, public, writable) received updates. Due to
3232
these files being outside of the **system** scope they will not be changed without your intervention.
3333

34-
There are some third-party CodeIgniter modules available to assist with merging changes to
35-
the project space: `Explore on Packagist <https://packagist.org/explore/?query=codeigniter4%20updates>`_.
34+
.. note:: There are some third-party CodeIgniter modules available to assist
35+
with merging changes to the project space:
36+
`Explore on Packagist <https://packagist.org/explore/?query=codeigniter4%20updates>`_.
3637

3738
Content Changes
3839
===============

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.1">
13+
<version number="4.5.2">
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.1';
59+
public const CI_VERSION = '4.5.2';
6060

6161
/**
6262
* App startup time.

user_guide_src/source/changelogs/v4.5.2.rst

+1-13
Original file line numberDiff line numberDiff line change
@@ -2,32 +2,20 @@
22
Version 4.5.2
33
#############
44

5-
Release Date: Unreleased
5+
Release Date: June 10, 2024
66

77
**4.5.2 release of CodeIgniter4**
88

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

13-
********
14-
BREAKING
15-
********
16-
1713
***************
1814
Message Changes
1915
***************
2016

2117
- Added ``Security.insecureCookie`` message.
2218

23-
*******
24-
Changes
25-
*******
26-
27-
************
28-
Deprecations
29-
************
30-
3119
**********
3220
Bugs Fixed
3321
**********

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.1'
29+
release = '4.5.2'
3030

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

user_guide_src/source/installation/upgrade_452.rst

+13-26
Original file line numberDiff line numberDiff line change
@@ -12,43 +12,30 @@ 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
*************
3018

3119
Some files in the **project space** (root, app, public, writable) received updates. Due to
3220
these files being outside of the **system** scope they will not be changed without your intervention.
3321

34-
There are some third-party CodeIgniter modules available to assist with merging changes to
35-
the project space: `Explore on Packagist <https://packagist.org/explore/?query=codeigniter4%20updates>`_.
36-
37-
Content Changes
38-
===============
39-
40-
The following files received significant changes (including deprecations or visual adjustments)
41-
and it is recommended that you merge the updated versions with your application:
42-
43-
Config
44-
------
45-
46-
- @TODO
22+
.. note:: There are some third-party CodeIgniter modules available to assist
23+
with merging changes to the project space:
24+
`Explore on Packagist <https://packagist.org/explore/?query=codeigniter4%20updates>`_.
4725

4826
All Changes
4927
===========
5028

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

54-
- @TODO
32+
- app/Config/DocTypes.php
33+
- app/Config/Exceptions.php
34+
- preload.php
35+
- spark
36+
- writable/.htaccess
37+
- writable/cache/index.html
38+
- writable/debugbar/index.html
39+
- writable/index.html
40+
- writable/logs/index.html
41+
- writable/session/index.html

0 commit comments

Comments
 (0)