Bump System.Security.Cryptography.Pkcs from 9.0.1 to 9.0.2 (#4035)
* Bump System.Security.Cryptography.Pkcs from 9.0.1 to 9.0.2 Bumps [System.Security.Cryptography.Pkcs](https://github.com/dotnet/runtime) from 9.0.1 to 9.0.2. - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](https://github.com/dotnet/runtime/compare/v9.0.1...v9.0.2) --- updated-dependencies: - dependency-name: System.Security.Cryptography.Pkcs dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Fix NserviceBus --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Piotr Kiełkowicz <pkiekowicz@splunk.com>
This commit is contained in:
parent
5ed094474c
commit
8dc41feab0
|
@ -122,9 +122,9 @@ public static partial class LibraryVersion
|
|||
{
|
||||
"TestApplication.NServiceBus",
|
||||
[
|
||||
new("8.2.4"),
|
||||
new("8.2.5"),
|
||||
new("9.1.0", supportedFrameworks: [ "net9.0", "net8.0" ]),
|
||||
new("9.2.3", supportedFrameworks: [ "net9.0", "net8.0" ]),
|
||||
new("9.2.6", supportedFrameworks: [ "net9.0", "net8.0" ]),
|
||||
]
|
||||
},
|
||||
{
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
<PackageVersion Include="NSubstitute" Version="5.3.0" />
|
||||
<PackageVersion Include="MySqlConnector" Version="2.4.0" />
|
||||
<PackageVersion Include="MySql.Data" Version="9.1.0" />
|
||||
<PackageVersion Include="NServiceBus" Version="9.2.3" />
|
||||
<PackageVersion Include="NServiceBus" Version="9.2.6" />
|
||||
<PackageVersion Include="Newtonsoft.Json" Version="13.0.3" />
|
||||
<PackageVersion Include="Npgsql" Version="9.0.2" />
|
||||
<PackageVersion Include="NuGet.Versioning" Version="6.12.1" />
|
||||
|
@ -53,7 +53,7 @@
|
|||
<PackageVersion Include="System.Reactive" Version="6.0.1" />
|
||||
<PackageVersion Include="System.Runtime.InteropServices" Version="4.3.0" />
|
||||
<PackageVersion Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" />
|
||||
<PackageVersion Include="System.Security.Cryptography.Pkcs" Version="9.0.1" />
|
||||
<PackageVersion Include="System.Security.Cryptography.Pkcs" Version="9.0.2" />
|
||||
<PackageVersion Include="System.ServiceModel.Http" Version="8.1.0" />
|
||||
<PackageVersion Include="System.ServiceModel.NetTcp" Version="8.1.0" />
|
||||
<PackageVersion Include="System.Text.Json" Version="8.0.5" />
|
||||
|
|
|
@ -262,12 +262,12 @@ public static partial class LibraryVersion
|
|||
#if DEFAULT_TEST_PACKAGE_VERSIONS
|
||||
string.Empty,
|
||||
#else
|
||||
"8.2.4",
|
||||
"8.2.5",
|
||||
#if NET9_0 || NET8_0
|
||||
"9.1.0",
|
||||
#endif
|
||||
#if NET9_0 || NET8_0
|
||||
"9.2.3",
|
||||
"9.2.6",
|
||||
#endif
|
||||
#endif
|
||||
];
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
|
||||
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
|
||||
<PackageReference Include="NServiceBus" VersionOverride="$(LibraryVersion)" Condition=" '$(LibraryVersion)' != '' or '$(TargetFramework)' != 'net472' "/>
|
||||
<PackageReference Include="NServiceBus" VersionOverride="8.2.4" Condition=" '$(LibraryVersion)' == '' and '$(TargetFramework)' == 'net472' "/>
|
||||
<PackageReference Include="NServiceBus" VersionOverride="8.2.5" Condition=" '$(LibraryVersion)' == '' and '$(TargetFramework)' == 'net472' "/>
|
||||
<PackageReference Include="System.Diagnostics.DiagnosticSource" />
|
||||
</ItemGroup>
|
||||
|
||||
|
|
|
@ -197,7 +197,7 @@ internal static class PackageVersionDefinitions
|
|||
Versions = new List<PackageVersion>
|
||||
{
|
||||
// new("8.0.0"), - transitive vulnerabilities https://github.com/advisories/GHSA-8g4q-xg66-9fp4, <=8.2.3
|
||||
new("8.2.4"),
|
||||
new("8.2.5"),
|
||||
new("9.1.0", supportedTargetFrameworks: ["net9.0", "net8.0"], supportedExecutionFrameworks: ["net9.0", "net8.0"
|
||||
]), // breaking change, new Meter name
|
||||
new("*", supportedTargetFrameworks: ["net9.0", "net8.0"], supportedExecutionFrameworks: ["net9.0", "net8.0"
|
||||
|
|
Loading…
Reference in New Issue