Skip to content
This repository was archived by the owner on Jul 17, 2026. It is now read-only.

Commit 183df4b

Browse files
author
Mark de Heij
committed
Merge tag '2.3.0' into develop
2.3.0
2 parents 648d71d + 98fd121 commit 183df4b

4 files changed

Lines changed: 13 additions & 3 deletions

File tree

.github/workflows/php.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
name: PHP ${{ matrix.php }} - ${{ matrix.stability }}
2121

2222
steps:
23-
- uses: actions/checkout@v2
23+
- uses: actions/checkout@v4
2424

2525
- name: Setup PHP
2626
uses: shivammathur/setup-php@v2
@@ -36,7 +36,7 @@ jobs:
3636

3737
- name: Cache Composer packages
3838
id: composer-cache
39-
uses: actions/cache@v2
39+
uses: actions/cache@v4
4040
with:
4141
path: vendor
4242
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,16 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [Unreleased]
8+
9+
## [2.3.0] - 2025-07-08
10+
11+
### Added
12+
- Add October CMS 4.x support
13+
714
## [2.2.0] - 2025-02-03
815

16+
### Added
917
- Add option to show flash message when CSRF token is invalid
1018

1119
## [2.1.1] - 2022-10-28

middleware/VerifyCsrfTokenMiddleware.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
use Illuminate\Http\RedirectResponse;
1515
use Illuminate\Http\Request;
1616
use Illuminate\Routing\Redirector;
17-
use October\Rain\Cookie\Middleware\EncryptCookies;
1817
use October\Rain\Flash\FlashBag;
18+
use October\Rain\Foundation\Http\Middleware\EncryptCookies;
1919
use RuntimeException;
2020
use Throwable;
2121

updates/version.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@ v2.0.3: "Fixes type error when using `csrf_token()` Twig function"
99
v2.0.4: "Maintenance release"
1010
v2.1.0: "Add support for October CMS 3.x"
1111
v2.1.1: "Add missing composer repository"
12+
v2.2.0: "Add option to show flash message when CSRF token is invalid"
13+
v2.3.0: "Add support for October CMS 4.x"

0 commit comments

Comments
 (0)