launchdarkly-server-sdk 5.5.7 → 5.5.8

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2645356ab5b30892fd39ceff79a949ba920ece48
4
- data.tar.gz: 44a8f04e4d11658940e279054d21b9a58af5b85e
3
+ metadata.gz: 5f398c6f9f86b06cd1dbda8da779892566842ef6
4
+ data.tar.gz: 2c0cad8cc37a51b2f0d6bc6b1b6c7cd9e8672b25
5
5
  SHA512:
6
- metadata.gz: 3a1b235df9a437555afb40df28c1f6774eaf256eadb183217e2fd55428f6b8a631a41f5fee657dd86665915f02c5e9ef2e32fab224272a05d0400a56eb3cce62
7
- data.tar.gz: 1a5c81cd039e80188c66c13f063d4118cfc6ee1ad24c0ccf9a91e5e1484cf84db10a3fc19c1aca70d877780df3a7b5faaf2f99cd8d2321460dda5f8281a79686
6
+ metadata.gz: ccbd67ff59afcfa26153347251d09ffe81535bbaf01518098b63258c368eeeaaeaeefcce7627590db6f21470bf67703afcd71d4d930db973fed90c6557fa89fe
7
+ data.tar.gz: 36d502b93377ee48dad9f22eb09ba93f9ff6c781e295d42c05abcdbab42bf81d9b1c883568fbd12aaddb61cb08e090ef465e66e98a6cf681d3b2582236912f8d
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.5.8] - 2019-07-11
6
+ ### Fixed:
7
+ - In streaming mode, depending on the Ruby version, calling `close` on the client could cause a misleading warning message in the log, such as `Unexpected error from event source: #<IOError: stream closed in another thread>`. ([#135](https://github.com/launchdarkly/ruby-server-sdk/issues/135))
8
+
5
9
  ## [5.5.7] - 2019-05-13
6
10
  ### Changed:
7
11
  - Changed the gem name from `ldclient-rb` to `launchdarkly-server-sdk`.
data/Gemfile.lock CHANGED
@@ -1,10 +1,10 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- launchdarkly-server-sdk (5.5.6)
4
+ launchdarkly-server-sdk (5.5.7)
5
5
  concurrent-ruby (~> 1.0)
6
6
  json (>= 1.8, < 3)
7
- ld-eventsource (~> 1.0)
7
+ ld-eventsource (= 1.0.1)
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.0)
43
+ ld-eventsource (1.0.1)
44
44
  concurrent-ruby (~> 1.0)
45
45
  http_tools (~> 0.4.5)
46
46
  socketry (~> 0.5.1)
@@ -36,5 +36,5 @@ Gem::Specification.new do |spec|
36
36
  spec.add_runtime_dependency "json", [">= 1.8", "< 3"]
37
37
  spec.add_runtime_dependency "semantic", "~> 1.6"
38
38
  spec.add_runtime_dependency "concurrent-ruby", "~> 1.0"
39
- spec.add_runtime_dependency "ld-eventsource", '~> 1.0'
39
+ spec.add_runtime_dependency "ld-eventsource", "1.0.1"
40
40
  end
@@ -1,3 +1,3 @@
1
1
  module LaunchDarkly
2
- VERSION = "5.5.7"
2
+ VERSION = "5.5.8"
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.5.7
4
+ version: 5.5.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - LaunchDarkly
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-05-13 00:00:00.000000000 Z
11
+ date: 2019-07-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-dynamodb
@@ -216,16 +216,16 @@ dependencies:
216
216
  name: ld-eventsource
217
217
  requirement: !ruby/object:Gem::Requirement
218
218
  requirements:
219
- - - "~>"
219
+ - - '='
220
220
  - !ruby/object:Gem::Version
221
- version: '1.0'
221
+ version: 1.0.1
222
222
  type: :runtime
223
223
  prerelease: false
224
224
  version_requirements: !ruby/object:Gem::Requirement
225
225
  requirements:
226
- - - "~>"
226
+ - - '='
227
227
  - !ruby/object:Gem::Version
228
- version: '1.0'
228
+ version: 1.0.1
229
229
  description: Official LaunchDarkly SDK for Ruby
230
230
  email:
231
231
  - team@launchdarkly.com