Skip to content

Commit efdfd98

Browse files
committed
Prep for 4.3.7 release
1 parent 1ce507e commit efdfd98

File tree

5 files changed

+52
-17
lines changed

5 files changed

+52
-17
lines changed

CHANGELOG.md

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

3+
## [v4.3.7](https://github.com/codeigniter4/CodeIgniter4/tree/v4.3.7) (2023-07-30)
4+
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.3.6...v4.3.7)
5+
6+
### Breaking Changes
7+
8+
* fix: FeatureTestTrait may change $params values passed to call(), and a few bug fixes by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7602
9+
* fix: auto routing legacy and $route->add() by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7690
10+
* fix: [Model] setValidationRule() cannot use with ruleGroup by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7691
11+
12+
### Fixed Bugs
13+
14+
* docs: fix incorrect description on RedirectException (1) by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7629
15+
* docs: fix incorrect description on RedirectException (2) by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7633
16+
* fix: skip http proxy added header by @jozefrebjak in https://github.com/codeigniter4/CodeIgniter4/pull/7622
17+
* fix: number_to_roman() param type by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7640
18+
* fix: [Auto Routing Improved] feature testing may use incorrect param count by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7597
19+
* fix: `url_to()` error message by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7652
20+
* fix: [ViewCells] caching by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7663
21+
* fix: [ViewCells] when there are cells with the same short name, only the first cell is loaded by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7686
22+
* Fix number comparison in number_to_amount() in number_helper.php by @sba in https://github.com/codeigniter4/CodeIgniter4/pull/7701
23+
* fix: wrong Config classname to config() in Toolbar by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7735
24+
* fix: $sensitiveDataInTrace does not work by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7725
25+
26+
### Enhancements
27+
28+
* Remove PHPStan from pre-commit hook by @lonnieezell in https://github.com/codeigniter4/CodeIgniter4/pull/7618
29+
30+
### Refactoring
31+
32+
* refactor: remove unused property in Encryption\Handlers\BaseHandler by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7579
33+
* refactor: use ::class to config() param by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7611
34+
* refactor: remove unused non-empty array in RequestTrait by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7620
35+
* refactor: [Cache] simplify code of `FileHandler::getItem()` by @paulbalandan in https://github.com/codeigniter4/CodeIgniter4/pull/7667
36+
* refactor: replace `config(Paths::class)` by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7702
37+
338
## [v4.3.6](https://github.com/codeigniter4/CodeIgniter4/tree/v4.3.6) (2023-06-18)
439
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.3.5...v4.3.6)
540

system/CodeIgniter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class CodeIgniter
4848
/**
4949
* The current version of CodeIgniter Framework
5050
*/
51-
public const CI_VERSION = '4.3.6';
51+
public const CI_VERSION = '4.3.7';
5252

5353
/**
5454
* App startup time.

user_guide_src/source/changelogs/v4.3.7.rst

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Version 4.3.7
22
#############
33

4-
Release Date: Unreleased
4+
Release Date: July 30, 2023
55

66
**4.3.7 release of CodeIgniter4**
77

@@ -23,19 +23,13 @@ BREAKING
2323
changed from "**rules array**" to "**array** of **rules array** and **customErrors array**"
2424
(``[rules, customErrors]``).
2525

26-
Message Changes
27-
***************
28-
2926
Changes
3027
*******
3128

3229
- The number helper function :php:func:`number_to_amount()`, which previously
3330
returned "1000", has been corrected to return "1 thousand" when the number
3431
is exactly 1000, for example.
3532

36-
Deprecations
37-
************
38-
3933
Bugs Fixed
4034
**********
4135

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.3'
2727

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

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

user_guide_src/source/installation/upgrade_437.rst

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +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-
1815
Breaking Changes
1916
****************
2017

@@ -52,9 +49,6 @@ If you use the method, update the code like the following::
5249
5350
[$rules, $customErrors] = $this->validation->loadRuleGroup($rules);
5451

55-
Breaking Enhancements
56-
*********************
57-
5852
Project Files
5953
*************
6054

@@ -73,12 +67,24 @@ and it is recommended that you merge the updated versions with your application:
7367
Config
7468
------
7569

76-
- @TODO
70+
- app/Config/Kint.php
7771

7872
All Changes
7973
===========
8074

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

84-
- @TODO
78+
- app/Config/App.php
79+
- app/Config/Autoload.php
80+
- app/Config/Cache.php
81+
- app/Config/ContentSecurityPolicy.php
82+
- app/Config/Filters.php
83+
- app/Config/Kint.php
84+
- app/Config/Logger.php
85+
- app/Config/Migrations.php
86+
- app/Config/Modules.php
87+
- app/Config/Paths.php
88+
- app/Controllers/BaseController.php
89+
- app/Controllers/Home.php
90+
- composer.json

0 commit comments

Comments
 (0)