ldclient-rb 5.5.0 → 5.5.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: 90690758415a43472c7c84ddd5f7d61b31849622
4
- data.tar.gz: 2b3707dabf16cafd991c439b44c7ae4d14b4c94d
3
+ metadata.gz: 82f0e312565c73eaabce4236d730c245fce5b9df
4
+ data.tar.gz: a348e79da3317b00f61508a6f2ad2cdc2eb8672b
5
5
  SHA512:
6
- metadata.gz: ee7396394f16fe7c98f49e293b1cf89956959ace1320bc8e5f6fa8c3c4bb8f8bc5b07e0a6bcd69f0a23007d41e6efa5b1bffa91bb3a8e96fbb73824226293f96
7
- data.tar.gz: e91e83451a673f51f28b8d5c24e35192838e13e95eda4cc67db81d43e7766a071b3819646171cfa4800caaf748ae598f972c2e2bec889dece954a48a785fdebb
6
+ metadata.gz: 3e802ed399ae6f3e8e710f95f710ee21a0f04acf2339f7378efdb7e850af2453b3bea67d55205a115d953ea23098a9b3ed59b25c2d6b88a6558287d2d48ac56c
7
+ data.tar.gz: 4045931b8bede384a15e7ccbdba74e65e8568ef2275c1490ac1355280aca95c98526af95c2538491e0269c1d39cd6765ff4c4bc84ced8a05ec6344e99af73953
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.1] - 2019-01-17
6
+ ### Fixed:
7
+ - Fixed several documentation comments that had the wrong parameter names. There are no other changes in this release; it's only to correct the documentation.
8
+
5
9
  ## [5.5.0] - 2019-01-17
6
10
  ### Added:
7
11
  - It is now possible to use Consul or DynamoDB as a persistent feature store, similar to the existing Redis integration. See the `LaunchDarkly::Integrations::Consul` and `LaunchDarkly::Integrations::DynamoDB` modules, and the reference guide [Using a persistent feature store](https://docs.launchdarkly.com/v2.0/docs/using-a-persistent-feature-store).
@@ -25,7 +25,7 @@ module LaunchDarkly
25
25
  # @option opts [String] :url shortcut for setting the `url` property of the Consul client configuration
26
26
  # @option opts [String] :prefix namespace prefix to add to all keys used by LaunchDarkly
27
27
  # @option opts [Logger] :logger a `Logger` instance; defaults to `Config.default_logger`
28
- # @option opts [Integer] :expiration_seconds (15) expiration time for the in-memory cache, in seconds; 0 for no local caching
28
+ # @option opts [Integer] :expiration (15) expiration time for the in-memory cache, in seconds; 0 for no local caching
29
29
  # @option opts [Integer] :capacity (1000) maximum number of items in the cache
30
30
  # @return [LaunchDarkly::Interfaces::FeatureStore] a feature store object
31
31
  #
@@ -34,7 +34,7 @@ module LaunchDarkly
34
34
  # @option opts [Object] :existing_client an already-constructed DynamoDB client for the feature store to use
35
35
  # @option opts [String] :prefix namespace prefix to add to all keys used by LaunchDarkly
36
36
  # @option opts [Logger] :logger a `Logger` instance; defaults to `Config.default_logger`
37
- # @option opts [Integer] :expiration_seconds (15) expiration time for the in-memory cache, in seconds; 0 for no local caching
37
+ # @option opts [Integer] :expiration (15) expiration time for the in-memory cache, in seconds; 0 for no local caching
38
38
  # @option opts [Integer] :capacity (1000) maximum number of items in the cache
39
39
  # @return [LaunchDarkly::Interfaces::FeatureStore] a feature store object
40
40
  #
@@ -42,7 +42,7 @@ module LaunchDarkly
42
42
  # @option opts [String] :prefix (default_prefix) namespace prefix to add to all hash keys used by LaunchDarkly
43
43
  # @option opts [Logger] :logger a `Logger` instance; defaults to `Config.default_logger`
44
44
  # @option opts [Integer] :max_connections size of the Redis connection pool
45
- # @option opts [Integer] :expiration_seconds (15) expiration time for the in-memory cache, in seconds; 0 for no local caching
45
+ # @option opts [Integer] :expiration (15) expiration time for the in-memory cache, in seconds; 0 for no local caching
46
46
  # @option opts [Integer] :capacity (1000) maximum number of items in the cache
47
47
  # @option opts [Object] :pool custom connection pool, if desired
48
48
  # @return [LaunchDarkly::Interfaces::FeatureStore] a feature store object
@@ -23,7 +23,7 @@ module LaunchDarkly
23
23
  #
24
24
  # @param core [Object] an object that implements the {FeatureStoreCore} methods
25
25
  # @param opts [Hash] a hash that may include cache-related options; all others will be ignored
26
- # @option opts [Float] :expiration_seconds (15) cache TTL; zero means no caching
26
+ # @option opts [Float] :expiration (15) cache TTL; zero means no caching
27
27
  # @option opts [Integer] :capacity (1000) maximum number of items in the cache
28
28
  #
29
29
  def initialize(core, opts)
@@ -32,7 +32,7 @@ module LaunchDarkly
32
32
  # @option opts [String] :prefix namespace prefix to add to all hash keys used by LaunchDarkly
33
33
  # @option opts [Logger] :logger a `Logger` instance; defaults to `Config.default_logger`
34
34
  # @option opts [Integer] :max_connections size of the Redis connection pool
35
- # @option opts [Integer] :expiration_seconds expiration time for the in-memory cache, in seconds; 0 for no local caching
35
+ # @option opts [Integer] :expiration expiration time for the in-memory cache, in seconds; 0 for no local caching
36
36
  # @option opts [Integer] :capacity maximum number of feature flags (or related objects) to cache locally
37
37
  # @option opts [Object] :pool custom connection pool, if desired
38
38
  #
@@ -1,3 +1,3 @@
1
1
  module LaunchDarkly
2
- VERSION = "5.5.0"
2
+ VERSION = "5.5.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ldclient-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.5.0
4
+ version: 5.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - LaunchDarkly