File tree Expand file tree Collapse file tree 2 files changed +29
-1
lines changed
Expand file tree Collapse file tree 2 files changed +29
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 [
You can’t perform that action at this time.
0 commit comments