Skip to content

Releases: optimizely/csharp-sdk

Release 4.0.0

16 Jan 22:25
50533a9
Compare
Choose a tag to compare

4.0.0

January 16th, 2024

New Features

Advanced Audience Targeting

The 4.0.0 release introduces a new primary feature, Advanced Audience Targeting enabled through integration with Optimizely Data Platform (ODP) ( #305, #310, #311, #315, #321, #322, #323, #324).

You can use ODP, a high-performance Customer Data Platform (CDP), to easily create complex
real-time segments (RTS) using first-party and 50+ third-party data sources out of the box. You can create custom schemas that support the user attributes important
for your business, and stitch together user behavior done on different devices to better understand and target your customers for personalized user experiences. ODP can
be used as a single source of truth for these segments in any Optimizely or 3rd party tool.

With ODP accounts integrated into Optimizely projects, you can build audiences using segments pre-defined in ODP. The SDK will fetch the segments for given users and
make decisions using the segments. For access to ODP audience targeting in your Feature Experimentation account, please contact your Optimizely Customer Success Manager.

This version includes the following changes:

  • New API added to OptimizelyUserContext:
    • FetchQualifiedSegments(): this API will retrieve user segments from the ODP server. The fetched segments will be used for audience evaluation. The fetched data will be stored in the local cache to avoid repeated network delays.
    • When an OptimizelyUserContext is created, the SDK will automatically send an identify request to the ODP server to facilitate observing user activities.
  • New APIs added to OptimizelyClient:
    • SendOdpEvent(): customers can build/send arbitrary ODP events that will bind user identifiers and data to user profiles in ODP.

For details, refer to our documentation pages:

Polling warning

Add warning to polling intervals below 30 seconds (#365)

Breaking Changes

  • OdpManager in the SDK is enabled by default. Unless an ODP account is integrated into the Optimizely projects, most OdpManager functions will be ignored. If needed, OdpManager can be disabled when OptimizelyClient is instantiated.
  • ProjectConfigManager interface additions + implementing class updates
  • Evaluate() updates in BaseCondition

Bug Fixes

  • Return Latest Experiment When Duplicate Keys in Config enhancement

Documentation

  • Corrections to markdown files in docs directory (#368)
  • GitHub template updates (#366)

Release 3.11.4

28 Jul 17:54
9e08223
Compare
Choose a tag to compare

3.11.4

July 26, 2023

Bug Fix

  • Fix Last-Modified date & time format for If-Modified-Since (#361).

Release 3.11.3

19 Jul 20:19
97b240a
Compare
Choose a tag to compare

3.11.3

July 18, 2023

Bug Fix

  • Last-Modified in header not found and used to reduce polling payload (#355).

Release 4.0.0-beta

03 May 20:31
7bb4f03
Compare
Choose a tag to compare
Release 4.0.0-beta Pre-release
Pre-release

April 28th, 2023

New Features

The 4.0.0-beta release introduces a new primary feature, Advanced Audience Targeting
enabled through integration with Optimizely Data Platform (ODP) (#305,#310,#311,#315,#321,#322,#323,#324).

You can use ODP, a high-performance Customer Data Platform (CDP), to easily create complex
real-time segments (RTS) using first-party and 50+ third-party data sources out of the box. You can create custom schemas that support the user attributes important
for your business, and stitch together user behavior done on different devices to better understand and target your customers for personalized user experiences. ODP can
be used as a single source of truth for these segments in any Optimizely or 3rd party tool.

With ODP accounts integrated into Optimizely projects, you can build audiences using segments pre-defined in ODP. The SDK will fetch the segments for given users and
make decisions using the segments. For access to ODP audience targeting in your Feature Experimentation account, please contact your Optimizely Customer Success Manager.

This version includes the following changes:

  • New API added to OptimizelyUserContext:
    • FetchQualifiedSegments(): this API will retrieve user segments from the ODP server. The fetched segments will be used for audience evaluation. The fetched data will be stored in the local cache to avoid repeated network delays.
    • When an OptimizelyUserContext is created, the SDK will automatically send an identify request to the ODP server to facilitate observing user activities.
  • New APIs added to OptimizelyClient:
    • SendOdpEvent(): customers can build/send arbitrary ODP events that will bind user identifiers and data to user profiles in ODP.

For details, refer to our documentation pages:

Breaking Changes

  • OdpManager in the SDK is enabled by default. Unless an ODP account is integrated into the Optimizely projects, most OdpManager functions will be ignored. If needed, OdpManager can be disabled when OptimizelyClient is instantiated.
  • ProjectConfigManager interface additions + implementing class updates
  • Evaluate() updates in BaseCondition

3.11.2

March 15th, 2023

  • Update README.md and other non-functional code to reflect that this SDK supports both Optimizely Feature Experimentation and Optimizely Full Stack. (#331, #332).

Bug Fixes

  • Fix for incorrect documentation on Optimizely.IsFeatureEnabled (#304)

Release 3.11.2.1

24 Mar 15:21
dd03735
Compare
Choose a tag to compare

March 24, 2023

NuGet requires a semantic version increase to "republish".

Bug Fix

  • Corrections to nuspec generated during signing and upload.

Release 3.11.2

20 Mar 13:36
2a4ba93
Compare
Choose a tag to compare

March 16th, 2023

  • Update README.md and other non-functional code to reflect that this SDK supports both Optimizely Feature Experimentation and Optimizely Full Stack. (#331, #332).
  • Changes to GitHub Actions jobs (#335)
  • Some edits .editorconfig (more complete linting rules coming) (#335)

Bug Fixes

  • Fix for incorrect documentation on Optimizely.IsFeatureEnabled (#329)
  • Update version of Newtonsoft.Json & NJsonSchema (#330) to address Issue #328

Release 3.11.1

27 Jul 19:29
c89aa98
Compare
Choose a tag to compare

July 27th, 2022

Bug Fixes

  • Handle possible empty string rolloutId in datafile (#304)

3.11.0

14 Jan 00:13
179531c
Compare
Choose a tag to compare

3.11.0

January 13th, 2022

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 (#285, #292)
    • SetForcedDecision
    • GetForcedDecision
    • RemoveForcedDecision
    • RemoveAllForcedDecisions

Release 3.10.0

16 Sep 19:00
803bc57
Compare
Choose a tag to compare

New Features

Deprecated:

  • OptimizelyFeature.ExperimentsMap of OptimizelyConfig is deprecated as of this release. Please use OptimizelyFeature.ExperimentRules and OptimizelyFeature.DeliveryRules. (#276)

Release 3.9.1

20 Jul 20:30
248d10b
Compare
Choose a tag to compare

Bug Fixes:

  • Duplicate experiment key issue with multiple feature flags. While trying to get variation from the variationKeyMap, it was unable to find because the latest experimentKey was overriding the previous one. #267