redis_queued_locks 0.0.37 → 0.0.38

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: e6417546d24eb5f2c7bbfffeebb506054fd96fc65ec0464ebbfdcf05db5b2972
4
- data.tar.gz: e6ddf10eeb79dbdb9f2ed05480fa57423851cdd1ab9864a56b0d917c3c1aa533
3
+ metadata.gz: 863e2fffb431d3db21fa7aa88b6238d072475c863f4927e7277d2fb052cb7af1
4
+ data.tar.gz: c5a67c1f2f44cbc1269d5f01600738ab193fefcdab1f5d072ead8fd2d7260b13
5
5
  SHA512:
6
- metadata.gz: ebeb82df02afcc0a9cc9838769a20e027ab54704bb91ab84942ba71b04175554888cbd9448abc2fb5abf5343a43dfb7905f0d1e831a5566614fd67b6a8f5391b
7
- data.tar.gz: 9052a8ed7a3a056787184e100e06a98920f4d758e169515e47021b6fdafadf69056304e0177070bd050d9586bff990f2bae394d9a27490df9bd3fe949d509ea0
6
+ metadata.gz: 88cea7bce9a2522eea4a8af5a3c749874508595ec1d7f6df3af20fc8b15b2e7238a1dbaa8ccbee2414c42ac1a2eccc8daf5fb5a73aabd21c0517b97f3472f43b
7
+ data.tar.gz: 86a4a86b8928b0cccc0b4db94a38ee86e52a0cc5929a55db96e38fcfa9c8ac596e05df0ea7709465d561b2322165d333a996f7bd3f5ebff3bb32b43bfd5c7f4f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.0.38] - 2024-03-28
4
+ ### Changed
5
+ - Minor update (dropped useless constant);
6
+
3
7
  ## [0.0.37] - 2024-03-28
4
8
  ### Changed
5
9
  - `#queues_info`: `:contains` is renamed to `:reqeusts` in order to reflect it's domain area;
@@ -279,7 +279,8 @@ module RedisQueuedLocks::Acquier::AcquireLock::TryToLock
279
279
  # => (*) at this moment we accept that all comamnds are completed successfully;
280
280
  # => (!) need to analyze:
281
281
  # 1. zrem shoud return ? (?)
282
- # 2. hset should return 3 as minimum (lock key is added to the redis as a hashmap with 3 fields as minimum)
282
+ # 2. hset should return 3 as minimum
283
+ # (lock key is added to the redis as a hashmap with 3 fields as minimum)
283
284
  # 3. pexpire should return 1 (expiration time is successfully applied)
284
285
 
285
286
  # Step 7.d: locked! :) let's go! => successfully acquired
@@ -3,12 +3,6 @@
3
3
  # @api private
4
4
  # @since 0.1.0
5
5
  module RedisQueuedLocks::Acquier::Locks
6
- # @return [Hash]
7
- #
8
- # @api private
9
- # @since 0.1.0
10
- NO_LOCK_INFO = {}.freeze
11
-
12
6
  class << self
13
7
  # @param redis_client [RedisClient]
14
8
  # @option scan_size [Integer]
@@ -5,6 +5,6 @@ module RedisQueuedLocks
5
5
  #
6
6
  # @api public
7
7
  # @since 0.0.1
8
- # @version 0.0.37
9
- VERSION = '0.0.37'
8
+ # @version 0.0.38
9
+ VERSION = '0.0.38'
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redis_queued_locks
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.37
4
+ version: 0.0.38
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rustam Ibragimov