solid_queue_guard 1.0.1 → 1.0.3
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 +12 -0
- data/Gemfile.lock +1 -1
- data/README.md +2 -2
- data/lib/generators/solid_queue_guard/install/templates/solid_queue_guard.rb +1 -1
- data/lib/solid_queue_guard/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 11a78a97bc9a99f61525c331378d61e8f91a8ad7e6bac47f6859e04dfff73849
|
|
4
|
+
data.tar.gz: c0ec9212f10030a126633666e7598b186d0f883a178e73006c1d2b47a2b2e37d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: db49e98e2610d545777391c5103309537da7401843a50c9d58cb8a271be31f7fc139b1e6a93089327f51252ef00d7994e3d1a3f5e0007a95b92cb4483706f95b
|
|
7
|
+
data.tar.gz: 9a82743e3029c0b941e7ace14ea47574637c659aef6f4c0abb4b2689d9cc1992de688cd5f2773c5e259745f5ce29087e96382e052db55f02decba59ee09c9259
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.0.3] - 2026-07-09
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Sync `Gemfile.lock` and appraisal lockfiles with the published gem version so CI bundle install succeeds in frozen mode
|
|
13
|
+
|
|
14
|
+
## [1.0.2] - 2026-07-09
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
18
|
+
- Install generator enables SolidQueueGuard in `production` and `staging` by default
|
|
19
|
+
|
|
8
20
|
## [1.0.1] - 2026-07-09
|
|
9
21
|
|
|
10
22
|
### Changed
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -199,7 +199,7 @@ bin/rails solid_queue_guard:doctor # config checks (default scope)
|
|
|
199
199
|
bin/rails solid_queue_guard:report # config + runtime when the queue DB is available
|
|
200
200
|
```
|
|
201
201
|
|
|
202
|
-
By default the install generator sets `config.enabled = Rails.env
|
|
202
|
+
By default the install generator sets `config.enabled = %w[production staging].include?(Rails.env)`, so in **development** and other non-deployed environments checks are skipped unless you enable them:
|
|
203
203
|
|
|
204
204
|
```ruby
|
|
205
205
|
SolidQueueGuard.configure { |c| c.enabled = true }
|
|
@@ -330,7 +330,7 @@ Apps that keep Solid Queue tables only in `structure.sql` (common in Revelo-styl
|
|
|
330
330
|
```ruby
|
|
331
331
|
# config/initializers/solid_queue_guard.rb
|
|
332
332
|
SolidQueueGuard.configure do |config|
|
|
333
|
-
config.enabled = Rails.env
|
|
333
|
+
config.enabled = %w[production staging].include?(Rails.env)
|
|
334
334
|
|
|
335
335
|
config.queue_lag_thresholds = {
|
|
336
336
|
critical: 30.seconds,
|