Skip to content

Commit

Permalink
Merge pull request #7456 from kenjis/release-4.3.4
Browse files Browse the repository at this point in the history
Prep for 4.3.4 release
  • Loading branch information
kenjis authored Apr 27, 2023
2 parents 4263caf + 33a638e commit 5127f98
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 11 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# 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
* fix: [SQLite3][Postgres][SQLSRV][OCI8] Forge::modifyColumn() changes NULL constraint incorrectly by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7371

### 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
* fix: add missing 'make:cell' in app/Config/Generators.php by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7458

### 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)

Expand Down
2 changes: 1 addition & 1 deletion system/CodeIgniter.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
8 changes: 1 addition & 7 deletions user_guide_src/source/changelogs/v4.3.4.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Version 4.3.4
#############

Release Date: Unreleased
Release Date: April 27, 2023

**4.3.4 release of CodeIgniter4**

Expand Down Expand Up @@ -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
************

Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
version = '4.3'

# The full version, including alpha/beta/rc tags.
release = '4.3.3'
release = '4.3.4'

# -- General configuration ---------------------------------------------------

Expand Down
7 changes: 5 additions & 2 deletions user_guide_src/source/installation/upgrade_434.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,15 @@ and it is recommended that you merge the updated versions with your application:
Config
------

- @TODO
- app/Config/Generators.php

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
- public/index.php

0 comments on commit 5127f98

Please sign in to comment.