Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Test] Bump NServiceBus 8.2.4/9.2.3 #3743

Merged
merged 3 commits into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Loading