Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
# Optimizely Ruby SDK Changelog

## 3.10.1
February 2, 2022

### Enhancements:
- Generate OptimizelyConfig object on API Call instead of SDK initialization to make the initialization faster (([#296](https://github.com/optimizely/ruby-sdk/pull/296)).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

An error in the PR link reference format.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch! just fixed it.


## 3.10.0
January 11, 2022

### New Features
### New Features:
- Add a set of new APIs for overriding and managing user-level flag, experiment and delivery rule decisions. These methods can be used for QA and automated testing purposes. They are an extension of the OptimizelyUserContext interface ([#287](https://github.com/optimizely/ruby-sdk/pull/287), [#288](https://github.com/optimizely/ruby-sdk/pull/288), [#289](https://github.com/optimizely/ruby-sdk/pull/289), [#290](https://github.com/optimizely/ruby-sdk/pull/290), [#291](https://github.com/optimizely/ruby-sdk/pull/291), [#293](https://github.com/optimizely/ruby-sdk/pull/293)):
- setForcedDecision
- getForcedDecision
Expand Down
2 changes: 1 addition & 1 deletion lib/optimizely/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
#
module Optimizely
CLIENT_ENGINE = 'ruby-sdk'
VERSION = '3.10.0'
VERSION = '3.10.1'
end
6 changes: 3 additions & 3 deletions spec/optimizely_user_context_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
project_id: '10431130345',
revision: '241',
client_name: 'ruby-sdk',
client_version: '3.10.0',
client_version: '3.10.1',
anonymize_ip: true,
enrich_decisions: true,
visitors: [{
Expand Down Expand Up @@ -208,7 +208,7 @@
project_id: '10431130345',
revision: '241',
client_name: 'ruby-sdk',
client_version: '3.10.0',
client_version: '3.10.1',
anonymize_ip: true,
enrich_decisions: true,
visitors: [{
Expand Down Expand Up @@ -321,7 +321,7 @@
project_id: '10431130345',
revision: '241',
client_name: 'ruby-sdk',
client_version: '3.10.0',
client_version: '3.10.1',
anonymize_ip: true,
enrich_decisions: true,
visitors: [{
Expand Down
4 changes: 2 additions & 2 deletions spec/project_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3625,7 +3625,7 @@ def callback(_args); end
project_id: '111001',
revision: '42',
client_name: 'ruby-sdk',
client_version: '3.10.0',
client_version: '3.10.1',
anonymize_ip: false,
enrich_decisions: true,
visitors: [{
Expand Down Expand Up @@ -3771,7 +3771,7 @@ def callback(_args); end
project_id: '111001',
revision: '42',
client_name: 'ruby-sdk',
client_version: '3.10.0',
client_version: '3.10.1',
anonymize_ip: false,
enrich_decisions: true,
visitors: [{
Expand Down