Skip to content

Commit

Permalink
Merge pull request #7587 from kenjis/release-4.3.6
Browse files Browse the repository at this point in the history
Prep for 4.3.6 release
  • Loading branch information
kenjis authored Jun 17, 2023
2 parents 557b0ed + 1f05ec6 commit b730910
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 30 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## [v4.3.6](https://github.com/codeigniter4/CodeIgniter4/tree/v4.3.6) (2023-06-18)
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.3.5...v4.3.6)

### Breaking Changes

* fix: [Validation] DBGroup is ignored when checking the value of a placeholder by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7549
* fix: [Auto Routing Improved] feature testing may not find controller/method by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7543

### Fixed Bugs

* fix: feature test with validation by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7548
* fix: [Postgre] Semicolon in the connection parameters break the DSN string by @michalsn in https://github.com/codeigniter4/CodeIgniter4/pull/7552
* fix: [QueryBuilder] incorrect SQL without space before "ON DUPLICATE KEY UPDATE" by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7564
* fix: wrong classname in exception message in Cell by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7569
* fix: `imagecreatefrompng()` gd-png: libpng warning by @ping-yee in https://github.com/codeigniter4/CodeIgniter4/pull/7570

### Refactoring

* refactor: remove unneeded code in IncomingRequest by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7525
* refactor: View by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7534
* refactor: [Entity] fix incorrect return value by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7542
* refactor: Database::initDriver() by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7553
* refactor: remove Factories::models() by @paulbalandan in https://github.com/codeigniter4/CodeIgniter4/pull/7566
* refactor: Validation::processRules() by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7565
* refactor: [Auto Routing Improved] ensure $httpVerb is lower case by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7575

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

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.5';
public const CI_VERSION = '4.3.6';

/**
* App startup time.
Expand Down
10 changes: 2 additions & 8 deletions user_guide_src/source/changelogs/v4.3.6.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
Version 4.3.6
#############

Release Date: Unreleased
Release Date: June 18, 2023

**{version} release of CodeIgniter4**
**4.3.6 release of CodeIgniter4**

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

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

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

Expand Down
22 changes: 2 additions & 20 deletions user_guide_src/source/installation/upgrade_436.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ Please refer to the upgrade instructions corresponding to your installation meth
:local:
:depth: 2

Mandatory File Changes
**********************

Breaking Changes
****************

Expand All @@ -30,27 +27,12 @@ Breaking Enhancements
Project Files
*************

Some files in the **project space** (root, app, public, writable) received updates. Due to
these files being outside of the **system** scope they will not be changed without your intervention.

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
Version 4.3.6 did not alter any executable code in project files.

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
- composer.json

0 comments on commit b730910

Please sign in to comment.