Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit 9c22fdb

Browse files
author
LaunchDarklyReleaseBot
committed
Releasing version 4.0.0
1 parent 3b008fe commit 9c22fdb

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
All notable changes to the LaunchDarkly .NET SDK Redis integration will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).
44

5+
## [4.0.0] - 2022-12-07
6+
This release corresponds to the 7.0.0 release of the LaunchDarkly server-side .NET SDK. Any application code that is being updated to use the 7.0.0 SDK, and was using a 3.x version of `LaunchDarkly.ServerSdk.Redis`, should now use a 4.x version instead.
7+
8+
There are no functional differences in the behavior of the Redis integration; the differences are only related to changes in the usage of interface types for configuration in the SDK.
9+
10+
### Added:
11+
- `Redis.BigSegmentStore()`, which creates a configuration builder for use with Big Segments. Previously, the `Redis.DataStore()` builder was used for both regular data stores and Big Segment stores.
12+
13+
### Changed:
14+
- The type `RedisDataStoreBuilder` has been removed, replaced by a generic type `RedisStoreBuilder`. Application code would not normally need to reference these types by name, but if necessary, use either `RedisStoreBuilder<PersistentDataStore>` or `RedisStoreBuilder<BigSegmentStore>` depending on whether you are configuring a regular data store or a Big Segment store.
15+
516
## [3.1.0] - 2021-07-22
617
### Added:
718
- Added support for Big Segments. An Early Access Program for creating and syncing Big Segments from customer data platforms is available to enterprise customers.

src/LaunchDarkly.ServerSdk.Redis/LaunchDarkly.ServerSdk.Redis.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<Version>3.1.0</Version>
3+
<Version>4.0.0</Version>
44
<TargetFrameworks>netstandard2.0;net462</TargetFrameworks>
55
<AssemblyName>LaunchDarkly.ServerSdk.Redis</AssemblyName>
66
<OutputType>Library</OutputType>

0 commit comments

Comments
 (0)