Skip to content

Commit

Permalink
Release v2.16.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sorentwo committed Oct 26, 2023
1 parent 7dd22eb commit 966ee77
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,21 @@ Now `unique` has a `timestamp` option that allows checking the `:scheduled_at` t
use Oban.Worker, unique: [period: 120, timestamp: :scheduled_at]
```

## v2.16.3 — 2023-10-26

### Bug Fixes

- [Oban] Start `Peer` and `Stager` after `Queue` supervisor

The queue supervisor blocks shutdown to give jobs time to shut down gracefully. During that
time, the Peer could obtain or retain leadership despite all of the plugins having stopped. Now
the Peer and Stager (which is only active on the leader) stop before the queue supervisor.

- [Testing] Cast timestamp to utc_datetime in testing queries

Timestamps with a timezone are now cast to `:utc_datetime` via a changeset before running
`Oban.Testing` queries.

## v2.16.2 — 2023-10-03

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ defmodule Oban.MixProject do
use Mix.Project

@source_url "https://github.com/sorentwo/oban"
@version "2.16.2"
@version "2.16.3"

def project do
[
Expand Down

0 comments on commit 966ee77

Please sign in to comment.