sidekiq-unique-jobs 7.1.22 → 7.1.23

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: a1ae59f4e98b72ee08f3f2ea67c20a8b13a0fa548d9134b5604b96a6feda3e20
4
+ data.tar.gz: a2089221da0b5c5865e4fea790547e1bad75033f0d09d741613a2d21ce642c00
5
5
  SHA512:
6
- metadata.gz: 9dac46329bb7bb7a6ede794b114554a618e4e577a024e592fb70970d0081d17f1ad651b2fd57cd2ecd2809d86d39518de4d2c97151663e4e1e03d7a700df6afa
7
- data.tar.gz: f422fa2de3f44d900e2060e7301d7a9ceed8610d6f9416ef320a9a99a4589be1af7dd6c8f564f4ec372b11a37a325db4aba3aba548cb99abb2240ac83a4cfea8
6
+ metadata.gz: f8f4bdeb8eda602434885e6c5a719154c9e292915f6a5b5e19d988cabf8a83e967b14ae1d77019618eb447739d23d0eff6dc39a1ed25e353a71bbbbf689d7628
7
+ data.tar.gz: ef20b58ce49610c7a640cc7d79f432b6e9a18b6197f51c8b27cc29f4325fadb2cb3b2d4fe014f3efb408cffcb2a4e8fafde86e720c8b3040fe00eaff7da2b7f0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [v7.1.22](https://github.com/mhenrixon/sidekiq-unique-jobs/tree/v7.1.22) (2022-05-04)
4
+
5
+ [Full Changelog](https://github.com/mhenrixon/sidekiq-unique-jobs/compare/v7.1.21...v7.1.22)
6
+
7
+ **Fixed bugs:**
8
+
9
+ - Failed jobs waiting to be retried are not considered when fetching uniqueness [\#394](https://github.com/mhenrixon/sidekiq-unique-jobs/issues/394)
10
+ - fix\(locksmith\): execute to yield without arguments [\#710](https://github.com/mhenrixon/sidekiq-unique-jobs/pull/710) ([mhenrixon](https://github.com/mhenrixon))
11
+ - fix: re:lock until\_executing on worker failure [\#709](https://github.com/mhenrixon/sidekiq-unique-jobs/pull/709) ([mhenrixon](https://github.com/mhenrixon))
12
+
13
+ **Closed issues:**
14
+
15
+ - Reviwing: Failed jobs waiting to be retried are not considered when fetching uniqueness [\#708](https://github.com/mhenrixon/sidekiq-unique-jobs/issues/708)
16
+
3
17
  ## [v7.1.21](https://github.com/mhenrixon/sidekiq-unique-jobs/tree/v7.1.21) (2022-04-23)
4
18
 
5
19
  [Full Changelog](https://github.com/mhenrixon/sidekiq-unique-jobs/compare/v7.1.20...v7.1.21)
@@ -407,7 +421,6 @@
407
421
  - Tasks run once, and then there is no launch [\#464](https://github.com/mhenrixon/sidekiq-unique-jobs/issues/464)
408
422
  - Jobs executing and immediately returning [\#418](https://github.com/mhenrixon/sidekiq-unique-jobs/issues/418)
409
423
  - 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
424
  - Fix that :PRIMED keys are seemingly not removed [\#574](https://github.com/mhenrixon/sidekiq-unique-jobs/pull/574) ([mhenrixon](https://github.com/mhenrixon))
412
425
 
413
426
  **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
@@ -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.23"
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.23
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-05-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: brpoplpush-redis_script