mirror of
https://github.com/codeigniter4/CodeIgniter4.git
synced 2025-02-20 11:44:28 +08:00
Prep for 4.3.4 release
This commit is contained in:
parent
90762f31f7
commit
24ffa514aa
18
CHANGELOG.md
18
CHANGELOG.md
@ -1,5 +1,23 @@
|
||||
# Changelog
|
||||
|
||||
## [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)
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
* fix: redirect status code by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7445
|
||||
|
||||
### Fixed Bugs
|
||||
|
||||
* fix: view cell cannot locate the auto-generated view file by @sammyskills in https://github.com/codeigniter4/CodeIgniter4/pull/7392
|
||||
* fix: CURLRequest - clear response headers between requests by @michalsn in https://github.com/codeigniter4/CodeIgniter4/pull/7398
|
||||
* fix: [Auto Routing Improved] spark routes shows invalid routes by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7419
|
||||
* fix: remove $insertID in make:model template by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7443
|
||||
|
||||
### Refactoring
|
||||
|
||||
* refactor: Security::getPostedToken() by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7377
|
||||
|
||||
## [v4.3.3](https://github.com/codeigniter4/CodeIgniter4/tree/v4.3.3) (2023-03-26)
|
||||
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.3.2...v4.3.3)
|
||||
|
||||
|
@ -47,7 +47,7 @@ class CodeIgniter
|
||||
/**
|
||||
* The current version of CodeIgniter Framework
|
||||
*/
|
||||
public const CI_VERSION = '4.3.3';
|
||||
public const CI_VERSION = '4.3.4';
|
||||
|
||||
/**
|
||||
* App startup time.
|
||||
|
@ -1,7 +1,7 @@
|
||||
Version 4.3.4
|
||||
#############
|
||||
|
||||
Release Date: Unreleased
|
||||
Release Date: April 27, 2023
|
||||
|
||||
**4.3.4 release of CodeIgniter4**
|
||||
|
||||
@ -50,12 +50,6 @@ Forge::modifyColumn()
|
||||
- The ``NULL``/``NOT NULL`` change may still be unexpectedly, it is recommended
|
||||
to always specify the ``null`` key.
|
||||
|
||||
Message Changes
|
||||
***************
|
||||
|
||||
Changes
|
||||
*******
|
||||
|
||||
Deprecations
|
||||
************
|
||||
|
||||
|
@ -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.3'
|
||||
release = '4.3.4'
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
||||
|
@ -49,21 +49,12 @@ these files being outside of the **system** scope they will not be changed witho
|
||||
There are some third-party CodeIgniter modules available to assist with merging changes to
|
||||
the project space: `Explore on Packagist <https://packagist.org/explore/?query=codeigniter4%20updates>`_.
|
||||
|
||||
Content Changes
|
||||
===============
|
||||
|
||||
The following files received significant changes (including deprecations or visual adjustments)
|
||||
and it is recommended that you merge the updated versions with your application:
|
||||
|
||||
Config
|
||||
------
|
||||
|
||||
- @TODO
|
||||
|
||||
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
|
||||
- composer.json
|
||||
- public/index.php
|
||||
|
Loading…
x
Reference in New Issue
Block a user