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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ab2d0794eaf4923a9cf04258b3475241168c65560f177e538161ad79d0b247b8
4
- data.tar.gz: 2af293272bbc2c18cb7abd55f096b2970825530f7c24a9b62cc780e6e75e05cc
3
+ metadata.gz: 03e014c2d165420dbdda8f48bfd2393f6e9286eaa803f7df38152dac914bd8a7
4
+ data.tar.gz: 3f4d836158986782d127a0dc4c625fa590ae8a774f288e3754c839e3eb283de3
5
5
  SHA512:
6
- metadata.gz: 8350cd4a805e859ac5d8ba42fe3ea5775e5fef08d1d9982e02c64533135d7586e6eaea79d92205b050ec7882c7feacf2a23b57f48cd8f52431b4a28e5563c7dd
7
- data.tar.gz: b4ceba904d1835995315792528e822e59a91a1ae93fe7aefbe4f6948db514bddd90cc9826a1854f08902f867a7ec99b9c9cbe9fc5758af11d46c3515eba7d167
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- solid_queue_guard (1.1.2)
4
+ solid_queue_guard (1.1.3)
5
5
  actionpack (>= 7.1, < 9.0)
6
6
  activejob (>= 7.1, < 9.0)
7
7
  activerecord (>= 7.1, < 9.0)
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.2)
490
- git tag v1.1.2
491
- git push origin v1.1.2
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!
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SolidQueueGuard
4
- VERSION = '1.1.2'
4
+ VERSION = '1.1.3'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: solid_queue_guard
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rafael Pissardo