Skip to content

Commit 2ce16b2

Browse files
committed
Release v2.11.4
1 parent 403bba6 commit 2ce16b2

File tree

2 files changed

+37
-6
lines changed

2 files changed

+37
-6
lines changed

CHANGELOG.md

Lines changed: 36 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,17 +53,17 @@ The queue and jobs tables are fully rebuilt with shared, reusable components and
5353
functionality. This makes interacting with jobs clearer while queues gain some much requested
5454
functionality:
5555

56-
* Sidebar - a new queue sidebar shows status counts and enables filtering by statuses such as
56+
- Sidebar - a new queue sidebar shows status counts and enables filtering by statuses such as
5757
`paused` or `terminating`.
5858

59-
* Filtering - queues are auto-complete filterable just like jobs, making it possible to find
59+
- Filtering - queues are auto-complete filterable just like jobs, making it possible to find
6060
queues running on a particular node or narrow down by status.
6161

62-
* Shared Sorting - queue sorting now behaves identically to jobs, through a shared dropdown.
62+
- Shared Sorting - queue sorting now behaves identically to jobs, through a shared dropdown.
6363

64-
* Uniform Navigation - click on any part of the queue row to navigate to details.
64+
- Uniform Navigation - click on any part of the queue row to navigate to details.
6565

66-
* Condensed Rows - simplify the queue page by removing nested row components. Extra queue details
66+
- Condensed Rows - simplify the queue page by removing nested row components. Extra queue details
6767
are in the sub-queue page.
6868

6969
## 🕯️ Operate on Full Selection
@@ -76,6 +76,37 @@ callback][rsc].
7676

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

79+
## v2.11.4 - 2025-04-21
80+
81+
### Enhancements
82+
83+
- [Connectivity] Consider metric checks for disconnected status.
84+
85+
The connectivity status is now determined by `Met` output as well as pubsub connectivity.
86+
This should make it easier to identify metric issues on solo nodes, e.g. in dev or a
87+
staging environment.
88+
89+
### Bug Fixes
90+
91+
- [Dashboard] Read phoenix js assests at compile time.
92+
93+
Stop bundling phoenix and liveview assests. Instead, read them at compile time and concatinate
94+
with app js.
95+
96+
- [Search] Trim strings when splitting to parse integers.
97+
98+
This prevents "not a textual representation of an integer" errors when splitting on a comma
99+
with an empty string.
100+
101+
- [Search] Move all regexes out of module attributes.
102+
103+
Regexes aren't allowed in module attributes as of OTP 28. This moves them inline rather than
104+
hoisted at the top of the module.
105+
106+
- [Sidebar] Fix column header mismatch in sidebar.
107+
108+
The headers and values in the sidebar were misaligned and showed the wrong values.
109+
79110
## v2.11.3 - 2025-04-21
80111

81112
### Bug Fixes

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.3"
5+
@version "2.11.4"
66

77
def project do
88
[

0 commit comments

Comments
 (0)