Skip to content

Commit 64fd9bf

Browse files
authored
Merge pull request #106 from datalust/dev
2021.4.0 Release
2 parents 06892fa + 706d26f commit 64fd9bf

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

src/Seq.Api/Model/Diagnostics/Storage/StorageConsumptionPart.cs

+5
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ public class StorageConsumptionPart
2626
/// The range of timestamps covered by the result.
2727
/// </summary>
2828
public DateTimeRange Range { get; set; }
29+
30+
/// <summary>
31+
/// The available range of timestamps.
32+
/// </summary>
33+
public DateTimeRange FullRange { get; set; }
2934

3035
/// <summary>
3136
/// The duration of the timestamp interval covered by each result.

src/Seq.Api/Model/Users/AuthProviderInfoPart.cs

+5
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,10 @@ public class AuthProviderInfoPart
3434
/// log in using the default provider.
3535
/// </summary>
3636
public bool IsAlternative { get; set; }
37+
38+
/// <summary>
39+
/// A template for the URL where the user can log in.
40+
/// </summary>
41+
public Link Challenge { get; set; }
3742
}
3843
}

src/Seq.Api/Seq.Api.csproj

+2-2
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>2021.3.1</VersionPrefix>
4+
<VersionPrefix>2021.4.0</VersionPrefix>
55
<Authors>Datalust;Contributors</Authors>
66
<TargetFramework>netstandard2.0</TargetFramework>
77
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
@@ -15,7 +15,7 @@
1515
</PropertyGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
18+
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
1919
<PackageReference Include="Tavis.UriTemplates" Version="1.1.1" />
2020
</ItemGroup>
2121

0 commit comments

Comments
 (0)