File tree Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Expand file tree Collapse file tree 4 files changed +5
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Unreleased
2
2
3
+ # 5.0.3
4
+
3
5
- Add ` OutOfMemoryError ` as a subclass of ` CommandError `
4
6
5
7
# 5.0.2
Original file line number Diff line number Diff line change @@ -15,12 +15,9 @@ class Client < ::RedisClient
15
15
RedisClient ::WrongTypeError => Redis ::WrongTypeError ,
16
16
RedisClient ::ReadOnlyError => Redis ::ReadOnlyError ,
17
17
RedisClient ::ProtocolError => Redis ::ProtocolError ,
18
+ RedisClient ::OutOfMemoryError => Redis ::OutOfMemoryError ,
18
19
}
19
20
20
- if defined? ( RedisClient ::OutOfMemoryError )
21
- ERROR_MAPPING [ RedisClient ::OutOfMemoryError ] = Redis ::OutOfMemoryError
22
- end
23
-
24
21
class << self
25
22
def config ( **kwargs )
26
23
super ( protocol : 2 , **kwargs )
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
class Redis
4
- VERSION = '5.0.2 '
4
+ VERSION = '5.0.3 '
5
5
end
Original file line number Diff line number Diff line change @@ -45,5 +45,5 @@ Gem::Specification.new do |s|
45
45
46
46
s . required_ruby_version = '>= 2.5.0'
47
47
48
- s . add_runtime_dependency ( 'redis-client' , '~> 0.7' )
48
+ s . add_runtime_dependency ( 'redis-client' , '>= 0.7.4 ' )
49
49
end
You can’t perform that action at this time.
0 commit comments