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 +4 -4
- data/CHANGELOG.md +9 -0
- data/README.md +9 -1
- data/lib/solid_queue_lite/version.rb +1 -1
- metadata +3 -15
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9f294fa8aa0e8ab09a89549168cf174d9c2f1d1315f8858ea6b0044fbed0ba47
|
|
4
|
+
data.tar.gz: 9ae549bb87502289069ab5c35fc2749080568f815cb92725c07aa94b89bd40bc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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:
|
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.
|
|
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
|
|
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
|
|
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'
|