Skip to content

Releases: dereuromark/cakephp-queue

8.2.4

01 May 10:45
b188bf1

Choose a tag to compare

Fixes

  • Removed deprecations

8.2.3

21 Mar 12:09
cc975e9

Choose a tag to compare

Fixes

  • Fixed some minor Windows compatibility issue

8.2.2

12 Mar 01:04
0a25531

Choose a tag to compare

Improvements

  • Compatibility with brick/varexporter 0.6+

8.2.1

10 Mar 02:30
7a2f1be

Choose a tag to compare

Fixes

  • Return Tasks as sorted list

8.2.0

18 Nov 14:22
fb54b7e

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

Choose a tag to compare

Fixes

Removed deprecations

Included commits: 8.1.0...8.1.1

8.1.0

03 Jul 10:36
f7d144a

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

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

Choose a tag to compare

Improvements

Add generic type hint + helpful exception for ServicesTrait

8.0.0-RC

07 Mar 22:50

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.