solid_queue_lite 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8794ace8f2ebf4cfcaf14e887c2a166f660ee6a91e6cb381052efa29d6bb913f
4
- data.tar.gz: 7d0b0b3fbe10136b7ef29f75686c05943a8db655d5025795f54c7ea92273a09e
3
+ metadata.gz: 9f294fa8aa0e8ab09a89549168cf174d9c2f1d1315f8858ea6b0044fbed0ba47
4
+ data.tar.gz: 9ae549bb87502289069ab5c35fc2749080568f815cb92725c07aa94b89bd40bc
5
5
  SHA512:
6
- metadata.gz: e0ce386dc14caf232ef48431d826029d9bd17cfd6dda08840e28c7779015230589f9c503a8773287ed0b59feaafa26c8489cb9569ad340234c45122e4456da59
7
- data.tar.gz: 26962200de4d9e6d126dbac23eb84d6ea6c92cda64e0c4993daea15aedf498b5e7c32836467fdde96caf6137a80150511ba1d92a6f9e6bdb246dfd69cfae0b54
6
+ metadata.gz: edc475c55e1f56f5ad5e84f75c38a67e0ee0511a458ce72dfe4033a9b67cdb13abffda0ab9535c82bc42c096f5486db6aa110c5a8f0c3acfc772a97c961e2bb3
7
+ data.tar.gz: 22e510cc4f0f4b5d839d6c8e6d93a1187548e13805806242047dcedab9167c2863a530d7a6b6715995b5a650f1b39f1e95d50d229759a3907c6b2ad25d655b5c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.2.0
4
+
5
+ - Reworked the main dashboard to provide unified pulse, jobs, processes, and recurring task tabs.
6
+ - Added recurring task monitoring with last-run, next-run, and latest status visibility.
7
+ - Improved queue discovery from worker configuration and process metadata, including wildcard handling.
8
+ - Switched queue-specific and telemetry KPI counts to exact values for fresh installs.
9
+ - Added Rails 8 and newer Solid Queue compatibility in the gem dependency constraints.
10
+ - Improved relative time formatting and process/queue operational controls.
11
+
3
12
  ## 0.1.0
4
13
 
5
14
  - Initial public release of Solid Queue Lite.
data/README.md CHANGED
@@ -6,6 +6,8 @@ A minimal, zero-build web interface for [Solid Queue](https://github.com/rails/s
6
6
 
7
7
  The official `mission_control-jobs` engine is great, but it brings along Turbo, Stimulus, and expects a standard Rails asset pipeline. If you run an API-only app, use a modern JS framework, or just want to avoid frontend dependencies in your infrastructure tooling, Solid Queue Lite provides the same operational visibility without the build-step baggage.
8
8
 
9
+ <img width="1512" height="1003" alt="574499032-9fe45dd4-f08f-4b12-b07e-b9394965b586" src="https://github.com/user-attachments/assets/a22f66d3-05a5-4d2a-ac01-ef219e40a038" />
10
+
9
11
  ## Installation
10
12
 
11
13
  Add the engine to your host application's Gemfile:
@@ -45,9 +47,15 @@ The engine root renders the dashboard at `/ops/jobs`, and the jobs index is avai
45
47
  ## Requirements
46
48
 
47
49
  - Ruby 3.1+
48
- - Rails 7.1+
50
+ - Rails 7.1
49
51
  - Solid Queue 1.x
50
52
 
53
+ If you are using Rails 8, you can install the gem normally without pinning Rails back to 7.x:
54
+
55
+ ```ruby
56
+ gem "solid_queue_lite"
57
+ ```
58
+
51
59
  ## Host Configuration
52
60
 
53
61
  Use the configuration block to scope all dashboard reads in multi-tenant deployments:
@@ -1,3 +1,3 @@
1
1
  module SolidQueueLite
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solid_queue_lite
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nanda Suhendra
@@ -13,29 +13,20 @@ dependencies:
13
13
  name: rails
14
14
  requirement: !ruby/object:Gem::Requirement
15
15
  requirements:
16
- - - "~>"
17
- - !ruby/object:Gem::Version
18
- version: '7.1'
19
16
  - - ">="
20
17
  - !ruby/object:Gem::Version
21
- version: 7.1.0
18
+ version: '7.1'
22
19
  type: :runtime
23
20
  prerelease: false
24
21
  version_requirements: !ruby/object:Gem::Requirement
25
22
  requirements:
26
- - - "~>"
27
- - !ruby/object:Gem::Version
28
- version: '7.1'
29
23
  - - ">="
30
24
  - !ruby/object:Gem::Version
31
- version: 7.1.0
25
+ version: '7.1'
32
26
  - !ruby/object:Gem::Dependency
33
27
  name: solid_queue
34
28
  requirement: !ruby/object:Gem::Requirement
35
29
  requirements:
36
- - - "~>"
37
- - !ruby/object:Gem::Version
38
- version: '1.0'
39
30
  - - ">="
40
31
  - !ruby/object:Gem::Version
41
32
  version: '1.0'
@@ -43,9 +34,6 @@ dependencies:
43
34
  prerelease: false
44
35
  version_requirements: !ruby/object:Gem::Requirement
45
36
  requirements:
46
- - - "~>"
47
- - !ruby/object:Gem::Version
48
- version: '1.0'
49
37
  - - ">="
50
38
  - !ruby/object:Gem::Version
51
39
  version: '1.0'