Skip to content

Commit

Permalink
[release] 1.28.0 - Add User Persistent Storage (#160)
Browse files Browse the repository at this point in the history
### New Features
- Adds support for user persistent storage to ensure users get
consistent experiment assignment
  ### Improvements
- Includes group name in the getClientInitializeResponse so that it can
be used by client sdks
  • Loading branch information
sroyal-statsig authored Sep 30, 2024
1 parent 03ecc8c commit 434aa01
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dotnet-statsig-tests/Common/StatsigTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public class StatsigTest : IAsyncLifetime
{
WireMockServer _server;

private const String ExpectedSdkVersion = "1.27.3.0";
private const String ExpectedSdkVersion = "1.28.0.0";

Task IAsyncLifetime.InitializeAsync()
{
Expand Down Expand Up @@ -316,7 +316,7 @@ await StatsigServer.Initialize
Assert.True(requestHeaders["STATSIG-API-KEY"].ToString().Equals("secret-fake-key"));
Assert.True(requestHeaders["STATSIG-SDK-VERSION"].ToString().Equals(ExpectedSdkVersion));
Assert.True(requestHeaders["STATSIG-SDK-TYPE"].ToString().Equals("dotnet-server"));

Assert.True(metadata["sdkType"].Equals("dotnet-server"));
Assert.True(metadata["sdkVersion"].Equals(ExpectedSdkVersion));

Expand Down
2 changes: 1 addition & 1 deletion dotnet-statsig/dotnet-statsig.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<RootNamespace>statsig_dotnet</RootNamespace>
<PackOnBuild>true</PackOnBuild>
<PackageId>Statsig</PackageId>
<Version>1.27.3</Version>
<Version>1.28.0</Version>
<Authors>Statsig Inc.</Authors>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<RepositoryUrl>https://github.com/statsig-io/dotnet-sdk.git</RepositoryUrl>
Expand Down

0 comments on commit 434aa01

Please sign in to comment.