Skip to content

Commit b730910

Browse files
authored
Merge pull request #7587 from kenjis/release-4.3.6
Prep for 4.3.6 release
2 parents 557b0ed + 1f05ec6 commit b730910

File tree

5 files changed

+32
-30
lines changed

5 files changed

+32
-30
lines changed

CHANGELOG.md

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

3+
## [v4.3.6](https://github.com/codeigniter4/CodeIgniter4/tree/v4.3.6) (2023-06-18)
4+
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.3.5...v4.3.6)
5+
6+
### Breaking Changes
7+
8+
* fix: [Validation] DBGroup is ignored when checking the value of a placeholder by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7549
9+
* fix: [Auto Routing Improved] feature testing may not find controller/method by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7543
10+
11+
### Fixed Bugs
12+
13+
* fix: feature test with validation by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7548
14+
* fix: [Postgre] Semicolon in the connection parameters break the DSN string by @michalsn in https://github.com/codeigniter4/CodeIgniter4/pull/7552
15+
* fix: [QueryBuilder] incorrect SQL without space before "ON DUPLICATE KEY UPDATE" by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7564
16+
* fix: wrong classname in exception message in Cell by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7569
17+
* fix: `imagecreatefrompng()` gd-png: libpng warning by @ping-yee in https://github.com/codeigniter4/CodeIgniter4/pull/7570
18+
19+
### Refactoring
20+
21+
* refactor: remove unneeded code in IncomingRequest by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7525
22+
* refactor: View by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7534
23+
* refactor: [Entity] fix incorrect return value by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7542
24+
* refactor: Database::initDriver() by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7553
25+
* refactor: remove Factories::models() by @paulbalandan in https://github.com/codeigniter4/CodeIgniter4/pull/7566
26+
* refactor: Validation::processRules() by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7565
27+
* refactor: [Auto Routing Improved] ensure $httpVerb is lower case by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7575
28+
329
## [v4.3.5](https://github.com/codeigniter4/CodeIgniter4/tree/v4.3.5) (2023-05-21)
430
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.3.4...v4.3.5)
531

system/CodeIgniter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class CodeIgniter
4747
/**
4848
* The current version of CodeIgniter Framework
4949
*/
50-
public const CI_VERSION = '4.3.5';
50+
public const CI_VERSION = '4.3.6';
5151

5252
/**
5353
* App startup time.

user_guide_src/source/changelogs/v4.3.6.rst

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
Version 4.3.6
22
#############
33

4-
Release Date: Unreleased
4+
Release Date: June 18, 2023
55

6-
**{version} release of CodeIgniter4**
6+
**4.3.6 release of CodeIgniter4**
77

88
.. contents::
99
:local:
@@ -39,12 +39,6 @@ Validation::check()
3939
- The second parameter has changed from ``string $rule`` to ``$rules``.
4040
- The optional fourth parameter ``$dbGroup = null`` has been added.
4141

42-
Message Changes
43-
***************
44-
45-
Changes
46-
*******
47-
4842
Deprecations
4943
************
5044

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

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

user_guide_src/source/installation/upgrade_436.rst

Lines changed: 2 additions & 20 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

@@ -30,27 +27,12 @@ Breaking Enhancements
3027
Project Files
3128
*************
3229

33-
Some files in the **project space** (root, app, public, writable) received updates. Due to
34-
these files being outside of the **system** scope they will not be changed without your intervention.
35-
36-
There are some third-party CodeIgniter modules available to assist with merging changes to
37-
the project space: `Explore on Packagist <https://packagist.org/explore/?query=codeigniter4%20updates>`_.
38-
39-
Content Changes
40-
===============
41-
42-
The following files received significant changes (including deprecations or visual adjustments)
43-
and it is recommended that you merge the updated versions with your application:
44-
45-
Config
46-
------
47-
48-
- @TODO
30+
Version 4.3.6 did not alter any executable code in project files.
4931

5032
All Changes
5133
===========
5234

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

56-
- @TODO
38+
- composer.json

0 commit comments

Comments
 (0)