launchdarkly-server-sdk 5.7.0 → 5.7.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 78fa0fd5890ae19f95b19c915694bca33187ef23
4
- data.tar.gz: 5dae22ebbc4a8c1d2e6deb3e206ff4d27937da02
3
+ metadata.gz: 35e90a3d6853e2a12b8cf6d3c44a5d84c397b76a
4
+ data.tar.gz: 58a0229a7f331cb619568c8095a9381c60753a24
5
5
  SHA512:
6
- metadata.gz: 888c327731d50e3d4869b2c6fe72748a9c9bb7f2c80123194eb2d32f1b365a613dbf7bec78a38fcf4f35b16e2ec634725fde25681bad0225dbe9fee41ce674f8
7
- data.tar.gz: b8fcaa392b4940838daa060d66eea7dc2413d458875de3bb36905e70b194b9e34f6707d1d014c6e297ac81d396123411060c18761fe1a05c6287419cd902ca27
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.0)
4
+ launchdarkly-server-sdk (5.7.1)
5
5
  concurrent-ruby (~> 1.0)
6
6
  json (>= 1.8, < 3)
7
- ld-eventsource (= 1.0.2)
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.2)
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.2"
38
+ spec.add_runtime_dependency "ld-eventsource", "1.0.3"
39
39
  end
@@ -1,3 +1,3 @@
1
1
  module LaunchDarkly
2
- VERSION = "5.7.0"
2
+ VERSION = "5.7.1"
3
3
  end
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.0
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-10 00:00:00.000000000 Z
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.2
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.2
214
+ version: 1.0.3
215
215
  description: Official LaunchDarkly SDK for Ruby
216
216
  email:
217
217
  - team@launchdarkly.com