Skip to content

Commit

Permalink
Merge pull request #332 from datalust/dev
Browse files Browse the repository at this point in the history
2024.1 Maintenance Release
  • Loading branch information
nblumhardt authored Mar 7, 2024
2 parents c8cc16d + 7097c1e commit d088824
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 13 deletions.
3 changes: 1 addition & 2 deletions Build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@ Clean-Output
Create-ArtifactDir
Restore-Packages
Publish-Archives($version)
# Temporarily disabled while SerilogTracing is in pre-release
# Publish-DotNetTool($version)
Publish-DotNetTool($version)
Execute-Tests($version)
Publish-Docs($version)

Expand Down
2 changes: 1 addition & 1 deletion src/Roastery/Roastery.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

<ItemGroup>
<PackageReference Include="Serilog" Version="3.1.1" />
<PackageReference Include="SerilogTracing" Version="1.0.0-dev-00088" />
<PackageReference Include="SerilogTracing" Version="1.0.0" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/SeqCli/Cli/Commands/ApiKey/CreateCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public CreateCommand(SeqConnectionFactory connectionFactory, SeqCliConfig config

Options.Add(
"connect-username=",
"A username to connect with, useful primarily when setting up the first API key",
"A username to connect with, useful primarily when setting up the first API key; servers with an 'Individual' subscription only allow one simultaneous request with this option",
v => _connectUsername = ArgumentString.Normalize(v));

Options.Add(
Expand Down
1 change: 0 additions & 1 deletion src/SeqCli/Cli/Features/OutputFormatFeature.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
using Seq.Api.Model;
using SeqCli.Config;
using SeqCli.Csv;
using SeqCli.Levels;
using SeqCli.Output;
using Serilog;
using Serilog.Core;
Expand Down
5 changes: 3 additions & 2 deletions src/SeqCli/SeqCli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
<TreatSpecificWarningsAsErrors />
<PackAsTool>true</PackAsTool>
<ToolCommandName>seqcli</ToolCommandName>
<LangVersion>default</LangVersion>
<RollForward>Major</RollForward>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
Expand All @@ -34,7 +35,7 @@
<PackageReference Include="Serilog.Formatting.Compact.Reader" Version="3.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="5.0.1" />
<PackageReference Include="Autofac" Version="8.0.0" />
<PackageReference Include="Serilog.Sinks.Seq" Version="6.0.0" />
<PackageReference Include="Serilog.Sinks.Seq" Version="7.0.0" />
<PackageReference Include="Superpower" Version="3.0.0" />
<PackageReference Include="System.Reactive" Version="6.0.0" />
<PackageReference Include="System.Security.Cryptography.ProtectedData" Version="8.0.0" />
Expand Down
4 changes: 1 addition & 3 deletions test/SeqCli.EndToEnd/SeqCli.EndToEnd.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
<TargetFrameworks>net8.0;net8.0-windows</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Autofac" Version="8.0.0" />
<PackageReference Include="xunit" Version="2.6.2" />
<PackageReference Include="Serilog.Sinks.Seq" Version="6.0.0" />
<PackageReference Include="xunit" Version="2.7.0" />
</ItemGroup>
<ItemGroup>
<None Update="Data\*">
Expand Down
6 changes: 3 additions & 3 deletions test/SeqCli.Tests/SeqCli.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<TargetFrameworks>net8.0;net8.0-windows</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="xunit" Version="2.6.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.4">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="xunit" Version="2.7.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.7">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down

0 comments on commit d088824

Please sign in to comment.