ldclient-rb 5.4.2 → 5.4.3
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 +4 -4
- data/.circleci/config.yml +2 -0
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +4 -3
- data/ldclient-rb.gemspec +1 -1
- data/lib/ldclient-rb/version.rb +1 -1
- metadata +10 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2234ff7c3580f12b981ce3bc6eb3215969d4a7e8
|
|
4
|
+
data.tar.gz: d8c999182feacf6436ff83c896b3c44e36fbe62e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 96b9510d2429a9ba9bc4bb2eb974acf37d86c566946696dd4987b4d267362c8a451856afd958e54f5f59b9de6713cea14f9bc91385927adc9f06e43101af4729
|
|
7
|
+
data.tar.gz: '0891e7f45ac4fb5b7bb85ba234bdded350ccc45e6cc0db0a4e35f0a6699aac9b0041f2f0dad4f57f25ddf77e75b834d65a1335038b3501996a3fb176b1dc33ac'
|
data/.circleci/config.yml
CHANGED
|
@@ -80,6 +80,8 @@ jobs:
|
|
|
80
80
|
if [[ $i == jruby* ]]; then
|
|
81
81
|
gem install jruby-openssl; # required by bundler, no effect on Ruby MRI
|
|
82
82
|
fi
|
|
83
|
+
# bundler 2.0 may be preinstalled, we need to remove it if so
|
|
84
|
+
yes | gem uninstall bundler --version '>=2.0' || true;
|
|
83
85
|
gem install bundler -v "~> 1.7";
|
|
84
86
|
bundle install;
|
|
85
87
|
mv Gemfile.lock "Gemfile.lock.$i"
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
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))
|
data/Gemfile.lock
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
ldclient-rb (5.4.
|
|
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 (
|
|
10
|
+
net-http-persistent (>= 2.9, < 4.0)
|
|
11
11
|
semantic (~> 1.6)
|
|
12
12
|
socketry (~> 0.5.1)
|
|
13
13
|
|
|
@@ -36,7 +36,8 @@ GEM
|
|
|
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 (
|
|
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)
|
data/ldclient-rb.gemspec
CHANGED
|
@@ -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", "
|
|
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"
|
data/lib/ldclient-rb/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ldclient-rb
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.4.
|
|
4
|
+
version: 5.4.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- LaunchDarkly
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-01-
|
|
11
|
+
date: 2019-01-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -214,16 +214,22 @@ dependencies:
|
|
|
214
214
|
name: net-http-persistent
|
|
215
215
|
requirement: !ruby/object:Gem::Requirement
|
|
216
216
|
requirements:
|
|
217
|
-
- - "
|
|
217
|
+
- - ">="
|
|
218
218
|
- !ruby/object:Gem::Version
|
|
219
219
|
version: '2.9'
|
|
220
|
+
- - "<"
|
|
221
|
+
- !ruby/object:Gem::Version
|
|
222
|
+
version: '4.0'
|
|
220
223
|
type: :runtime
|
|
221
224
|
prerelease: false
|
|
222
225
|
version_requirements: !ruby/object:Gem::Requirement
|
|
223
226
|
requirements:
|
|
224
|
-
- - "
|
|
227
|
+
- - ">="
|
|
225
228
|
- !ruby/object:Gem::Version
|
|
226
229
|
version: '2.9'
|
|
230
|
+
- - "<"
|
|
231
|
+
- !ruby/object:Gem::Version
|
|
232
|
+
version: '4.0'
|
|
227
233
|
- !ruby/object:Gem::Dependency
|
|
228
234
|
name: concurrent-ruby
|
|
229
235
|
requirement: !ruby/object:Gem::Requirement
|