Skip to content

Commit 281ab03

Browse files
committed
Release v2.11.2
1 parent c75b493 commit 281ab03

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,34 @@ callback][rsc].
7676

7777
[rsc]: Oban.Web.Resolver.html#c:bulk_action_limit/1
7878

79+
## v2.11.2 - 2025-04-21
80+
81+
### Enhancements
82+
83+
- [Installer] Add igniter powered `oban_web` installer.
84+
85+
It's now possible to install oban_web with a single igniter command:
86+
87+
```bash
88+
mix igniter.install oban_web
89+
```
90+
91+
Or install `oban` and `oban_web` at the same time:
92+
93+
```bash
94+
mix igniter.install oban,oban_web
95+
```
96+
97+
- [Resolver] Pattern match on `arg` rather than checking for `decorated` annotation.
98+
99+
Matching on term encoded `arg` is more accurate than checking for decorated metadata. This makes
100+
the default `format_job_args` compatible with workflow cascade jobs that don't have any `arg`
101+
set.
102+
103+
- [Page] Upgrade bundled assets to use the Phoenix LiveView JavaScript version to v1.10
104+
105+
- [Chart] Replace inline styles with tailwind classes to avoid inline style CSP warnings.
106+
79107
## v2.11.1 — 2025-02-06
80108

81109
### Enhancements

mix.exs

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

44
@source_url "https://github.com/oban-bg/oban_web"
5-
@version "2.11.1"
5+
@version "2.11.2"
66

77
def project do
88
[

0 commit comments

Comments
 (0)