diff --git a/CHANGELOG.md b/CHANGELOG.md index 22c91c1..21876ee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +### New in Version 7: +- Added localization for translated cron-string + Change method getCronExpressionTranslated() please Adapt your code. +- Drop support of Symfony < 8.0 +- Drop support of php < 8.4 +- Drop support of doctrine/orm 2 +- Drop support of doctrine/doctrine-bundle 2 +- Drop support of doctrine/dbal 3 +- Bump minimum dependencies + ### New in Version 6: - Read Upgrade - Add extensible entity architecture: extend `BaseScheduledCommand` to add custom fields (see README) diff --git a/README.md b/README.md index de2d5e1..5fff0d9 100644 --- a/README.md +++ b/README.md @@ -12,18 +12,19 @@ See [Wiki](https://github.com/Dukecity/CommandSchedulerBundle/wiki) for Details Please read [Upgrade-News for Version 6](UPGRADE.md) -Version 6.x has the goal to use modern Php and Symfony features and low maintenance. -So only PHP >= 8.2 and Symfony ^7.0 (Latest: ^7.4|^8.0) are supported at the moment. +Version 7.x has the goal to use modern Php and Symfony features and low maintenance. +So only PHP >= 8.4 and Symfony ^8.0 are supported at the moment. The following table shows the compatibilities of different versions of the bundle : -| Version | Symfony | PHP | -|----------------------------------------------------------------------------|----------------|-------| -| [6.x (main)](https://github.com/Dukecity/CommandSchedulerBundle/tree/main) | ^7.0 + ^8.0 | >=8.2 | -| [5.x](https://github.com/Dukecity/CommandSchedulerBundle/tree/5.x) | ^5.4 + ^6.0 | >=8.0 | -| [4.x](https://github.com/Dukecity/CommandSchedulerBundle/tree/4.x) | ^4.4.20 + ^5.3 | >=8.0 | -| [3.x](https://github.com/Dukecity/CommandSchedulerBundle/tree/3.x) | ^4.4.20 + ^5.3 | >=7.3 | -| [2.2.x](https://github.com/Dukecity/CommandSchedulerBundle/tree/2.2) | ^3.4 + ^4.3 | ^7.1 | +| Version | Symfony | PHP | +|------------------------------------------------------------------------------|----------------|-------| +| [7.x (main)](https://github.com/Dukecity/CommandSchedulerBundle/tree/main) | ^8.0 | >=8.4 | +| [6.x](https://github.com/Dukecity/CommandSchedulerBundle/tree/main) | ^7.0 + ^8.0 | >=8.2 | +| [5.x](https://github.com/Dukecity/CommandSchedulerBundle/tree/5.x) | ^5.4 + ^6.0 | >=8.0 | +| [4.x](https://github.com/Dukecity/CommandSchedulerBundle/tree/4.x) | ^4.4.20 + ^5.3 | >=8.0 | +| [3.x](https://github.com/Dukecity/CommandSchedulerBundle/tree/3.x) | ^4.4.20 + ^5.3 | >=7.3 | +| [2.2.x](https://github.com/Dukecity/CommandSchedulerBundle/tree/2.2) | ^3.4 + ^4.3 | ^7.1 | ## Install