Skip to content

Commit 3e45037

Browse files
authored
Merge pull request #7848 from kenjis/release-4.3.8
Prep for 4.3.8 release
2 parents df2adca + f3967c8 commit 3e45037

File tree

5 files changed

+24
-26
lines changed

5 files changed

+24
-26
lines changed

CHANGELOG.md

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

3+
## [v4.3.8](https://github.com/codeigniter4/CodeIgniter4/tree/v4.3.8) (2023-08-25)
4+
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.3.7...v4.3.8)
5+
6+
### Fixed Bugs
7+
8+
* fix: [Pager] knocks down variables for View by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7758
9+
* fix: Model::insertBatch() causes error to non auto increment table by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7759
10+
* fix: [Model] updateBatch() may generate invalid SQL statement by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7787
11+
* fix: Model inserts cast $primaryKey value when using Entity by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7806
12+
* fix: instances of Validation rules are incremented each time `run()` is executed by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7815
13+
* fix: filter except empty by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7823
14+
* fix: `set_checkbox()` checks unchecked checkbox by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7818
15+
16+
### Refactoring
17+
18+
* Normalize data provider names by @paulbalandan in https://github.com/codeigniter4/CodeIgniter4/pull/7656
19+
* refactor: remove Model::$tempPrimaryKeyValue by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7760
20+
* Remove unused cast on RedisHandler by @samsonasik in https://github.com/codeigniter4/CodeIgniter4/pull/7786
21+
322
## [v4.3.7](https://github.com/codeigniter4/CodeIgniter4/tree/v4.3.7) (2023-07-30)
423
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.3.6...v4.3.7)
524

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.7';
51+
public const CI_VERSION = '4.3.8';
5252

5353
/**
5454
* App startup time.

user_guide_src/source/changelogs/v4.3.8.rst

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,14 @@
11
Version 4.3.8
22
#############
33

4-
Release Date: Unreleased
4+
Release Date: August 25, 2023
55

66
**4.3.8 release of CodeIgniter4**
77

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

12-
BREAKING
13-
********
14-
15-
Message Changes
16-
***************
17-
18-
Changes
19-
*******
20-
21-
Deprecations
22-
************
23-
2412
Bugs Fixed
2513
**********
2614

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

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

user_guide_src/source/installation/upgrade_438.rst

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +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-
18-
Breaking Changes
19-
****************
20-
21-
Breaking Enhancements
22-
*********************
23-
2415
Project Files
2516
*************
2617

@@ -39,12 +30,12 @@ and it is recommended that you merge the updated versions with your application:
3930
Config
4031
------
4132

42-
- @TODO
33+
- composer.json
4334

4435
All Changes
4536
===========
4637

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

50-
- @TODO
41+
- composer.json

0 commit comments

Comments
 (0)