Skip to content

Releases: dereuromark/cakephp-queue

8.2.0

18 Nov 14:22
fb54b7e
Compare
Choose a tag to compare

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

18 Jul 13:24
Compare
Choose a tag to compare

Fixes

Removed deprecations

Included commits: 8.1.0...8.1.1

8.1.0

03 Jul 10:36
f7d144a
Compare
Choose a tag to compare

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

11 Mar 22:47
Compare
Choose a tag to compare

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 of createJob()
  • Support Config object for $options param of createJob()
  • 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

09 Mar 16:24
Compare
Choose a tag to compare

Improvements

Add generic type hint + helpful exception for ServicesTrait

8.0.0-RC

07 Mar 22:50
Compare
Choose a tag to compare
8.0.0-RC Pre-release
Pre-release

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

06 Mar 15:12
c56f4f6
Compare
Choose a tag to compare

Improvements

  • Make sure Migrations work for mssql.

Full Changelog: 7.2.1...7.2.2

7.2.1

23 Feb 18:14
Compare
Choose a tag to compare

Fixes

Fixed up custom finder signature for PHPStan

7.2.0

07 Feb 23:33
5a1f127
Compare
Choose a tag to compare

Improvements

  • Add status field queued_jobs to search by @LordSimal in #399
  • Improve usage of defaultworkertimeout by @michielkeijts in #401
  • Allow providing serialized way of Message object for easier 4.x upgrading in #397

Full Changelog: 7.1.3...7.2.0

7.1.3

23 Jan 06:24
Compare
Choose a tag to compare

Fixes

Fixed migration file for Postgres.