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

Commit 273a46f

Browse files
authored
Merge pull request #19 from launchdarkly/eb/ch118712/releaser-v2
use Releaser v2 config
2 parents adcf5f7 + e5a70b9 commit 273a46f

File tree

2 files changed

+17
-16
lines changed

2 files changed

+17
-16
lines changed

.ldrelease/config.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1+
version: 2
2+
13
publications:
24
- url: https://nuget.org/packages/LaunchDarkly.ServerSdk.Redis
35
description: NuGet
46

5-
releasableBranches:
7+
branches:
68
- name: master
79
description: 3.x - for SDK 6+
810
- name: 2.x
911
description: for SDK 5.x + StackExchange.Redis 2.x
1012
- name: 1.x
1113
description: for SDK 5.x + StackExchange.Redis 1.x
1214

13-
circleci:
14-
windows:
15-
context: org-global
15+
jobs:
16+
- docker: {}
17+
template:
18+
name: dotnet-linux
19+
skip:
20+
- test # tests require Redis - run them only in CI
1621
env:
17-
LD_RELEASE_DOCS_TARGET_FRAMEWORK: net461
18-
19-
template:
20-
name: dotnet-windows
21-
skip:
22-
- test # tests require Redis - run them only in CI
22+
LD_RELEASE_DOCS_TARGET_FRAMEWORK: netstandard2.0
2323

2424
documentation:
2525
title: LaunchDarkly Server-Side .NET SDK Redis Integration
26-
githubPages: true
26+
gitHubPages: true

src/LaunchDarkly.ServerSdk.Redis/RedisDataStoreImpl.cs

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,18 @@ namespace LaunchDarkly.Sdk.Server.Integrations
1818
/// Implementation notes:
1919
/// </para>
2020
/// <list type="bullet">
21-
/// <item> Feature flags, segments, and any other kind of entity the LaunchDarkly client may wish
21+
/// <item><description> Feature flags, segments, and any other kind of entity the LaunchDarkly client may wish
2222
/// to store, are stored as hash values with the main key "{prefix}:features", "{prefix}:segments",
23-
/// etc.</item>
24-
/// <item> Redis only allows a single string value per hash key, so there is no way to store the
23+
/// etc.</description></item>
24+
/// <item><description> Redis only allows a single string value per hash key, so there is no way to store the
2525
/// item metadata (version number and deletion status) separately from the value. The SDK understands
2626
/// that some data store implementations don't have that capability, so it will always pass us a
2727
/// serialized item string that contains the metadata in it, and we're allowed to return 0 as the
2828
/// version number of a queried item to indicate "you have to deserialize the item to find out the
2929
/// metadata".
30-
/// </item>
31-
/// <item> The special key "{prefix}:$inited" indicates that the store contains a complete data set.</item>
30+
/// </description></item>
31+
/// <item><description> The special key "{prefix}:$inited" indicates that the store contains a complete data set.
32+
/// </description></item>
3233
/// </list>
3334
/// </remarks>
3435
internal sealed class RedisDataStoreImpl : RedisStoreImplBase, IPersistentDataStore

0 commit comments

Comments
 (0)