Skip to content
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
1 change: 1 addition & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Slim/App.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down