launchdarkly-server-sdk 5.7.0 → 5.7.1
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/CHANGELOG.md +8 -0
- data/Gemfile.lock +3 -3
- data/launchdarkly-server-sdk.gemspec +1 -1
- data/lib/ldclient-rb/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 35e90a3d6853e2a12b8cf6d3c44a5d84c397b76a
|
|
4
|
+
data.tar.gz: 58a0229a7f331cb619568c8095a9381c60753a24
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4c2c1b2598e1ccf4a5f7f49fb4ef39974938100b4b9ea28fe910d7aea8a153d09a8e8ee978794293958c6040208fd055b271e1a4c8f4f3245e94dcc3d7c51812
|
|
7
|
+
data.tar.gz: 4d0eadc0f93a217d36f89fae7b2f5b19ce5fa78f98c36a81d6d50d782ac7fed3f451384599bb24c7b8cec80e2e0a26df42d1dd1fcbe7ce6d29906f314fd929e7
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
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.7.0] - 2020-03-10
|
|
6
|
+
### Added:
|
|
7
|
+
- The SDK now periodically sends diagnostic data to LaunchDarkly, describing the version and configuration of the SDK, the architecture and version of the runtime platform, and performance statistics. No credentials, hostnames, or other identifiable values are included. This behavior can be disabled with `Config.diagnostic_opt_out` or configured with `Config.diagnostic_recording_interval`.
|
|
8
|
+
- New `Config` properties `wrapper_name` and `wrapper_version` allow a library that uses the Ruby SDK to identify itself for usage data if desired.
|
|
9
|
+
|
|
10
|
+
### Removed:
|
|
11
|
+
- Removed an unused dependency on `rake`.
|
|
12
|
+
|
|
5
13
|
## [5.6.2] - 2020-01-15
|
|
6
14
|
### Fixed:
|
|
7
15
|
- The SDK now specifies a uniquely identifiable request header when sending events to LaunchDarkly to ensure that events are only processed once, even if the SDK sends them two times due to a failed initial attempt.
|
data/Gemfile.lock
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
launchdarkly-server-sdk (5.7.
|
|
4
|
+
launchdarkly-server-sdk (5.7.1)
|
|
5
5
|
concurrent-ruby (~> 1.0)
|
|
6
6
|
json (>= 1.8, < 3)
|
|
7
|
-
ld-eventsource (= 1.0.
|
|
7
|
+
ld-eventsource (= 1.0.3)
|
|
8
8
|
semantic (~> 1.6)
|
|
9
9
|
|
|
10
10
|
GEM
|
|
@@ -40,7 +40,7 @@ GEM
|
|
|
40
40
|
jmespath (1.4.0)
|
|
41
41
|
json (1.8.6)
|
|
42
42
|
json (1.8.6-java)
|
|
43
|
-
ld-eventsource (1.0.
|
|
43
|
+
ld-eventsource (1.0.3)
|
|
44
44
|
concurrent-ruby (~> 1.0)
|
|
45
45
|
http_tools (~> 0.4.5)
|
|
46
46
|
socketry (~> 0.5.1)
|
|
@@ -35,5 +35,5 @@ Gem::Specification.new do |spec|
|
|
|
35
35
|
spec.add_runtime_dependency "json", [">= 1.8", "< 3"]
|
|
36
36
|
spec.add_runtime_dependency "semantic", "~> 1.6"
|
|
37
37
|
spec.add_runtime_dependency "concurrent-ruby", "~> 1.0"
|
|
38
|
-
spec.add_runtime_dependency "ld-eventsource", "1.0.
|
|
38
|
+
spec.add_runtime_dependency "ld-eventsource", "1.0.3"
|
|
39
39
|
end
|
data/lib/ldclient-rb/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: launchdarkly-server-sdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.7.
|
|
4
|
+
version: 5.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- LaunchDarkly
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-03-
|
|
11
|
+
date: 2020-03-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-dynamodb
|
|
@@ -204,14 +204,14 @@ dependencies:
|
|
|
204
204
|
requirements:
|
|
205
205
|
- - '='
|
|
206
206
|
- !ruby/object:Gem::Version
|
|
207
|
-
version: 1.0.
|
|
207
|
+
version: 1.0.3
|
|
208
208
|
type: :runtime
|
|
209
209
|
prerelease: false
|
|
210
210
|
version_requirements: !ruby/object:Gem::Requirement
|
|
211
211
|
requirements:
|
|
212
212
|
- - '='
|
|
213
213
|
- !ruby/object:Gem::Version
|
|
214
|
-
version: 1.0.
|
|
214
|
+
version: 1.0.3
|
|
215
215
|
description: Official LaunchDarkly SDK for Ruby
|
|
216
216
|
email:
|
|
217
217
|
- team@launchdarkly.com
|