Skip to content

Releases: launchdarkly/ruby-server-sdk

v8.3.0

14 Mar 17:32
f43b3ad
Compare
Choose a tag to compare

8.3.0 (2024-03-14)

Features

  • Inline contexts for all evaluation events (#245) (bd30c3b)
  • Redact anonymous attributes within feature events (#246) (640ac39)

v8.2.0

22 Feb 20:17
58e9d1f
Compare
Choose a tag to compare

8.2.0 (2024-02-20)

Features

  • Enable gzip compression on polling requests (#249) (abffe47)

v8.1.0

03 Jan 16:53
42ccae5
Compare
Choose a tag to compare

8.1.0 (2024-01-03)

Features

  • Add hash access and equality support to LDContext (#241) (1ba6bde)
  • Define equality methods for LDContext and Reference (#232) (1b2ba7b)

Bug Fixes

  • Calling stop in ldd mode no longer raises an exception (#237) (8149da1)

v7.3.2

26 Dec 20:51
ab3816b
Compare
Choose a tag to compare

7.3.2 (2023-12-26)

Bug Fixes

  • Update missed version bump to LaunchDarkly::VERSION (#239) (dc44559)

v7.3.1

26 Dec 20:29
24a3557
Compare
Choose a tag to compare

7.3.1 (2023-12-26)

Bug Fixes

  • Calling stop in ldd mode no longer raises an exception (#235) (eeb9906)

8.0.0

17 Oct 21:01
Compare
Choose a tag to compare

[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 and track_migration_op methods on LDClient.

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, and default_user_keys_flush_interval have been removed.
  • Previously deprecated test data flag builder methods variation_for_all_users, value_for_all_users, and clear_user_targets have been removed.

7.3.0

16 Oct 19:42
Compare
Choose a tag to compare

[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

04 May 12:47
Compare
Choose a tag to compare

[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.

7.1.0

13 Apr 19:43
Compare
Choose a tag to compare

[7.1.0] - 2023-04-13

Added:

  • Support for Payload Filtering in streaming and polling modes. Payload Filtering is a beta feature that allows SDKs to download a subset of environment data, rather than full environments. Please contact your account executive for more information.

7.0.4

03 Apr 18:40
Compare
Choose a tag to compare

[7.0.4] - 2023-04-03

Added:

  • Added flag key to log message to ease debugging. (Thanks, matt-dutchie!)