sidekiq-unique-jobs 7.1.22 → 7.1.25

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of sidekiq-unique-jobs might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 51aa02bd059a91e83c5f65865db8a098346bace6ead052e63a4298c3521cdcb0
4
- data.tar.gz: 7dc30256282491c0f1d8818f28266054c526f488a8ffccd4048dfda149e04644
3
+ metadata.gz: 4a5c0d9d30f11e61d3cc7599343951d242c5ccba2c93ee2a46138eab1037db81
4
+ data.tar.gz: a0721afd3b1a4e98655f9d1aba34e609d9ddd71bf6fd02d2b6f35bfbf4f9bece
5
5
  SHA512:
6
- metadata.gz: 9dac46329bb7bb7a6ede794b114554a618e4e577a024e592fb70970d0081d17f1ad651b2fd57cd2ecd2809d86d39518de4d2c97151663e4e1e03d7a700df6afa
7
- data.tar.gz: f422fa2de3f44d900e2060e7301d7a9ceed8610d6f9416ef320a9a99a4589be1af7dd6c8f564f4ec372b11a37a325db4aba3aba548cb99abb2240ac83a4cfea8
6
+ metadata.gz: 7751e266ae6df52925ba2b0b3fbc72e7fff5e2e979ae00dcc8fb7af433aac22627901a650cdd53f64479af440e68a814ad3d67f446509e4aef4351e6eed71da0
7
+ data.tar.gz: 210d306f47c106bab3ae6e109c24d728baf5a81cc6caa3ee309a7c96f547c5cd8503e99cb7f814671c1feccfdaa48ea992581c9f978bb2bfd662c51946e13ffd
data/CHANGELOG.md CHANGED
@@ -1,5 +1,39 @@
1
1
  # Changelog
2
2
 
3
+ ## [v7.1.24](https://github.com/mhenrixon/sidekiq-unique-jobs/tree/v7.1.24) (2022-06-09)
4
+
5
+ [Full Changelog](https://github.com/mhenrixon/sidekiq-unique-jobs/compare/v7.1.23...v7.1.24)
6
+
7
+ **Implemented enhancements:**
8
+
9
+ - Chore: Sidekiq 6.5 compatibility [\#715](https://github.com/mhenrixon/sidekiq-unique-jobs/pull/715) ([mhenrixon](https://github.com/mhenrixon))
10
+
11
+ **Merged pull requests:**
12
+
13
+ - Use sidekiq/testing `Worker.clear` API in sidekiq\_unique\_jobs/testing [\#713](https://github.com/mhenrixon/sidekiq-unique-jobs/pull/713) ([dsander](https://github.com/dsander))
14
+
15
+ ## [v7.1.23](https://github.com/mhenrixon/sidekiq-unique-jobs/tree/v7.1.23) (2022-05-23)
16
+
17
+ [Full Changelog](https://github.com/mhenrixon/sidekiq-unique-jobs/compare/v7.1.22...v7.1.23)
18
+
19
+ **Fixed bugs:**
20
+
21
+ - fix: raise on error [\#712](https://github.com/mhenrixon/sidekiq-unique-jobs/pull/712) ([mhenrixon](https://github.com/mhenrixon))
22
+
23
+ ## [v7.1.22](https://github.com/mhenrixon/sidekiq-unique-jobs/tree/v7.1.22) (2022-05-04)
24
+
25
+ [Full Changelog](https://github.com/mhenrixon/sidekiq-unique-jobs/compare/v7.1.21...v7.1.22)
26
+
27
+ **Fixed bugs:**
28
+
29
+ - Failed jobs waiting to be retried are not considered when fetching uniqueness [\#394](https://github.com/mhenrixon/sidekiq-unique-jobs/issues/394)
30
+ - fix\(locksmith\): execute to yield without arguments [\#710](https://github.com/mhenrixon/sidekiq-unique-jobs/pull/710) ([mhenrixon](https://github.com/mhenrixon))
31
+ - fix: re:lock until\_executing on worker failure [\#709](https://github.com/mhenrixon/sidekiq-unique-jobs/pull/709) ([mhenrixon](https://github.com/mhenrixon))
32
+
33
+ **Closed issues:**
34
+
35
+ - Reviwing: Failed jobs waiting to be retried are not considered when fetching uniqueness [\#708](https://github.com/mhenrixon/sidekiq-unique-jobs/issues/708)
36
+
3
37
  ## [v7.1.21](https://github.com/mhenrixon/sidekiq-unique-jobs/tree/v7.1.21) (2022-04-23)
4
38
 
5
39
  [Full Changelog](https://github.com/mhenrixon/sidekiq-unique-jobs/compare/v7.1.20...v7.1.21)
@@ -407,7 +441,6 @@
407
441
  - Tasks run once, and then there is no launch [\#464](https://github.com/mhenrixon/sidekiq-unique-jobs/issues/464)
408
442
  - Jobs executing and immediately returning [\#418](https://github.com/mhenrixon/sidekiq-unique-jobs/issues/418)
409
443
  - until\_and\_while\_executing + sidekiq retry mechanism [\#395](https://github.com/mhenrixon/sidekiq-unique-jobs/issues/395)
410
- - Failed jobs waiting to be retried are not considered when fetching uniqueness [\#394](https://github.com/mhenrixon/sidekiq-unique-jobs/issues/394)
411
444
  - Fix that :PRIMED keys are seemingly not removed [\#574](https://github.com/mhenrixon/sidekiq-unique-jobs/pull/574) ([mhenrixon](https://github.com/mhenrixon))
412
445
 
413
446
  **Closed issues:**
@@ -36,6 +36,7 @@ module SidekiqUniqueJobs
36
36
  rescue StandardError => ex
37
37
  reflect(:execution_failed, item, ex)
38
38
  locksmith.lock(wait: 1)
39
+ raise
39
40
  end
40
41
  end
41
42
  end
@@ -6,6 +6,8 @@ module SidekiqUniqueJobs
6
6
  #
7
7
  # @author Mikael Henriksson <mikael@mhenrixon.com>
8
8
  class Client
9
+ include Sidekiq::ClientMiddleware if defined?(Sidekiq::ClientMiddleware)
10
+
9
11
  # prepend "SidekiqUniqueJobs::Middleware"
10
12
  # @!parse prepends SidekiqUniqueJobs::Middleware
11
13
  prepend SidekiqUniqueJobs::Middleware
@@ -6,6 +6,8 @@ module SidekiqUniqueJobs
6
6
  #
7
7
  # @author Mikael Henriksson <mikael@mhenrixon.com>
8
8
  class Server
9
+ include Sidekiq::ServerMiddleware if defined?(Sidekiq::ServerMiddleware)
10
+
9
11
  # prepend "SidekiqUniqueJobs::Middleware"
10
12
  # @!parse prepends SidekiqUniqueJobs::Middleware
11
13
  prepend SidekiqUniqueJobs::Middleware
@@ -71,18 +71,6 @@ module Sidekiq
71
71
 
72
72
  sidekiq_options(old_options)
73
73
  end
74
-
75
- #
76
- # Clears the jobs for this worker and removes all locks
77
- #
78
- def clear
79
- jobs.each do |job|
80
- SidekiqUniqueJobs::Unlockable.unlock(job)
81
- end
82
-
83
- Sidekiq::Queues[queue].clear
84
- jobs.clear
85
- end
86
74
  end
87
75
 
88
76
  #
@@ -110,8 +98,31 @@ module Sidekiq
110
98
 
111
99
  SidekiqUniqueJobs::Digests.new.delete_by_pattern("*", count: 10_000)
112
100
  end
101
+
102
+ #
103
+ # Prepends deletion of locks to clear
104
+ #
105
+ module ClassMethods
106
+ #
107
+ # Clears the jobs for this worker and removes all locks
108
+ #
109
+ def clear
110
+ jobs.each do |job|
111
+ SidekiqUniqueJobs::Unlockable.unlock(job)
112
+ end
113
+
114
+ super
115
+ end
116
+ end
113
117
  end
114
118
 
115
119
  prepend Overrides
120
+
121
+ #
122
+ # Prepends methods to Sidekiq::Worker
123
+ #
124
+ module ClassMethods
125
+ prepend Overrides::ClassMethods
126
+ end
116
127
  end
117
128
  end
@@ -3,5 +3,5 @@
3
3
  module SidekiqUniqueJobs
4
4
  #
5
5
  # @return [String] the current SidekiqUniqueJobs version
6
- VERSION = "7.1.22"
6
+ VERSION = "7.1.25"
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sidekiq-unique-jobs
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.1.22
4
+ version: 7.1.25
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mikael Henriksson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-04 00:00:00.000000000 Z
11
+ date: 2022-06-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: brpoplpush-redis_script