Skip to content

Commit

Permalink
Merge pull request #6816 from kenjis/release-4.2.10
Browse files Browse the repository at this point in the history
Prep for 4.2.10 release
  • Loading branch information
kenjis authored Nov 5, 2022
2 parents ce64c72 + 5101adf commit 5c2d10b
Show file tree
Hide file tree
Showing 7 changed files with 58 additions and 2 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [v4.2.10](https://github.com/codeigniter4/CodeIgniter4/tree/v4.2.10) (2022-11-05)
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.2.9...v4.2.10)

### Fixed Bugs
* docs: fix PHPDoc types in Session by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/6796
* fix: output "0" at the end of toolbar js when Kint::$enabled_mode is false by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/6809

### Refactoring
* Refactor assertHeaderEmitted and assertHeaderNotEmitted by @paulbalandan in https://github.com/codeigniter4/CodeIgniter4/pull/6806
* fix: variable types for PHPStan 1.9.0 by @kenjis in https://github.com/codeigniter4/CodeIgniter4/pull/6810

## [v4.2.9](https://github.com/codeigniter4/CodeIgniter4/tree/v4.2.9) (2022-10-30)
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.2.8...v4.2.9)

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.8';
public const CI_VERSION = '4.2.10';

/**
* App startup time.
Expand Down
1 change: 1 addition & 0 deletions user_guide_src/source/changelogs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ See all the changes.
.. toctree::
:titlesonly:

v4.2.10
v4.2.9
v4.2.8
v4.2.7
Expand Down
17 changes: 17 additions & 0 deletions user_guide_src/source/changelogs/v4.2.10.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Version 4.2.10
##############

Release Date: November 5, 2022

**4.2.10 release of CodeIgniter4**

.. contents::
:local:
:depth: 2

Bugs Fixed
**********

- Fixed incorrect PHPDoc types in Session.

See the repo's `CHANGELOG.md <https://github.com/codeigniter4/CodeIgniter4/blob/develop/CHANGELOG.md>`_ for a complete list of bugs fixed.
2 changes: 1 addition & 1 deletion user_guide_src/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
version = '4.2'

# The full version, including alpha/beta/rc tags.
release = '4.2.8'
release = '4.2.10'

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

Expand Down
26 changes: 26 additions & 0 deletions user_guide_src/source/installation/upgrade_4210.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
##############################
Upgrading from 4.2.9 to 4.2.10
##############################

Please refer to the upgrade instructions corresponding to your installation method.

- :ref:`Composer Installation App Starter Upgrading <app-starter-upgrading>`
- :ref:`Composer Installation Adding CodeIgniter4 to an Existing Project Upgrading <adding-codeigniter4-upgrading>`
- :ref:`Manual Installation Upgrading <installing-manual-upgrading>`

.. contents::
:local:
:depth: 2

Project Files
*************

Version ``4.2.10`` 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:

* composer.json
1 change: 1 addition & 0 deletions user_guide_src/source/installation/upgrading.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ See also :doc:`./backward_compatibility_notes`.

backward_compatibility_notes

upgrade_4210
upgrade_428
upgrade_427
upgrade_426
Expand Down

0 comments on commit 5c2d10b

Please sign in to comment.