Skip to content

Commit 5d68be6

Browse files
authored
Release version 0.5.0 (#14)
* Release version 0.5.0 - Add pause/resume queue functionality - Improve test suite with request specs - Update CI for Ruby 3.2+ compatibility * Update Gemfile.lock for version 0.5.0
1 parent 0335124 commit 5d68be6

3 files changed

Lines changed: 25 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## [0.5.0] - 2026-01-16
4+
5+
### Added
6+
7+
- Pause/Resume queue functionality for incident response
8+
- Pause button to stop processing jobs on specific queues
9+
- Resume button to restart processing on paused queues
10+
- Visual status indicator showing Active/Paused state
11+
- Confirmation dialog before pausing to prevent accidents
12+
- Paused queues highlighted with amber background
13+
- New `QueuePauseService` for handling pause/resume business logic
14+
15+
### Improved
16+
17+
- Replaced controller specs with request specs for better integration testing
18+
- Enhanced flash message handling for better compatibility across environments
19+
- Improved route loading to prevent duplicate route errors in test environments
20+
21+
### Changed
22+
23+
- Updated CI workflow to test on Ruby 3.2 and 3.3 (Rails 8 requires Ruby >= 3.2)
24+
- Reorganized test support files for better maintainability
25+
326
## [0.4.0] - 2026-01-09
427

528
### Added
@@ -15,12 +38,6 @@
1538
- Informative tooltip on hover explaining the feature
1639
- User preference persistence via localStorage (survives page reloads)
1740
- Responsive design for auto-refresh controls on mobile devices
18-
- Pause/Resume queue functionality for incident response
19-
- Pause button to stop processing jobs on specific queues
20-
- Resume button to restart processing on paused queues
21-
- Visual status indicator showing Active/Paused state
22-
- Confirmation dialog before pausing to prevent accidents
23-
- Paused queues highlighted with amber background
2441

2542
## [0.3.2] - 2025-06-12
2643

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 (0.4.0)
4+
solid_queue_monitor (0.5.0)
55
rails (>= 7.0)
66
solid_queue (>= 0.1.0)
77

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 = '0.4.0'
4+
VERSION = '0.5.0'
55
end

0 commit comments

Comments
 (0)