Update to .NET SDK 6.0.130 and Runtime 6.0.30

Resolves: RHEL-35308
This commit is contained in:
Omair Majid 2024-05-15 19:55:57 -04:00
parent eed74d360a
commit 8e801c4a62
5 changed files with 11 additions and 31 deletions

1
.gitignore vendored
View File

@ -28,3 +28,4 @@
/dotnet-v6.0.127.tar.gz
/dotnet-v6.0.128.tar.gz
/dotnet-v6.0.129.tar.gz
/dotnet-v6.0.130.tar.gz

View File

@ -20,10 +20,10 @@
# until that's done, disable LTO. This has to happen before setting the flags below.
%define _lto_cflags %{nil}
%global host_version 6.0.29
%global runtime_version 6.0.29
%global host_version 6.0.30
%global runtime_version 6.0.30
%global aspnetcore_runtime_version %{runtime_version}
%global sdk_version 6.0.129
%global sdk_version 6.0.130
%global sdk_feature_band_version %(echo %{sdk_version} | sed -e 's|[[:digit:]][[:digit:]]$|00|')
%global templates_version %{runtime_version}
#%%global templates_version %%(echo %%{runtime_version} | awk 'BEGIN { FS="."; OFS="." } {print $1, $2, $3+1 }')
@ -612,6 +612,10 @@ rm -rf %{buildroot}%{_libdir}/dotnet/packs/NETStandard.Library.Ref/2.1.0
%changelog
* Wed May 15 2024 Omair Majid <omajid@redhat.com> - 6.0.130-2
- Update to .NET SDK 6.0.130 and Runtime 6.0.30
- Resolves: RHEL-35308
* Tue Apr 09 2024 Omair Majid <omajid@redhat.com> - 6.0.129-2
- Update to .NET SDK 6.0.129 and Runtime 6.0.29
- Resolves: RHEL-31198

View File

@ -47,33 +47,6 @@ index 55a044d62a6..e72d42e87d2 100644
using (RSA rsa = RSAFactory.Create(TestData.RSA2048Params))
{
void RoundtripEmpty(RSAEncryptionPadding paddingMode)
@@ -692,26 +701,6 @@ public void NotSupportedValueMethods()
}
}
- [ConditionalTheory]
- [InlineData(new byte[] { 1, 2, 3, 4 })]
- [InlineData(new byte[0])]
- public void Decrypt_Pkcs1_ErrorsForInvalidPadding(byte[] data)
- {
- if (data.Length == 0 && !PlatformSupportsEmptyRSAEncryption)
- {
- throw new SkipTestException("Platform does not support RSA encryption of empty data.");
- }
-
- using (RSA rsa = RSAFactory.Create(TestData.RSA2048Params))
- {
- byte[] encrypted = Encrypt(rsa, data, RSAEncryptionPadding.Pkcs1);
- encrypted[1] ^= 0xFF;
-
- // PKCS#1, the data, and the key are all deterministic so this should always throw an exception.
- Assert.ThrowsAny<CryptographicException>(() => Decrypt(rsa, encrypted, RSAEncryptionPadding.Pkcs1));
- }
- }
-
[Fact]
public void Decrypt_Pkcs1_BadPadding()
{
@@ -726,23 +715,5 @@ public static IEnumerable<object[]> OaepPaddingModes
}
}

View File

@ -1 +1 @@
SHA512 (dotnet-v6.0.129.tar.gz) = 2c1318595a4e3e3df8d8208e98d51ebae27637be798afb4b6255eaa785a438ac4cfab7c56783cbc379f4f3511d0b619ce1d786b98cbd8be01c3da61347f1c4f6
SHA512 (dotnet-v6.0.130.tar.gz) = d637cf546aaa2d53f48196acc99d6eb77504a481d88c8703563afa52b27f78888b7d0d0d1b247c60eda0d38746a728a2d1f45d652f07d5eb636c2f47a1e73fb0

View File

@ -139,3 +139,5 @@ sed -i -E 's|^Release: [[:digit:]]+%|Release: '"$rpm_release"'%|'
# Reset Release in changelog comment
# See https://stackoverflow.com/questions/18620153/find-matching-text-and-replace-next-line
sed -i -E '/^%changelog$/!b;n;s/-[[:digit:]]+$/-'"$rpm_release"'/' "$spec_file"
echo "Done updating sources. Commit message in ./git-commit-message"