Skip to content

Commit

Permalink
Release v2.17.3
Browse files Browse the repository at this point in the history
  • Loading branch information
sorentwo committed Jan 23, 2024
1 parent e02b96b commit 8f11903
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,26 @@ args
|> Oban.insert()
```

## v2.17.3 — 2023-01-23

### Enhancements

- [Stager] Rescue and report staging errors with telemetry

Staging errors from queue contention or other database issues would cause the top level stager
process to crash. Eventually that could shut down the entire Oban supervision tree. Now we
rescue standard database connectivity issues instead and report them as errors in telemetry.

- [Telemetry] Include result in job exception telemetry

Returning an `{:error, reason}` tuple triggers an :exception telemetry event, but there's still
a return value. Exception events for crashes, raises, timeouts, and kills will have a `nil`
result value.

- [Queue] Add producer `handle_call` clause for engine `put_meta` calls.

Previously, the only way to put meta was through a non-blocking notification to `handle_info`.

## v2.17.2 — 2023-01-11

### Enhancements
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.17.2"
@version "2.17.3"

def project do
[
Expand Down

0 comments on commit 8f11903

Please sign in to comment.