sidekiq-unique-jobs 8.0.0 → 8.0.1

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: 2101cca32c043a044df29b2bcd2d8ba58054aa6162d70bdf0f6b54e1237ad3fd
4
- data.tar.gz: eed69a742091cc23d4362f258105be1175abe25f54058a4a83178f99820bef69
3
+ metadata.gz: 18fddfafacb221ce072d4bdcb5c16b0b4e27547d5129eec69ed91ca981d8b66b
4
+ data.tar.gz: 05d851bde2e91b6ecea881fa1227d74037dd57dcb98e97961349391a26a6a755
5
5
  SHA512:
6
- metadata.gz: 60691cad84cc2ed74ff2edf8d6028488dfcff10b5be4c360e91873785e824f1ddef6ea0a56ce3339bc1a96f745990eb52956a85c4e0d2fde1b9893b1de66d145
7
- data.tar.gz: 5b5ca3b64971118236c984fea50de9cf010b9e848a7a2460d4b5c000e1e288c672775c149109f29d3b1efaef1485ccb0aedb5404da23a8f500b3e82a1af37563
6
+ metadata.gz: 444ff4c25066f950d49d5ebcf4223368418f7ae6594f3a23ca12e71a1077de46bbdb8498529af4ad29f4d28e128b079afdc2d1b67f28eeeac3118cec85bd287b
7
+ data.tar.gz: 69ff924fe4bf0b3a181afdc0c11b8bc97e592435ae7e44873356b9a90277d4c8a76c93f2916d0c8d6fef17075ff66de43997095218e872271cbb3012ba95aaf6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## [v8.0.0](https://github.com/mhenrixon/sidekiq-unique-jobs/tree/v8.0.0) (2023-01-30)
4
+
5
+ [Full Changelog](https://github.com/mhenrixon/sidekiq-unique-jobs/compare/v7.1.29...v8.0.0)
6
+
7
+ **Implemented enhancements:**
8
+
9
+ - chore\(deps\): upgrade rails app [\#753](https://github.com/mhenrixon/sidekiq-unique-jobs/pull/753) ([mhenrixon](https://github.com/mhenrixon))
10
+ - feat: sidekiq v7 support [\#751](https://github.com/mhenrixon/sidekiq-unique-jobs/pull/751) ([mhenrixon](https://github.com/mhenrixon))
11
+
12
+ **Closed issues:**
13
+
14
+ - Support for redis 5 [\#752](https://github.com/mhenrixon/sidekiq-unique-jobs/issues/752)
15
+ - while\_executing jobs being dropped [\#749](https://github.com/mhenrixon/sidekiq-unique-jobs/issues/749)
16
+
17
+ **Merged pull requests:**
18
+
19
+ - fix: backport the fix for the return value of \#deep\_transform\_keys [\#750](https://github.com/mhenrixon/sidekiq-unique-jobs/pull/750) ([fixtheclouds](https://github.com/fixtheclouds))
20
+
3
21
  ## [v7.1.29](https://github.com/mhenrixon/sidekiq-unique-jobs/tree/v7.1.29) (2022-12-03)
4
22
 
5
23
  [Full Changelog](https://github.com/mhenrixon/sidekiq-unique-jobs/compare/v7.1.28...v7.1.29)
@@ -15,7 +15,7 @@ local function find_digest_in_process_set(digest, threshold)
15
15
  log_debug("Found number of processes:", #processes, "next cursor:", next_process_cursor)
16
16
 
17
17
  for _, process in ipairs(processes) do
18
- local workers_key = process .. ":workers"
18
+ local workers_key = process .. ":work"
19
19
  log_debug("searching in process set:", process,
20
20
  "for digest:", digest,
21
21
  "cursor:", process_cursor)
@@ -217,7 +217,7 @@ module SidekiqUniqueJobs
217
217
 
218
218
  #
219
219
  # Reaper interval with a little drift
220
- # Redis isn't exact enough so to give a little bufffer,
220
+ # Redis isn't exact enough so to give a little buffer,
221
221
  # we add a tiny value to the reaper interval.
222
222
  #
223
223
  #
@@ -191,7 +191,7 @@ module SidekiqUniqueJobs
191
191
  else
192
192
  pipeline.exists(key)
193
193
  end
194
- pipeline.hgetall("#{key}:workers")
194
+ pipeline.hgetall("#{key}:work")
195
195
  end
196
196
 
197
197
  next unless valid
@@ -3,5 +3,5 @@
3
3
  module SidekiqUniqueJobs
4
4
  #
5
5
  # @return [String] the current SidekiqUniqueJobs version
6
- VERSION = "8.0.0"
6
+ VERSION = "8.0.1"
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: 8.0.0
4
+ version: 8.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mikael Henriksson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-30 00:00:00.000000000 Z
11
+ date: 2023-02-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: brpoplpush-redis_script
@@ -233,7 +233,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
233
233
  - !ruby/object:Gem::Version
234
234
  version: '0'
235
235
  requirements: []
236
- rubygems_version: 3.4.2
236
+ rubygems_version: 3.4.6
237
237
  signing_key:
238
238
  specification_version: 4
239
239
  summary: Sidekiq middleware that prevents duplicates jobs