From fc57982404492edfd4acc3df816da47da67f87ed Mon Sep 17 00:00:00 2001 From: LaunchDarklyCI Date: Thu, 27 May 2021 19:15:11 +0000 Subject: [PATCH] Releasing version 6.1.1 --- CHANGELOG.md | 4 ++++ lib/ldclient-rb/version.rb | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f034e87..4b40eacb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to the LaunchDarkly Ruby SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org). +## [6.1.1] - 2021-05-27 +### Fixed: +- Calling `variation` with a nil user parameter is invalid, causing the SDK to log an error and return a fallback value, but the SDK was still sending an analytics event for this. An event without a user is meaningless and can't be processed by LaunchDarkly. This is now fixed so the SDK will not send one. + ## [6.1.0] - 2021-02-04 ### Added: - Added the `alias` method. This can be used to associate two user objects for analytics purposes by generating an alias event. diff --git a/lib/ldclient-rb/version.rb b/lib/ldclient-rb/version.rb index ce0f9937..64044eb3 100644 --- a/lib/ldclient-rb/version.rb +++ b/lib/ldclient-rb/version.rb @@ -1,3 +1,3 @@ module LaunchDarkly - VERSION = "6.1.0" + VERSION = "6.1.1" end