solid_queue_guard 1.1.2 → 1.1.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 +6 -0
- data/Gemfile.lock +1 -1
- data/README.md +3 -3
- data/lib/solid_queue_guard/engine.rb +3 -2
- 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: 03e014c2d165420dbdda8f48bfd2393f6e9286eaa803f7df38152dac914bd8a7
|
|
4
|
+
data.tar.gz: 3f4d836158986782d127a0dc4c625fa590ae8a774f288e3754c839e3eb283de3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d61efc62c5d274662619549dd25c47a5e714731385d33e1b460e0a7d878855f8454b78dc2ff56c02357bb216164b98b5bf5b475d88f5c8f6106d5cbd1172a7bc
|
|
7
|
+
data.tar.gz: 8c119f0d0f0825bffd66389dba8a6424f378cf62e1fd0ba5dba2e46ca3baee29eb6f85d23fda48a4f738b11845b01bde167733a02e9807802227ac8bb87b3ebe
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ 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.1.3] - 2026-07-09
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Mission Control integration now reads `integrate_mission_control` in `after_initialize`, so setting it in `config/initializers/solid_queue_guard.rb` works without duplicating the flag in `config/application.rb`
|
|
13
|
+
|
|
8
14
|
## [1.1.2] - 2026-07-09
|
|
9
15
|
|
|
10
16
|
### Fixed
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -486,9 +486,9 @@ bundle exec appraisal rake test
|
|
|
486
486
|
Release a new version after CI passes:
|
|
487
487
|
|
|
488
488
|
```bash
|
|
489
|
-
# Tag must match lib/solid_queue_guard/version.rb (currently 1.1.
|
|
490
|
-
git tag v1.1.
|
|
491
|
-
git push origin v1.1.
|
|
489
|
+
# Tag must match lib/solid_queue_guard/version.rb (currently 1.1.3)
|
|
490
|
+
git tag v1.1.3
|
|
491
|
+
git push origin v1.1.3
|
|
492
492
|
```
|
|
493
493
|
|
|
494
494
|
Trusted Publishing on RubyGems publishes automatically when the tag is pushed.
|
|
@@ -31,9 +31,9 @@ module SolidQueueGuard
|
|
|
31
31
|
end
|
|
32
32
|
|
|
33
33
|
initializer 'solid_queue_guard.mission_control' do
|
|
34
|
-
next unless SolidQueueGuard.config.integrate_mission_control
|
|
35
|
-
|
|
36
34
|
config.after_initialize do
|
|
35
|
+
next unless SolidQueueGuard.config.integrate_mission_control
|
|
36
|
+
|
|
37
37
|
if defined?(::MissionControl::Jobs)
|
|
38
38
|
SolidQueueGuard::MissionControl::Integration.install!
|
|
39
39
|
else
|
|
@@ -44,6 +44,7 @@ module SolidQueueGuard
|
|
|
44
44
|
end
|
|
45
45
|
|
|
46
46
|
config.to_prepare do
|
|
47
|
+
next unless SolidQueueGuard.config.integrate_mission_control
|
|
47
48
|
next unless defined?(::MissionControl::Jobs)
|
|
48
49
|
|
|
49
50
|
SolidQueueGuard::MissionControl::Integration.install_navigation!
|