Exq Versions Save

Job processing library for Elixir - compatible with Resque / Sidekiq

v0.13.2

4 years ago

[0.13.2] - 2019-03-15

Fixed

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

v0.13.1

5 years ago

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

v0.13.0

5 years ago

[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

  • Support for Redix >= 0.8.1 by @ryansch and @ananthakumaran.
  • Configuration for Mix Format by @chulkilee.
  • Use :microsecond vs :microseconds by @KalvinHom.

Changed

  • Redis options are now passed in via redis_options by @ryansch and @ananthakumaran.
  • Removed redix_sentinel dependency, now supported by new Redix version by @ananthakumaran.

v0.12.2

5 years ago

[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

7 years ago
  • Enhancements

    • Add access to job metadata from worker process #247 (Added by @ananthakumaran)
  • Fix

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

v0.7.1

8 years ago
  • reconnect_on_sleep added default value
  • Added shutdown_timeout_option

v0.7.0

8 years ago

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.

v0.6.4

8 years ago
  • Support url method for redis url
  • Create Exq.Api for web stats and move out of Enqueuer
  • mode option for starting entire system, enqueuer, or api.
  • Centralize config defaults

v0.6.0

8 years ago
  • Use Redix instead of eredis.
  • Worker Supervision.
  • Fix mix task.
  • Worker to perform retry_fail job