Releases: dereuromark/cakephp-queue
8.2.2
8.2.1
Fixes
- Return Tasks as sorted list
8.2.0
Fixes
- Fixed payload data edit functionality
Improvements
- Separated queued (in progress) from scheduled jobs in backend. This way it is clearer to see what actually is supposed to run currently, and what is just already in the queue for the future to run.
8.1.1
8.1.0
Improvements
- Update brick/varexporter dependency to allow for v0.5 (
"brick/varexporter": "^0.4.0 || ^0.5.0"
)
Included commits: 8.0.0...8.1.0
8.0.0
Improvements
This new major ships with a few improvements:
- Cleaned up DB migration files using a single snapshot. It is expected that all previous migrations have been run for existing installs.
- Fix up data field to be of JSON type. Conversion to array is now happening automatically, so make sure you are not using manual encode/decode anywhere. Also make sure that you are not using deprecated serialize/unserialize, as now everything is using JSON.
- Support DTOs for
$data
param ofcreateJob()
- Support Config object for
$options
param ofcreateJob()
- Support more customizable Icon templating in backend
So make sure that you migrated away from passing whole serialized objects in your payload in favor of ->toArray()
or "JSON string" representation - which also can build up the object afterward again inside the run()
method.
It usually also decreases DB row size and is safer around code upgrade deployment (serialized objects often break here after the slightest change).
For more info on changes coming from v7 see included upgrade guide in docs/ folder.
Full Changelog: 7.2.2...8.0.0
7.2.3
Improvements
Add generic type hint + helpful exception for ServicesTrait
8.0.0-RC
Improvements
This new v8 major contains some cleanup.
It is more internal, so most apps will not have to change a single line.
For more info on changes coming from v7 see included upgrade guide in docs/ folder.
Please test and give feedback so we can release v8 stable next week.
7.2.2
7.2.1
Fixes
Fixed up custom finder signature for PHPStan