diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 4682199..30864e3 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - php: [8.3, 8.2, 8.1] + php: [8.4, 8.3, 8.2, 8.1] laravel: ['10.*', '11.*'] dependency-version: [prefer-stable] include: @@ -27,6 +27,8 @@ jobs: exclude: - laravel: 11.* php: 8.1 + - laravel: 10.* + php: 8.4 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e9645d..fda7212 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes will be documented in this file +## 1.3.0 - 2024-12-04 + +- Add PHP 8.4 support + ## 1.2.0 - 2024-02-27 - Add Laravel 11 support diff --git a/README.md b/README.md index 962486c..925c457 100644 --- a/README.md +++ b/README.md @@ -9,9 +9,9 @@ Create request Correlation-IDs via middleware and pass both this globally unique `Correlation-ID` and any user provided `Request-ID` to the global log context. -| Version | Laravel | PHP | -|---------|--------------|-------------------------| -| 1.* | 10.* \| 11.* | 8.1.* \| 8.2.* \| 8.3.* | +| Version | Laravel | PHP | +|---------|--------------|----------------------------------| +| 1.* | 10.* \| 11.* | 8.1.* \| 8.2.* \| 8.3.* \| 8.4.* | ## Motivation diff --git a/composer.json b/composer.json index 872f51b..49465d8 100644 --- a/composer.json +++ b/composer.json @@ -21,7 +21,7 @@ } ], "require": { - "php": "~8.1.0 || ~8.2.0 || ~8.3.0", + "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0", "illuminate/contracts": "^10.0 || ^11.0" }, "require-dev": {