Skip to content

Releases: akira/exq

Mock test adapter

02 Jan 03:05

Choose a tag to compare

[0.13.5] - 2020-01-01

Added

Remove serialization for enqueue and use cursored SCAN calls

04 Nov 00:20
b084b86

Choose a tag to compare

[0.13.4] - 2019-11-3

Fixed

Handle AWS Elasticache Redis DNS failover

17 Jun 01:59

Choose a tag to compare

[0.13.3] - 2019-06-16

Added

  • Handle AWS Elasticache Redis DNS failover. This ensures persistent connections are shutdown, forcing a reconnect in scenarios where a Redis node in a HA cluster is switched to READONLY mode by @deepfryed.

json_library issue fix

17 Jun 01:58

Choose a tag to compare

[0.13.2] - 2019-03-15

Fixed

  • Fix json_library issue #369 needing addition to config file. Add default value.

Support for configurable JSON parser, default to Jason + other cleanup

24 Feb 19:39

Choose a tag to compare

[0.13.1] - 2019-02-24

Added

  • Support for configurable JSON parser, with Jason as default by @chulkilee.

Fixed

  • Remove redundant time output for worker log by @akira.
  • Fix deprecated time warning by @gvl.

Support for Redix 0.8.1

21 Jan 18:05
8ae534f

Choose a tag to compare

[0.13.0] - 2019-01-21

Removed

  • Due to library dependencies, support for Elixir 1.3, Elixir 1.4 and OTP 18.0, OTP 19.0 has been removed.
  • Redix version older than 0.8.1 is no longer supported.
  • Config options reconnect_on_sleep and redis_timeout are now removed.

Added

Changed

Redix and enqueuer options

27 Oct 18:28

Choose a tag to compare

[0.12.2] - 2018-10-14

Fixed

  • Don't assume redis_opts is enumerable by @ryansch

Added

  • Add {:system, VAR} format support for more config params by @LysanderGG
  • Allow setting mode to both [:enqueuer, :api] by @buob

Changed

  • Specify less than 0.8.0 on redix version in mix.exs by @buob

v0.8.5

03 Apr 05:40

Choose a tag to compare

  • Enhancements

  • Fix

    • Fix to use seconds for real time stats #248
    • Fix startup when invalid worker process format (new versions of sidekiq) #245

Minor configuration fixes

19 May 03:08

Choose a tag to compare

  • reconnect_on_sleep added default value
  • Added shutdown_timeout_option

Updated Job API

10 Apr 00:51

Choose a tag to compare

Updated the Job manipulation API.

Should be able to preform needed operations on:

  • Active Jobs
  • Retry queue
  • Scheduled queue
  • Dead queue

Also moved everything to JobQueue module out of the GenServer so it can be accessed more easily. Also added tests.