queue-bus 0.13.4 → 0.13.5

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: c9f2780a64fb58183307da089ce28323668aa50ad5186122d0780bac1757a938
4
- data.tar.gz: 70383c0bd4aa2a407163d2b59fba48c88407663a403c34cafd883a20645270dd
3
+ metadata.gz: 4a8e36380e0dcdaab1793054edc1310afbff18d2f4e30faff50881ac09867035
4
+ data.tar.gz: ea3cf16759585c10ff92bb306617419bd312714881372f210d4eaa4147869f1e
5
5
  SHA512:
6
- metadata.gz: 213245fa416d55313a4fba001fe50b6ea1d28da070e271536143da0014f7ad5ad99ac3a36875a831fa7d41dac74216459dbfbf20c2e25aa9642ab0b33ce803a3
7
- data.tar.gz: 1803b1b83fa49f1216bd7dd7cf51db9f3434233f74d4f33d9bc75e43a34f8d3f9133ee9eface9205fc42a707c9ecf42cdbc266d1010bcb3ef34c366d00bdc506
6
+ metadata.gz: afde487f3a1c8667ec91fe253aedccdc31e10c3798f609e265db4f307a061d2d62143067f427197e029552e68768f3913f688f77181f78f9efa4a2ad5bc701f5
7
+ data.tar.gz: 4aa9a1eaba6294fa03a13d38580678783249bae6700310164c3d38d8ac1bb9f7eecc1f686d4fb8a58317790d6edf3f8a4a1c369f3ee3f55680a2ec4056e2536e
data/CHANGELOG.md CHANGED
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.13.5]
10
+ - updating redis.pipelined usage to fix the redis-4.8.1 deprecation.
11
+
9
12
  ## [0.13.4]
10
13
  - Removes sadd usage in favor of sadd?
11
14
 
@@ -11,9 +11,9 @@ module QueueBus
11
11
  app_keys = redis.smembers(app_list_key)
12
12
  apps = app_keys.collect { |val| new(val) }
13
13
 
14
- hashes = redis.pipelined do
14
+ hashes = redis.pipelined do |pipeline|
15
15
  apps.each do |app|
16
- redis.hgetall(app.redis_key)
16
+ pipeline.hgetall(app.redis_key)
17
17
  end
18
18
  end
19
19
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module QueueBus
4
- VERSION = '0.13.4'
4
+ VERSION = '0.13.5'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: queue-bus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.4
4
+ version: 0.13.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brian Leonard