Skip to content

Commit cfdd022

Browse files
[FSSDK-10847] chore: preparing for release 5.1.0 (#360)
* chore: preparing for release 5.1.0 * Trigger checks * rubocop autocorrectable linting errors corrected
1 parent 69b2453 commit cfdd022

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Optimizely Ruby SDK Changelog
22

3+
## 5.1.0
4+
January 10th, 2025
5+
6+
Added support for batch processing in DecideAll and DecideForKeys, enabling more efficient handling of multiple decisions in the User Profile Service.([#353](https://github.com/optimizely/ruby-sdk/pull/353))
7+
38
## 5.0.1
49
February 8th, 2024
510

lib/optimizely/event_builder.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ def get_common_params(project_config, user_id, attributes)
7878
)
7979
end
8080
# Append Bot Filtering Attribute
81-
if project_config.bot_filtering == true || project_config.bot_filtering == false
81+
if [true, false].include?(project_config.bot_filtering)
8282
visitor_attributes.push(
8383
entity_id: Optimizely::Helpers::Constants::CONTROL_ATTRIBUTES['BOT_FILTERING'],
8484
key: Optimizely::Helpers::Constants::CONTROL_ATTRIBUTES['BOT_FILTERING'],

lib/optimizely/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@
1717
#
1818
module Optimizely
1919
CLIENT_ENGINE = 'ruby-sdk'
20-
VERSION = '5.0.1'
20+
VERSION = '5.1.0'
2121
end

0 commit comments

Comments
 (0)