Skip to content

Commit

Permalink
[Test] Bump NServiceBus 8.2.4/9.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Kielek committed Nov 4, 2024
1 parent 5745437 commit 55b5140
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions build/LibraryVersions.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ public static partial class LibraryVersion
"TestApplication.NServiceBus",
new List<PackageBuildInfo>
{
new("8.0.0"),
new("8.2.4"),
new("9.1.0", supportedFrameworks: new string[] {"net8.0"}),
new("9.2.2", supportedFrameworks: new string[] {"net8.0"}),
new("9.2.3", supportedFrameworks: new string[] {"net8.0"}),
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion test/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<PackageVersion Include="NSubstitute" Version="5.3.0" />
<PackageVersion Include="MySqlConnector" Version="2.3.7" />
<PackageVersion Include="MySql.Data" Version="9.1.0" />
<PackageVersion Include="NServiceBus" Version="9.2.2" />
<PackageVersion Include="NServiceBus" Version="9.2.3" />
<PackageVersion Include="Newtonsoft.Json" Version="13.0.3" />
<PackageVersion Include="Npgsql" Version="8.0.5" />
<PackageVersion Include="NuGet.Versioning" Version="6.5.0" />
Expand Down
4 changes: 2 additions & 2 deletions test/IntegrationTests/LibraryVersions.g.cs
Original file line number Diff line number Diff line change
Expand Up @@ -205,12 +205,12 @@ public static TheoryData<string> NServiceBus
#if DEFAULT_TEST_PACKAGE_VERSIONS
theoryData.Add(string.Empty);
#else
theoryData.Add("8.0.0");
theoryData.Add("8.2.4");
#if NET8_0
theoryData.Add("9.1.0");
#endif
#if NET8_0
theoryData.Add("9.2.2");
theoryData.Add("9.2.3");
#endif
#endif
return theoryData;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PackageReference Include="OpenTelemetry.Exporter.Console" />
<PackageReference Include="StackExchange.Redis" />
<PackageReference Include="NServiceBus" Condition=" '$(TargetFramework)' == 'net8.0' "/>
<PackageReference Include="NServiceBus" VersionOverride="8.2.0" Condition=" '$(TargetFramework)' != 'net8.0' "/>
<PackageReference Include="NServiceBus" VersionOverride="8.2.4" Condition=" '$(TargetFramework)' != 'net8.0' "/>
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
<PackageReference Include="NServiceBus" VersionOverride="$(LibraryVersion)" Condition=" '$(LibraryVersion)' != '' or '$(TargetFramework)' == 'net8.0' "/>
<PackageReference Include="NServiceBus" VersionOverride="8.2.0" Condition=" '$(LibraryVersion)' == '' and '$(TargetFramework)' != 'net8.0' "/>
<PackageReference Include="NServiceBus" VersionOverride="8.2.4" Condition=" '$(LibraryVersion)' == '' and '$(TargetFramework)' != 'net8.0' "/>
<PackageReference Include="System.Diagnostics.DiagnosticSource" />
</ItemGroup>

Expand Down
3 changes: 2 additions & 1 deletion tools/LibraryVersionsGenerator/PackageVersionDefinitions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,8 @@ all lower versions than 8.15.10 contains references impacted by
TestApplicationName = "TestApplication.NServiceBus",
Versions = new List<PackageVersion>
{
new("8.0.0"),
// new("8.0.0"), - transitive vulnerabilities https://github.com/advisories/GHSA-8g4q-xg66-9fp4, <=8.2.3
new("8.2.4"),
new("9.1.0", supportedTargetFrameworks: new[] { "net8.0" }, supportedExecutionFrameworks: new[] { "net8.0" }), // breaking change, new Meter name
new("*", supportedTargetFrameworks: new[] { "net8.0" }, supportedExecutionFrameworks: new[] { "net8.0" })
}
Expand Down

0 comments on commit 55b5140

Please sign in to comment.