diff --git a/CHANGELOG.md b/CHANGELOG.md index ebba0c73f..fe4ddabbd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## [0.10.26](https://github.com/php-enqueue/enqueue-dev/tree/0.10.26) (2025-05-10) +[Full Changelog](https://github.com/php-enqueue/enqueue-dev/compare/0.10.25...0.10.26) + +**Merged pull requests:** + +- Fix: Updating composer [\#1383](https://github.com/php-enqueue/enqueue-dev/pull/1383) ([JimTools](https://github.com/JimTools)) +- Fix: Fixing CI [\#1382](https://github.com/php-enqueue/enqueue-dev/pull/1382) ([JimTools](https://github.com/JimTools)) + ## [0.10.25](https://github.com/php-enqueue/enqueue-dev/tree/0.10.25) (2025-04-18) [Full Changelog](https://github.com/php-enqueue/enqueue-dev/compare/0.10.24...0.10.25) diff --git a/pkg/simple-client/.github/workflows/ci.yml b/pkg/simple-client/.github/workflows/ci.yml index 6b24b0f30..604442a2f 100644 --- a/pkg/simple-client/.github/workflows/ci.yml +++ b/pkg/simple-client/.github/workflows/ci.yml @@ -10,12 +10,12 @@ jobs: strategy: fail-fast: false matrix: - php: ['7.4', '8.0', '8.1', '8.2'] + php: ['8.1', '8.2', '8.3', '8.4'] name: PHP ${{ matrix.php }} tests steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: shivammathur/setup-php@v2 with: @@ -24,7 +24,7 @@ jobs: - run: php Tests/fix_composer_json.php - - uses: "ramsey/composer-install@v1" + - uses: "ramsey/composer-install@v3" with: composer-options: "--prefer-source" diff --git a/pkg/simple-client/composer.json b/pkg/simple-client/composer.json index 2d2bd3710..03bda03b4 100644 --- a/pkg/simple-client/composer.json +++ b/pkg/simple-client/composer.json @@ -10,7 +10,7 @@ "enqueue/enqueue": "^0.10", "queue-interop/amqp-interop": "^0.8.2", "queue-interop/queue-interop": "^0.8", - "symfony/config": "^5.4|^6.0" + "symfony/config": "^6.0|^7.0" }, "require-dev": { "phpunit/phpunit": "^9.5",