Skip to content

Commit a99a5f2

Browse files
authored
Merge pull request #7510 from kenjis/release-4.3.5
Prep for 4.3.5 release
2 parents 2c9f381 + ffdc4d0 commit a99a5f2

File tree

5 files changed

+31
-18
lines changed

5 files changed

+31
-18
lines changed

CHANGELOG.md

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

3+
## [v4.3.5](https://github.com/codeigniter4/CodeIgniter4/tree/v4.3.5) (2023-05-21)
4+
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.3.4...v4.3.5)
5+
6+
### SECURITY
7+
8+
* *Remote Code Execution Vulnerability in Validation Placeholders* was fixed. See the [Security advisory](https://github.com/codeigniter4/CodeIgniter4/security/advisories/GHSA-m6m8-6gq8-c9fj) for more information.
9+
* fix: Session::stop() does not destroy session by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7503
10+
11+
### Fixed Bugs
12+
13+
* docs: remove incorrect @property in ResponseTrait by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7495
14+
* fix: validation error when a closure is used in combination with permit_empty or if_exist rules by @michalsn in https://github.com/codeigniter4/CodeIgniter4/pull/7492
15+
* fix: standardize behavior of `make:cell` and `Cells` by @paulbalandan in https://github.com/codeigniter4/CodeIgniter4/pull/7481
16+
* fix: PostgreSQL getVersion() logic by @marekmosna in https://github.com/codeigniter4/CodeIgniter4/pull/7488
17+
* fix: PostgreSQL getVersion() output by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7509
18+
19+
### Enhancements
20+
21+
* feat: user guide dark mode by @michalsn in https://github.com/codeigniter4/CodeIgniter4/pull/7463
22+
23+
### Refactoring
24+
25+
* refactor: Entity variable by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7499
26+
327
## [v4.3.4](https://github.com/codeigniter4/CodeIgniter4/tree/v4.3.4) (2023-04-27)
428
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.3.3...v4.3.4)
529

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.4';
50+
public const CI_VERSION = '4.3.5';
5151

5252
/**
5353
* App startup time.

user_guide_src/source/changelogs/v4.3.5.rst

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

4-
Release Date: Unreleased
4+
Release Date: May 21, 2023
55

66
**4.3.5 release of CodeIgniter4**
77

@@ -18,12 +18,6 @@ SECURITY
1818
- Fixed that ``Session::stop()`` did not destroy the session.
1919
See :ref:`Session Library <session-stop>` for details.
2020

21-
BREAKING
22-
********
23-
24-
Message Changes
25-
***************
26-
2721
Changes
2822
*******
2923

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

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

user_guide_src/source/installation/upgrade_435.rst

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,13 @@ 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

2118
Validation Placeholders
2219
=======================
2320

2421
- To use :ref:`validation-placeholders` securely, please remember to create a validation rule for the field you will use as a placeholder.
25-
2622

2723
Session::stop()
2824
===============
@@ -36,9 +32,6 @@ If you have code to depend on the bug, replace it with ``session_regenerate_id(t
3632

3733
See also :ref:`Session Library <session-stop>`.
3834

39-
Breaking Enhancements
40-
*********************
41-
4235
Project Files
4336
*************
4437

@@ -57,12 +50,14 @@ and it is recommended that you merge the updated versions with your application:
5750
Config
5851
------
5952

60-
- @TODO
53+
- app/Config/Generators.php
6154

6255
All Changes
6356
===========
6457

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

68-
- @TODO
61+
- app/Config/App.php
62+
- app/Config/Generators.php
63+
- composer.json

0 commit comments

Comments
 (0)