Skip to content

Commit

Permalink
feat(*): Allow Symfony 7 packages (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
julienloizelet authored Jan 16, 2025
1 parent 17ac075 commit b4bb739
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
1 change: 1 addition & 0 deletions .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ jobs:
run: ddev phpstan /var/www/html/${{env.EXTENSION_PATH}}/tools/coding-standards phpstan/phpstan.neon /var/www/html/${{env.EXTENSION_PATH}}/src

- name: Run PSALM
if: contains(fromJson('["7.4","8.0","8.1"]'),matrix.php-version)
run: ddev psalm ./${{env.EXTENSION_PATH}}/tools/coding-standards /var/www/html/${{env.EXTENSION_PATH}}/tools/coding-standards/psalm

- name: Prepare PHP UNIT tests
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,17 @@ The [public API](https://semver.org/spec/v2.0.0.html#spec-item-1) of this libra
As far as possible, we try to adhere to [Symfony guidelines](https://symfony.com/doc/current/contributing/code/bc.html#working-on-symfony-code) when deciding whether a change is a breaking change or not.


---

## [4.1.0](https://github.com/crowdsecurity/php-remediation-engine/releases/tag/v4.1.0) - 2025-01-16
[_Compare with previous release_](https://github.com/crowdsecurity/php-remediation-engine/compare/v4.0.0...v4.1.0)


### Changed

- Allow Symfony 7 packages


---

## [4.0.0](https://github.com/crowdsecurity/php-remediation-engine/releases/tag/v4.0.0) - 2025-01-09
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@
"require": {
"php": "^7.2.5 || ^8.0",
"ext-json": "*",
"symfony/config": "^4.4.27 || ^5.2 || ^6.0",
"symfony/cache": "^5.4.11|| ^6.0.11",
"crowdsec/common": "^2.3.2",
"crowdsec/capi-client": "^3.2.0",
"crowdsec/lapi-client": "^3.4.0",
"symfony/config": "^4.4.27 || ^5.2 || ^6.0 || ^7.2",
"symfony/cache": "^5.4.11 || ^6.0.11 || ^7.2.1",
"crowdsec/common": "^2.4.0",
"crowdsec/capi-client": "^3.3.0",
"crowdsec/lapi-client": "^3.5.0",
"monolog/monolog": "^1.17 || ^2.1",
"mlocati/ip-lib": "^1.18",
"geoip2/geoip2": "^2.13.0"
Expand Down
2 changes: 1 addition & 1 deletion src/Constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -89,5 +89,5 @@ class Constants extends CommonConstants
/**
* @var string The current version of this library
*/
public const VERSION = 'v4.0.0';
public const VERSION = 'v4.1.0';
}

0 comments on commit b4bb739

Please sign in to comment.