Skip to content

Commit f5aacf9

Browse files
authored
Merge pull request #95 from datalust/dev
2021.1 Release
2 parents 395a16a + dc9abda commit f5aacf9

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

src/Seq.Api/Model/Backups/BackupEntity.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace Seq.Api.Model.Backups
1616
{
1717
/// <summary>
1818
/// Seq backups include metadata like users, signals, API keys and other configuration, but do not include
19-
/// the event stream. Backups are fully encrypted with AES-256 and cannot be restored without the master key
19+
/// the event stream. Backups are fully encrypted with AES-256 and cannot be restored without the secret key
2020
/// from the originating Seq instance.
2121
/// </summary>
2222
public class BackupEntity : Entity

src/Seq.Api/Model/Settings/SettingName.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -115,11 +115,6 @@ public enum SettingName
115115
/// </summary>
116116
IsAuthenticationEnabled,
117117

118-
/// <summary>
119-
/// Tracks whether an admin user has dismissed the master key backup warning.
120-
/// </summary>
121-
MasterKeyIsBackedUp,
122-
123118
/// <summary>
124119
/// The minimum storage space, in bytes, on the disk containing log events, before
125120
/// Seq will stop accepting new events.
@@ -186,7 +181,12 @@ public enum SettingName
186181
/// The maximum size, in HTTP request content bytes, beyond which ingestion requests will be rejected.
187182
/// </summary>
188183
RawPayloadMaximumContentLength,
189-
184+
185+
/// <summary>
186+
/// Tracks whether an admin user has dismissed the secret key backup warning.
187+
/// </summary>
188+
SecretKeyIsBackedUp,
189+
190190
/// <summary>
191191
/// A snippet of CSS that will be included in the front-end's user interface styles.
192192
/// </summary>

src/Seq.Api/ResourceGroups/BackupsResourceGroup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace Seq.Api.ResourceGroups
2323
{
2424
/// <summary>
2525
/// Perform operations on backups. Seq backups include metadata like users, signals, API keys and other configuration, but do not include
26-
/// the event stream. Backups are fully encrypted with AES-256 and cannot be restored without the master key from the originating Seq instance.
26+
/// the event stream. Backups are fully encrypted with AES-256 and cannot be restored without the secret key from the originating Seq instance.
2727
/// </summary>
2828
public class BackupsResourceGroup : ApiResourceGroup
2929
{

src/Seq.Api/Seq.Api.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<Description>Client library for the Seq HTTP API.</Description>
4-
<VersionPrefix>2020.5.0</VersionPrefix>
4+
<VersionPrefix>2021.1.0</VersionPrefix>
55
<Authors>Datalust;Contributors</Authors>
66
<TargetFramework>netstandard2.0</TargetFramework>
77
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>

0 commit comments

Comments
 (0)