Skip to content

Releases: dereuromark/cakephp-queue

7.1.1

02 Dec 23:58

Choose a tag to compare

Fixes

Fixed migration version.

7.1.0

28 Nov 19:26

Choose a tag to compare

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

28 Nov 12:34

Choose a tag to compare

Improvements

Added index to QueuedJobs table columns to make performance much faster with many records.

7.0.1

27 Nov 20:47

Choose a tag to compare

Fixes

Fixed backend controller actions.

7.0.0

30 Oct 10:41

Choose a tag to compare

CakePHP 5 compatible release

Main changes:

  • QueuedJob.failed is now attempts. Make sure to run the migration for it.

6.8.0

25 Oct 17:33
50ab21d

Choose a tag to compare

Improvements

  • Removed deprecations

Note: CakePHP 4.4+ now

7.0.0-RC

28 Sep 21:44

Choose a tag to compare

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

10 Sep 08:43

Choose a tag to compare

Improvements

  • Expose kill signal parameter in controller

6.7.1

19 Jun 12:27
0657b84

Choose a tag to compare

Fixes

  • Fixed TaskFinder failing to find tasks if app directory is not src/.

6.7.0

23 Apr 23:08

Choose a tag to compare

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}.