Update to .NET SDK 7.0.119 and Runtime 7.0.19

Resolves: RHEL-35312
This commit is contained in:
Omair Majid 2024-05-15 21:06:28 -04:00
parent 46960dcf80
commit 953b0d5697
5 changed files with 11 additions and 31 deletions

1
.gitignore vendored
View File

@ -25,3 +25,4 @@
/dotnet-v7.0.116.tar.gz
/dotnet-v7.0.117.tar.gz
/dotnet-v7.0.118.tar.gz
/dotnet-v7.0.119.tar.gz

View File

@ -6,10 +6,10 @@
# until that's done, disable LTO. This has to happen before setting the flags below.
%define _lto_cflags %{nil}
%global host_version 7.0.18
%global runtime_version 7.0.18
%global host_version 7.0.19
%global runtime_version 7.0.19
%global aspnetcore_runtime_version %{runtime_version}
%global sdk_version 7.0.118
%global sdk_version 7.0.119
%global sdk_feature_band_version %(echo %{sdk_version} | cut -d '-' -f 1 | 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> - 7.0.119-2
- Update to .NET SDK 7.0.119 and Runtime 7.0.19
- Resolves: RHEL-35312
* Tue Apr 09 2024 Omair Majid <omajid@redhat.com> - 7.0.118-2
- Update to .NET SDK 7.0.118 and Runtime 7.0.18
- Resolves: RHEL-31203

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-v7.0.118.tar.gz) = 8205def9d6d3c201cb92f30fbf9ac8e9851b491cd20559defe66984636e6e56113c730697b522a57bb1d57750171c8d3d10a714742a73f3767365f98d64a6f58
SHA512 (dotnet-v7.0.119.tar.gz) = 15b09d17f229802a0b9ab49d31edb30f308d1602b42b4b441de6d3267dd0089303ae27d83136fbfa429a87cc7b7069b615b5f42780f801d64ced48d4d713d336

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"