Skip to content

Commit

Permalink
Update dependencies for v9
Browse files Browse the repository at this point in the history
  • Loading branch information
gordalina committed Oct 20, 2022
1 parent a102bcc commit 853e040
Show file tree
Hide file tree
Showing 5 changed files with 368 additions and 799 deletions.
14 changes: 4 additions & 10 deletions .github/workflows/ci.yml
Expand Up @@ -17,19 +17,13 @@ jobs:
strategy:
max-parallel: 15
matrix:
operating-system: [ubuntu-22.04, ubuntu-20.04, macos-10.15, macos-11]
php-version: ["8.0", "8.1"]
operating-system: [ubuntu-22.04, macos-11]
php-version: ["8.1"]
allow-failure: [false]
include:
- php-version: 8.2
operating-system: ubuntu-22.04
allow-failure: true
- php-version: 8.2
operating-system: ubuntu-20.04
allow-failure: true
- php-version: 8.2
operating-system: macos-10.15
allow-failure: true
- php-version: 8.2
operating-system: macos-11
allow-failure: true
Expand Down Expand Up @@ -149,7 +143,7 @@ jobs:
BUILD_DATE=${{ steps.info.outputs.BUILD_DATE }}
CACHETOOL_VERSION=${{ steps.info.outputs.VERSION }}
COMMIT_SHA=${{ steps.info.outputs.COMMIT_SHA }}
PHP_VERSION=8.0
PHP_VERSION=8.1
context: .
platforms: linux/amd64,linux/arm64
push: true
Expand All @@ -167,7 +161,7 @@ jobs:
BUILD_DATE=${{ steps.info.outputs.BUILD_DATE }}
CACHETOOL_VERSION=${{ steps.info.outputs.VERSION }}
COMMIT_SHA=${{ steps.info.outputs.COMMIT_SHA }}
PHP_VERSION=8.0
PHP_VERSION=8.1
context: .
platforms: linux/amd64,linux/arm64
push: true
Expand Down
7 changes: 5 additions & 2 deletions CHANGELOG.md
@@ -1,6 +1,9 @@
# Next
# 9.0.0

- [#215](https://github.com/gordalina/cachetool/pull/215) **Breaking Change:** Remove support for Monolog & PSR/Log 1.x
- **Breaking Change:** Remove support for PHP 8.0
- **Breaking Change:** Remove support for Symfony < 6.x
- **Breaking Change:** Remove support for Monolog < 3.x
- **Breaking Change:** Remove support for psr/log < 2.x
- [#215](https://github.com/gordalina/cachetool/pull/215) Add support for monolog 3.0

# 8.5.0
Expand Down
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -271,6 +271,7 @@ After running `composer install`, run `./vendor/bin/phpunit`
## Compatibility
- CacheTool 9.x works with PHP `>=8.1`
- CacheTool 8.x works with PHP `>=8.0`
- CacheTool 7.x works with PHP `>=7.3`
- CacheTool 6.x works with PHP `>=7.3`
Expand Down
22 changes: 11 additions & 11 deletions composer.json
Expand Up @@ -11,20 +11,20 @@
],
"require": {
"hollodotme/fast-cgi-client": "^3.0",
"monolog/monolog": "^2.0|^3.0",
"php": ">=8.0.0",
"psr/log": "^2.0|^3.0",
"symfony/console": "^4.0|^5.0|^6.0",
"symfony/dependency-injection": "^4.0|^5.0|^6.0",
"symfony/finder": "^4.0|^5.0|^6.0",
"symfony/process": "^4.0|^5.0|^6.0",
"symfony/yaml": "^4.0|^5.0|^6.0",
"symfony/http-client": "^4.0|^5.0|^6.0",
"symfony/http-foundation": "^4.0|^5.0|^6.0",
"monolog/monolog": "^3.0",
"php": ">=8.1.0",
"psr/log": "^2.0 || ^3.0",
"symfony/console": "^6.0",
"symfony/dependency-injection": "^6.0",
"symfony/finder": "^6.0",
"symfony/process": "^6.0",
"symfony/yaml": "^6.0",
"symfony/http-client": "^6.0",
"symfony/http-foundation": "^6.0",
"consolidation/self-update": "^2.0.0"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0"
"phpunit/phpunit": "^9.0"
},
"license": "MIT",
"authors": [
Expand Down

0 comments on commit 853e040

Please sign in to comment.