Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep for 4.2.3 release #6353

Merged
merged 2 commits into from
Aug 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [v4.2.3](https://github.com/codeigniter4/CodeIgniter4/tree/v4.2.3) (2022-08-06)
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.2.2...v4.2.3)

* SECURITY: Improve CSRF protection (for Shield CSRF security fix)

## [v4.2.2](https://github.com/codeigniter4/CodeIgniter4/tree/v4.2.2) (2022-08-05)
[Full Changelog](https://github.com/codeigniter4/CodeIgniter4/compare/v4.2.1...v4.2.2)

Expand Down
6 changes: 4 additions & 2 deletions admin/RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> Documentation guide based on the releases of `4.0.5` and `4.1.0` on January 31, 2021.
>
> Updated for `4.1.6` on December 24, 2021.
> Updated for `4.2.3` on August 6, 2022.
>
> -MGatner

Expand All @@ -29,8 +29,9 @@ git clone [email protected]:codeigniter4/CodeIgniter4.git
git clone [email protected]:codeigniter4/userguide.git
```
* Vet the **admin/** folders for any removed hidden files (Action deploy scripts *do not remove these*)
* Merge any Security Advisory PRs in private forks

## CodeIgniter4
## Process

> Note: Most changes that need noting in the User Guide and docs should have been included
> with their PR, so this process assumes you will not be generating much new content.
Expand Down Expand Up @@ -75,6 +76,7 @@ composer create-project codeigniter4/appstarter release-test
cd release-test
composer test && composer info codeigniter4/framework
```
* publish any Security Advisories that were resolved from private forks

## User Guide

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.2';
public const CI_VERSION = '4.2.3';

/**
* 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.4
v4.2.3
v4.2.2
v4.2.1
Expand Down
2 changes: 1 addition & 1 deletion user_guide_src/source/changelogs/v4.2.3.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Version 4.2.3
#############

Release Date: Unreleased
Release Date: August 6, 2022

**4.2.3 release of CodeIgniter4**

Expand Down
35 changes: 35 additions & 0 deletions user_guide_src/source/changelogs/v4.2.4.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
Version 4.2.4
#############

Release Date: Unreleased

**4.2.4 release of CodeIgniter4**

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

BREAKING
********

none.

Enhancements
************

none.

Changes
*******

none.

Deprecations
************

none.

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

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.2'
release = '4.2.3'

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

Expand Down
5 changes: 5 additions & 0 deletions user_guide_src/source/installation/upgrade_423.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#############################
Upgrading from 4.2.2 to 4.2.3
#############################

Version ``4.2.3`` is an internal change for security measures and requires no intervention in projects.