Releases: launchdarkly/ruby-server-sdk
Releases · launchdarkly/ruby-server-sdk
v8.3.1
v7.3.3
v8.3.0
v8.2.0
v8.1.0
v7.3.2
v7.3.1
8.0.0
[8.0.0] - 2023-10-17
The latest version of this SDK supports the ability to manage migrations or modernizations, using migration flags. You might use this functionality if you are optimizing queries, upgrading to new tech stacks, migrating from one database to another, or other similar technology changes. Migration flags are part of LaunchDarkly's Early Access Program. This feature is available to all LaunchDarkly customers but may undergo additional changes before it is finalized.
For detailed information about this version, refer to the list below. For information on how to upgrade from the previous version, read the migration guide.
Added:
- A new
Migrator
type which provides an out-of-the-box configurable migration framework. - For more advanced use cases, added new
migration_variation
andtrack_migration_op
methods onLDClient
.
Removed:
- Ruby 2.7 support was removed.
- The legacy user format for contexts is no longer supported. To learn more, read the Contexts documentation.
- Previously deprecated config options
user_keys_capacity
,user_keys_flush_interval
,private_attribute_names
,default_user_keys_capacity
,user_cache_size
,user_cache_time
, anddefault_user_keys_flush_interval
have been removed. - Previously deprecated test data flag builder methods
variation_for_all_users
,value_for_all_users
, andclear_user_targets
have been removed.
7.3.0
[7.3.0] - 2023-10-16
Fixed:
- The documentation for the
default_connect_timeout
setting stated it defaulted to 10 seconds when the code actually defaults to 2. (Thanks, zmagg-figma!)
Deprecated:
- Creating an
LDContext
using the legacy user format has been deprecated and will be removed in the next major release. To learn more, read the Contexts documentation.
7.2.0
[7.2.0] - 2023-05-04
Added:
- You can monitor the status of the SDK's data source (which normally means the streaming connection to the LaunchDarkly service) with
LaunchDarkly::LDClient.data_source_status_provider
. This allows you to check the current connection status, and to be notified if this status changes. - You can monitor the status of a data store with
LaunchDarkly::LDClient.data_store_status_provider
. This allows you to check whether updates are succeeding and to be notified if this status changes. - You can tell the SDK to notify you whenever a feature flag's configuration has changed (either in general, or in terms of its result for a specific context), using
LaunchDarkly::LDClient.flag_tracker
.