Releases: dereuromark/cakephp-queue
Releases · dereuromark/cakephp-queue
7.1.1
Fixes
Fixed migration version.
7.1.0
Improvements
- Added index to QueuedJobs table columns to make performance much faster with many records.
Full Changelog: 7.0.1...7.1.0
6.9.0
Improvements
Added index to QueuedJobs table columns to make performance much faster with many records.
7.0.1
Fixes
Fixed backend controller actions.
7.0.0
CakePHP 5 compatible release
Main changes:
- QueuedJob.failed is now attempts. Make sure to run the migration for it.
6.8.0
Improvements
- Removed deprecations
Note: CakePHP 4.4+ now
7.0.0-RC
CakePHP 5 compatible pre-release
For CakePHP 5.0+ apps.
Please test - once confirmed to be all good, we can tag stable release.
6.7.2
Improvements
- Expose kill signal parameter in controller
6.7.1
Fixes
- Fixed TaskFinder failing to find tasks if app directory is not
src/.
6.7.0
Improvements
Allow creating tasks in sub folders/namespaces.
So far it was only possible to have tasks on one single level.
You can now use My/Sub/MyTaskNameTask to create tasks in sub-namespace Task\My\Sub\.
E.g. src/Queue/Task/My/Sub/{YourNameForIt}Task.php would be found and used as My/Sub/{YourNameForIt}.