From 612267e960a9a690a3608e5323408b6307f2d699 Mon Sep 17 00:00:00 2001 From: Rob Allen Date: Fri, 21 Nov 2025 11:09:10 +0000 Subject: [PATCH 1/2] Update version to 4.15.1 --- CHANGELOG.md | 12 ++++++++++++ Slim/App.php | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97c8b078c..64200ab9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,18 @@ ### Removed +## 4.15.1 - 2025-11-21 + +## Fixed + +- Allow PHPUnit 10, 11 and 12 when testing Slim itself (#3411) + +### Added + +- Add support for PHP 8.5 (#3415) + +**Full Changelog**: https://github.com/slimphp/Slim/compare/4.15.0...4.15.1 + ## 4.15.0 - 2025-08-24 ### Fixed diff --git a/Slim/App.php b/Slim/App.php index abe83ffee..04d70eaa8 100644 --- a/Slim/App.php +++ b/Slim/App.php @@ -43,7 +43,7 @@ class App extends RouteCollectorProxy implements RequestHandlerInterface * * @var string */ - public const VERSION = '4.15.0'; + public const VERSION = '4.15.1'; protected RouteResolverInterface $routeResolver; From f0ed67fc49b9b97729eef6bdb6fa8348b7930ed1 Mon Sep 17 00:00:00 2001 From: Rob Allen Date: Fri, 21 Nov 2025 12:18:00 +0000 Subject: [PATCH 2/2] Use Composer v2.8 in CI v2.9 runs audit checks which fail for the laminas/laminas-diactoros for PHP 7.4. However the command line config command for Composer 2.9 hasn't yet been released, so we can't easily configure during CI. --- .github/workflows/tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b328e2352..1161ba43d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -35,6 +35,7 @@ jobs: with: php-version: ${{ matrix.php }} coverage: xdebug + tools: composer:2.8 - name: Install dependencies with Composer run: composer update --prefer-dist --no-progress --no-interaction --ansi ${{ matrix.composer-options }}