Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into 4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Jan 9, 2023
2 parents 4c3ff53 + 558db23 commit 2422ae1
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 7 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,24 @@
# Changelog

## [v4.2.12](https://github.com/codeigniter4/CodeIgniter4/tree/v4.2.12) (2023-01-09)
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.2.11...v4.2.12)

### Fixed Bugs
* docs: fix request.rst by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7014
* fix: `link_tag()` missing `type="application/rss+xml"` by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7022
* fix: Request::getIPaddress() causes error on CLI by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7030
* docs: fix upgrade_database.rst by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7036
* fix: `spark migrate:status` shows incorrect filename when format is `Y_m_d_His_` by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7038
* fix: Model::save() object when useAutoIncrement is disabled by @michalsn in https://github.com/codeigniter4/CodeIgniter4/pull/7042
* fix: define of STDOUT in CLI init() method by @jozefrebjak in https://github.com/codeigniter4/CodeIgniter4/pull/7052
* fix: change `getFile()` function of \CodeIgniter\Events\Events to static. by @ping-yee in https://github.com/codeigniter4/CodeIgniter4/pull/7046
* fix: [Email] add fallback to use gethostname() by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7053
* Fixing bug with legacy autoRoute when testing by @baycik in https://github.com/codeigniter4/CodeIgniter4/pull/7060

### Refactoring
* refactor: RequestTrait by rector by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7006
* refactor: update sass output by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/7026

## [v4.2.11](https://github.com/codeigniter4/CodeIgniter4/tree/v4.2.11) (2022-12-21)
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.2.10...v4.2.11)

Expand Down
2 changes: 1 addition & 1 deletion system/CodeIgniter.php
Expand Up @@ -47,7 +47,7 @@ class CodeIgniter
/**
* The current version of CodeIgniter Framework
*/
public const CI_VERSION = '4.2.11';
public const CI_VERSION = '4.2.12';

/**
* App startup time.
Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/changelogs/v4.2.12.rst
@@ -1,7 +1,7 @@
Version 4.2.12
##############

Release Date: Unreleased
Release Date: January 9, 2023

**4.2.12 release of CodeIgniter4**

Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/conf.py
Expand Up @@ -26,7 +26,7 @@
version = '4.2'

# The full version, including alpha/beta/rc tags.
release = '4.2.11'
release = '4.2.12'

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

Expand Down
6 changes: 4 additions & 2 deletions user_guide_src/source/installation/upgrade_4212.rst
Expand Up @@ -23,5 +23,7 @@ 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:

* app/Controllers/BaseController.php
* composer.json
* app/Config/Cache.php
* app/Config/Migrations.php
* app/Controllers/BaseController.php
* composer.json
4 changes: 2 additions & 2 deletions user_guide_src/source/libraries/validation.rst
Expand Up @@ -714,8 +714,8 @@ is_not_unique Yes Checks the database to see if the given value
filter (currently accept only one filter).
is_unique Yes Checks if this field value exists in the is_unique[table.field,ignore_field,ignore_value]
database. Optionally set a column and value
value to ignore, useful when updating records
to ignore itself.
to ignore, useful when updating records to
ignore itself.
less_than Yes Fails if field is greater than or equal to less_than[8]
the parameter value or not numeric.
less_than_equal_to Yes Fails if field is greater than the parameter less_than_equal_to[8]
Expand Down

0 comments on commit 2422ae1

Please sign in to comment.