File tree Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to the LaunchDarkly Ruby SDK will be documented in this file. This project adheres to [ Semantic Versioning] ( http://semver.org ) .
4
4
5
+ ## [ 5.4.3] - 2019-01-11
6
+ ### Changed:
7
+ - The SDK is now compatible with ` net-http-persistent ` 3.x. (Thanks, [ CodingAnarchy] ( https://github.com/launchdarkly/ruby-client/pull/113 ) !)
8
+
5
9
## [ 5.4.2] - 2019-01-04
6
10
### Fixed:
7
11
- Fixed overly specific dependency versions of ` concurrent-ruby ` and ` semantic ` . ([ #115 ] ( https://github.com/launchdarkly/ruby-client/issues/115 ) )
Original file line number Diff line number Diff line change 1
1
PATH
2
2
remote: .
3
3
specs:
4
- ldclient-rb (5.4.1 )
4
+ ldclient-rb (5.4.3 )
5
5
concurrent-ruby (~> 1.0 )
6
6
faraday (>= 0.9 , < 2 )
7
7
faraday-http-cache (>= 1.3.0 , < 3 )
8
8
http_tools (~> 0.4.5 )
9
9
json (>= 1.8 , < 3 )
10
- net-http-persistent (~> 2.9 )
10
+ net-http-persistent (>= 2.9 , < 4.0 )
11
11
semantic (~> 1.6 )
12
12
socketry (~> 0.5.1 )
13
13
36
36
rb-inotify (~> 0.9 , >= 0.9.7 )
37
37
ruby_dep (~> 1.2 )
38
38
multipart-post (2.0.0 )
39
- net-http-persistent (2.9.4 )
39
+ net-http-persistent (3.0.0 )
40
+ connection_pool (~> 2.2 )
40
41
rake (10.5.0 )
41
42
rb-fsevent (0.10.3 )
42
43
rb-inotify (0.9.10 )
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ Gem::Specification.new do |spec|
35
35
spec . add_runtime_dependency "faraday" , [ ">= 0.9" , "< 2" ]
36
36
spec . add_runtime_dependency "faraday-http-cache" , [ ">= 1.3.0" , "< 3" ]
37
37
spec . add_runtime_dependency "semantic" , "~> 1.6"
38
- spec . add_runtime_dependency "net-http-persistent" , "~> 2.9"
38
+ spec . add_runtime_dependency "net-http-persistent" , [ ">= 2.9", "< 4.0" ]
39
39
spec . add_runtime_dependency "concurrent-ruby" , "~> 1.0"
40
40
spec . add_runtime_dependency "http_tools" , '~> 0.4.5'
41
41
spec . add_runtime_dependency "socketry" , "~> 0.5.1"
Original file line number Diff line number Diff line change 1
1
module LaunchDarkly
2
- VERSION = "5.4.2 "
2
+ VERSION = "5.4.3 "
3
3
end
You can’t perform that action at this time.
0 commit comments