delayed_job_groups_plugin 0.12.0 → 0.14.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: 1614cbedffbd4c2f49972dce192e778aa05b371eb95418f9dc8d1960b0ad749f
4
- data.tar.gz: f25ddd68ba02ff554f4ee34c7e84e78f5fc8b41d7fb95dd602d87eb2caeffc69
3
+ metadata.gz: 1a151f3024b43407ef181bc42c113e97877160c37f48f1f68b793e533f001b88
4
+ data.tar.gz: d9f29810d2680e21956472ec485fe03f009765591cfadb9cb2fcaea17569c163
5
5
  SHA512:
6
- metadata.gz: eca2537bb58924b5d701e3b80e655c5ce1b01f1267f959131691f789bc398c9e872df8dc9bec7675362bb73a4c6389b67ffc9336285efdd04e216bdf1e88a279
7
- data.tar.gz: ebfe107eed1975870c85884766d756ca0e790e4ea194d84013b7a0840c1f9306a6dd6081258f5086b0e31c2cabba1cd3d3d8c9973bf3695514f3b15d501f3171
6
+ metadata.gz: 1a9b598b3f77a3256b6fbcca5ba5d1acd47c065c7d845fc19bf541ffe236779419f0439cf70ef82783c3185697305137acb8d0baf7eadc9f51d3796933d2e65d
7
+ data.tar.gz: b273960f4d058062e50c67a9144a6638f8574c97a72e5ec88a1388dc632778e3877c3e4f7218dc261789137e69382a0cd9d1600bc4800cb72b73f751c5dc93f8
data/Appraisals CHANGED
@@ -4,6 +4,7 @@ appraise 'rails-7.0' do
4
4
  gem 'activerecord', '~> 7.0.8'
5
5
  gem 'activesupport', '~> 7.0.8'
6
6
  gem 'sqlite3', '~> 1.7'
7
+ gem 'concurrent-ruby', '1.3.4'
7
8
  end
8
9
 
9
10
  appraise 'rails-7.1' do
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.14.0
4
+ - Reverts changes made in version 0.13.
5
+
6
+ ## 0.13.0
7
+ - Moves `on_cancellation` logic from the before delayed job lifecycle hook to the after hook.
8
+ - Gem will now fail to load if `Delayed::Worker.destroy_failed_jobs` is set to true.
9
+ - Wrapped the job group cancel hook in a lock to prevent concurrently failing jobs from enqueueing
10
+ multiple on cancellation jobs.
11
+
3
12
  ## 0.12.0
4
13
  - Add support for Rails 8.0.
5
14
  - Drop support for Rails 6.1
@@ -5,5 +5,6 @@ source "https://rubygems.org"
5
5
  gem "activerecord", "~> 7.0.8"
6
6
  gem "activesupport", "~> 7.0.8"
7
7
  gem "sqlite3", "~> 1.7"
8
+ gem 'concurrent-ruby', '1.3.4'
8
9
 
9
10
  gemspec path: "../"
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Delayed
4
4
  module JobGroups
5
- VERSION = '0.12.0'
5
+ VERSION = '0.14.0'
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: delayed_job_groups_plugin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joel Turkel
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-11-12 00:00:00.000000000 Z
12
+ date: 2025-09-25 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activerecord
@@ -312,7 +312,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
312
312
  - !ruby/object:Gem::Version
313
313
  version: '0'
314
314
  requirements: []
315
- rubygems_version: 3.3.26
315
+ rubygems_version: 3.4.1
316
316
  signing_key:
317
317
  specification_version: 4
318
318
  summary: Delayed::Job job groups plugin