Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
19 changes: 10 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down