launchdarkly-server-sdk 5.5.9 → 5.5.10

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: 2a84c1858841b557c3eeed5bf308b70df35682c9
4
- data.tar.gz: 977bc3152702a255167298f3ce10dbdfe6e4b5a9
3
+ metadata.gz: 4654883a34c33e3686208e1fcc39735dfeba6ff0
4
+ data.tar.gz: 1505d1d14350682ad94dec6bb11175c974106a4a
5
5
  SHA512:
6
- metadata.gz: cb5cfb6547152e431960211de0b5585f9c020ce7ae7d12bead3ff36e58266b357577f758e248883615c38749a6db0781025269026276dc221d0b4271d21a1107
7
- data.tar.gz: '088ff4eed37ec7c2b8c4ad7c3e12fdbca2a9e96825e4075c3cbdf6afa33fc08f589ef933cd64c6098511ddfbaf64b614fc0dfceb5a47be2f4257ecb2bd252919'
6
+ metadata.gz: 62e5c2d13534436571a760da5c07c612dfdc6e07758a562047e27d27eb46ff4b4d656533206b9cc5e2722c0b1d9ca476c83178eecbe0629b616b5130a2f74259
7
+ data.tar.gz: 27fdd6fee0e77a54b6a9d7b916544f9f9f899263ba7c60c5037dc3e3691e41ea36f905040cf508c2454f9fbf3d723e450851ab658e99234c03cc7b26da1a5ae9
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.10] - 2019-07-24
6
+ ### Fixed:
7
+ - `FileDataSource` was using `YAML.load`, which has a known [security vulnerability](https://trailofbits.github.io/rubysec/yaml/index.html). This has been changed to use `YAML.safe_load`, which will refuse to parse any files that contain the `!` directives used in this type of attack. This issue does not affect any applications that do not use `FileDataSource` (which is meant for testing purposes, not production use). ([#139](https://github.com/launchdarkly/ruby-server-sdk/issues/139))
8
+
5
9
  ## [5.5.9] - 2019-07-23
6
10
  ### Fixed:
7
11
  - Due to the gem name no longer being the same as the `require` name, Bundler autoloading was no longer working in versions 5.5.7 and 5.5.8 of the SDK. This has been fixed. (Thanks, [tonyta](https://github.com/launchdarkly/ruby-server-sdk/pull/137)!)
@@ -1,3 +1,3 @@
1
1
  module LaunchDarkly
2
- VERSION = "5.5.9"
2
+ VERSION = "5.5.10"
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.9
4
+ version: 5.5.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - LaunchDarkly
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-07-23 00:00:00.000000000 Z
11
+ date: 2019-07-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-dynamodb