Skip to content

Releases: optimizely/csharp-sdk

Release v1.3.1

17 Feb 00:28
Compare
Choose a tag to compare

1.3.1
February 14, 2018

Bug Fixes
Change 'murmurhash' to 'murmurhash-signed' in OptimizelySDK.nuspec fixing:
System.IO.FileLoadException 'Could not load file or assembly 'MurmurHash, ... PublicKeyToken ...'

Release v1.2.1

06 Nov 22:37
Compare
Choose a tag to compare

November 6, 2017

New Features

  • Package DLL's including third party component DLL's are strongnamed and digitally signed by Optimizely.

  • DecisionService GetVariationForFeatureRollout added.

  • Feature Flag and Rollout models added.

  • Implemented Bucketing ID feature.

Release v1.2.0

04 Oct 18:17
Compare
Choose a tag to compare

October 4, 2017

New Features

  • Introduce Numeric Metrics - This allows you to include a floating point value that is used to track numeric values in your experiments.
var eventTags = new EventTags()
    {
        { "value", 10.00 },
    };

OptimizelyClient.Track(eventKey, userId, attributes, eventTags);
  • Introduce Forced Variation - This allows you to force users into variations programmatically in real time for QA purposes without requiring datafile downloads from the network.
var result = OptimizelyClient.setForcedVariation(experimentKey, userId, forcedVariationKey);

Release v1.1.1

11 Sep 22:11
Compare
Choose a tag to compare
  • Add .Net 4.0 build in nuget package.

Release 1.1.0

07 Jun 15:57
Compare
Choose a tag to compare
  • Introduce the user profile service.