mirror of
https://github.com/codeigniter4/CodeIgniter4.git
synced 2025-02-20 11:44:28 +08:00
Prep for 4.3.5 release
This commit is contained in:
parent
2c9f381c15
commit
ffdc4d003f
24
CHANGELOG.md
24
CHANGELOG.md
@ -1,5 +1,29 @@
|
||||
# Changelog
|
||||
|
||||
## [v4.3.5](https://github.com/codeigniter4/CodeIgniter4/tree/v4.3.5) (2023-05-21)
|
||||
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.3.4...v4.3.5)
|
||||
|
||||
### SECURITY
|
||||
|
||||
* *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.
|
||||
* fix: Session::stop() does not destroy session by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7503
|
||||
|
||||
### Fixed Bugs
|
||||
|
||||
* docs: remove incorrect @property in ResponseTrait by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7495
|
||||
* 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
|
||||
* fix: standardize behavior of `make:cell` and `Cells` by @paulbalandan in https://github.com/codeigniter4/CodeIgniter4/pull/7481
|
||||
* fix: PostgreSQL getVersion() logic by @marekmosna in https://github.com/codeigniter4/CodeIgniter4/pull/7488
|
||||
* fix: PostgreSQL getVersion() output by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7509
|
||||
|
||||
### Enhancements
|
||||
|
||||
* feat: user guide dark mode by @michalsn in https://github.com/codeigniter4/CodeIgniter4/pull/7463
|
||||
|
||||
### Refactoring
|
||||
|
||||
* refactor: Entity variable by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7499
|
||||
|
||||
## [v4.3.4](https://github.com/codeigniter4/CodeIgniter4/tree/v4.3.4) (2023-04-27)
|
||||
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.3.3...v4.3.4)
|
||||
|
||||
|
@ -47,7 +47,7 @@ class CodeIgniter
|
||||
/**
|
||||
* The current version of CodeIgniter Framework
|
||||
*/
|
||||
public const CI_VERSION = '4.3.4';
|
||||
public const CI_VERSION = '4.3.5';
|
||||
|
||||
/**
|
||||
* App startup time.
|
||||
|
@ -1,7 +1,7 @@
|
||||
Version 4.3.5
|
||||
#############
|
||||
|
||||
Release Date: Unreleased
|
||||
Release Date: May 21, 2023
|
||||
|
||||
**4.3.5 release of CodeIgniter4**
|
||||
|
||||
@ -18,12 +18,6 @@ SECURITY
|
||||
- Fixed that ``Session::stop()`` did not destroy the session.
|
||||
See :ref:`Session Library <session-stop>` for details.
|
||||
|
||||
BREAKING
|
||||
********
|
||||
|
||||
Message Changes
|
||||
***************
|
||||
|
||||
Changes
|
||||
*******
|
||||
|
||||
|
@ -26,7 +26,7 @@ copyright = '2019-' + str(year_now) + ' CodeIgniter Foundation'
|
||||
version = '4.3'
|
||||
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '4.3.4'
|
||||
release = '4.3.5'
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
||||
|
@ -12,9 +12,6 @@ Please refer to the upgrade instructions corresponding to your installation meth
|
||||
:local:
|
||||
:depth: 2
|
||||
|
||||
Mandatory File Changes
|
||||
**********************
|
||||
|
||||
Breaking Changes
|
||||
****************
|
||||
|
||||
@ -22,7 +19,6 @@ Validation Placeholders
|
||||
=======================
|
||||
|
||||
- To use :ref:`validation-placeholders` securely, please remember to create a validation rule for the field you will use as a placeholder.
|
||||
|
||||
|
||||
Session::stop()
|
||||
===============
|
||||
@ -36,9 +32,6 @@ If you have code to depend on the bug, replace it with ``session_regenerate_id(t
|
||||
|
||||
See also :ref:`Session Library <session-stop>`.
|
||||
|
||||
Breaking Enhancements
|
||||
*********************
|
||||
|
||||
Project Files
|
||||
*************
|
||||
|
||||
@ -57,7 +50,7 @@ and it is recommended that you merge the updated versions with your application:
|
||||
Config
|
||||
------
|
||||
|
||||
- @TODO
|
||||
- app/Config/Generators.php
|
||||
|
||||
All Changes
|
||||
===========
|
||||
@ -65,4 +58,6 @@ All Changes
|
||||
This is a list of all files in the **project space** that received changes;
|
||||
many will be simple comments or formatting that have no effect on the runtime:
|
||||
|
||||
- @TODO
|
||||
- app/Config/App.php
|
||||
- app/Config/Generators.php
|
||||
- composer.json
|
||||
|
Loading…
x
Reference in New Issue
Block a user