Skip to content

Commit

Permalink
Prep for 4.2.12 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kenjis committed Jan 9, 2023
1 parent 3459fed commit a7f85d3
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 5 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
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.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
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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

0 comments on commit a7f85d3

Please sign in to comment.