Skip to content

Commit a9e0f3a

Browse files
committed
release: v1.1.0 — Search and Sortable Columns
1 parent b498d5c commit a9e0f3a

4 files changed

Lines changed: 18 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [1.1.0] - 2026-02-07
4+
5+
### Added
6+
7+
- **Global Search** — Search across all job types (ready, scheduled, failed, in-progress, completed) and recurring tasks
8+
- Search by class name, queue name, arguments, active job ID, and error messages
9+
- Results grouped by category with counts
10+
- Accessible from the header on every page
11+
- **Sortable Column Headers** — Click column headers to sort job tables
12+
- Sort by any column (class name, queue, created at, priority, etc.)
13+
- Toggle ascending/descending with visual indicators
14+
- Available on all job list views
15+
316
## [1.0.1] - 2026-01-23
417

518
### Fixed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
solid_queue_monitor (1.0.1)
4+
solid_queue_monitor (1.1.0)
55
rails (>= 7.0)
66
solid_queue (>= 0.1.0)
77

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ A lightweight, zero-dependency web interface for monitoring Solid Queue backgrou
3535
- **Failed Jobs**: Track and debug failed jobs, with the ability to retry or discard them
3636
- **Queue Management**: View and filter jobs by queue with pause/resume controls
3737
- **Pause/Resume Queues**: Temporarily stop processing jobs on specific queues for incident response
38+
- **Global Search**: Search across all job types by class name, queue, arguments, job ID, and error messages
39+
- **Sortable Columns**: Click column headers to sort job tables by any column with ascending/descending toggle
3840
- **Advanced Job Filtering**: Filter jobs by class name, queue, status, and job arguments
3941
- **Quick Actions**: Retry or discard failed jobs, execute or reject scheduled jobs directly from any view
4042
- **Performance Optimized**: Designed for high-volume applications with smart pagination
@@ -70,7 +72,7 @@ A lightweight, zero-dependency web interface for monitoring Solid Queue backgrou
7072
Add this line to your application's Gemfile:
7173

7274
```ruby
73-
gem 'solid_queue_monitor', '~> 1.0.1'
75+
gem 'solid_queue_monitor', '~> 1.1'
7476
```
7577

7678
Then execute:

lib/solid_queue_monitor/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module SolidQueueMonitor
4-
VERSION = '1.0.1'
4+
VERSION = '1.1.0'
55
end

0 commit comments

Comments
 (0)