Skip to content

Commit e779193

Browse files
committed
Release 0.16.0
1 parent 617a589 commit e779193

File tree

3 files changed

+23
-3
lines changed

3 files changed

+23
-3
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,27 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
55

66
## [Unreleased]
77

8+
## [0.16.0] - 2021-12-12
9+
10+
NOTE: Please read PR #458 for upgrade instructions.
11+
12+
### Added
13+
- Add retried_at field for Sidekiq compatibility #450 by @ananthakumaran
14+
- Add apis to support exq_ui #452 by @ananthakumaran
15+
- Add documentation about mode: :enqueuer and Exq.Enqueuer.queue_in #456 by @dbernheisel
16+
- Add api to immediatly enqeueue jobs from retry/scheduled queue #461 by @ananthakumaran
17+
- Add api to re-enqueue dead job #462 by @ananthakumaran
18+
19+
### Changed
20+
- Add Sidekiq 5 compatibility #458 by @ananthakumaran
21+
- Use latest Phoenix child spec style #459 by @vovayartsev
22+
- Replace deprecated supervisor calls #453 by @vkuznetsov
23+
24+
### Fixed
25+
- Handle timeouts on middleware pipeline #444 by @ananthakumaran
26+
- Use the correct scheduled time for enqueued_at field for mock #449 by @ananthakumaran
27+
28+
829
## [0.15.0] - 2021-07-19
930

1031
### Added

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ Exq is a job processing library compatible with Resque / Sidekiq for the [Elixir
1616
* Exq uses a format that is Resque/Sidekiq compatible.
1717
* This means you can use it to integrate with existing Rails / Django projects that also use a background job that's Resque compatible - typically with little or no changes needed to your existing apps. However, you can also use Exq standalone.
1818
* You can also use the Sidekiq UI to view job statuses, as Exq is compatible with the Sidekiq stats format.
19-
* If you don't need Resque/Sidekiq compatibility, another option to check out would be [toniq](https://github.com/joakimk/toniq) which uses erlang serialization instead of JSON.
2019
* You can run both Exq and Toniq in the same app for different workers.
2120
* Exq supports uncapped amount of jobs running, or also allows a max limit per queue.
2221
* Exq supports job retries with exponential backoff.
@@ -72,7 +71,7 @@ Add `:exq` to your `mix.exs` deps (replace version with the latest hex.pm packag
7271
defp deps do
7372
[
7473
# ... other deps
75-
{:exq, "~> 0.15.0"}
74+
{:exq, "~> 0.16.0"}
7675
]
7776
end
7877
```

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule Exq.Mixfile do
22
use Mix.Project
33

44
@source_url "https://github.com/akira/exq"
5-
@version "0.15.0"
5+
@version "0.16.0"
66

77
def project do
88
[

0 commit comments

Comments
 (0)