Skip to content

Releases: dereuromark/cakephp-queue

3.6.0

22 Nov 15:17
Compare
Choose a tag to compare

Improvements

  • Utf8mb4 by default
  • Basic Sqlserver support
  • Allow connection to be configurable

Bugfixes

  • Revert json_encode() back to serialize() for object handling. This is a regression fix also for email sending. Make sure all jobs are processed before updating! Also make sure you do not pass any security critical user data, but only references to DB records to process etc. This way you also do not run into size issues of the payload.
  • failure_message mediumtext to not truncate larger datasets
  • pid length fixed

3.5.3

20 Sep 17:05
Compare
Choose a tag to compare

Improvements

Added IdeHelper plugin support for generating (PhpStorm) meta file.
This allows typehinting and autocomplete for your QueuedJobsTable and specifically its createJob() method.

3.5.2

04 Sep 12:17
Compare
Choose a tag to compare

Bugfixes

Fix deleting of queue failures.

3.5.1

03 Sep 19:13
Compare
Choose a tag to compare

Bugfixes

Fixed duplication issues.

3.5.0

16 Aug 08:33
Compare
Choose a tag to compare

Improvements

The PID "file system" approach has been deprecated.
It instead now uses a DB driven approach for consistency with the DB table existing already for tasks.
The new table "queue_processes" now contains the PID info.
This allows to use the Queue plugin also on environments with shared DB or without any usable (shared) filesystem present.
To enable set the Queue.pidfilepath to false.

Note: The new DB table will automatically be created with your hopefully deploy-script added command line call bin/cake migrations migrate -p Queue. Thus a minor release here.

3.4.1

28 Jun 08:53
Compare
Choose a tag to compare

Make mailer configurable, add missing headers.

3.4.0

25 Apr 08:43
Compare
Choose a tag to compare

Improvements

Rewrite with json_encode/json_decode:
unserialize() was too easy to break and even a bit dangerous.
Now JSON data gets passed around.

Also now included:

  • Priority for tasks
  • Transactions on getting a new job if supported from the database

Note: queued_tasks table is now queued_jobs to be consistent what it actually stands for.
Make sure you run migrations and adjust all your loadModel() calls etc.

Minor cleanups included.

Please upgrade with an empty queue to avoid data loss!

Follow up on SimpleQueueTransport fix

26 Aug 13:18
Compare
Choose a tag to compare

SimpleQueueTransport fix

Fix SimpleQueueTransport

24 Jun 11:58
Compare
Choose a tag to compare

Also:

  • requestJob() has been rewritten to better work cross DB.

Make admin backend work

25 Apr 14:36
Compare
Choose a tag to compare