Update to .NET SDK 8.0.107 and Runtime 8.0.7

Resolves: RHEL-45322
This commit is contained in:
Omair Majid 2024-07-09 16:32:36 -04:00
parent 18d3ea3d09
commit 219d489749
6 changed files with 19 additions and 38 deletions

2
.gitignore vendored
View File

@ -42,3 +42,5 @@
/dotnet-8.0.3.tar.gz.sig
/dotnet-8.0.4.tar.gz
/dotnet-8.0.4.tar.gz.sig
/dotnet-8.0.7.tar.gz
/dotnet-8.0.7.tar.gz.sig

View File

@ -8,10 +8,10 @@
%global dotnetver 8.0
%global host_version 8.0.4
%global runtime_version 8.0.4
%global host_version 8.0.7
%global runtime_version 8.0.7
%global aspnetcore_runtime_version %{runtime_version}
%global sdk_version 8.0.104
%global sdk_version 8.0.107
%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 }')
@ -710,6 +710,10 @@ export COMPlus_LTTng=0
%changelog
* Tue Jul 09 2024 Omair Majid <omajid@redhat.com> - 8.0.107-2
- Update to .NET SDK 8.0.107 and Runtime 8.0.7
- Resolves: RHEL-45322
* Tue Apr 09 2024 Omair Majid <omajid@redhat.com> - 8.0.104-2
- Update to .NET SDK 8.0.104 and Runtime 8.0.4
- Resolves: RHEL-31204

View File

@ -1,10 +1,10 @@
{
"release": "8.0.4",
"release": "8.0.7",
"channel": "8.0",
"tag": "v8.0.4",
"sdkVersion": "8.0.104",
"runtimeVersion": "8.0.4",
"aspNetCoreVersion": "8.0.4",
"tag": "v8.0.7",
"sdkVersion": "8.0.107",
"runtimeVersion": "8.0.7",
"aspNetCoreVersion": "8.0.7",
"sourceRepository": "https://github.com/dotnet/dotnet",
"sourceVersion": "83659133a1aa2b2d94f9c4ecebfa10d960e27706"
"sourceVersion": "8be139ddde52d33e24c7d82f813248ff9fc54b97"
}

View File

@ -47,33 +47,6 @@ index 39f3ebc82ec..5b97f468a42 100644
using (RSA rsa = RSAFactory.Create(TestData.RSA2048Params))
{
void RoundtripEmpty(RSAEncryptionPadding paddingMode)
@@ -716,26 +725,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()
{
@@ -757,23 +746,5 @@ public static IEnumerable<object[]> OaepPaddingModes
}
}

View File

@ -1,2 +1,2 @@
SHA512 (dotnet-8.0.4.tar.gz) = 1b00d0ce342c174249d947a7b6d859d7de98937a2ca7fef68e73b10cc8d40da208be9eca2461f62b866a88453ad46dc6e5df4b77d36681e83532d27a271d93b9
SHA512 (dotnet-8.0.4.tar.gz.sig) = f5c9bf1d58e804b15f32144f4003c51e2e05c5e758a5c2b6474387594363327ebfc3370ccbcb1d814380f3628527e6dc792d56e9c50aa36440f5d5da8fae7a5a
SHA512 (dotnet-8.0.7.tar.gz) = 5d84c262a33dc2701a7e74e4a6166f4fae21632a91fecdfc0b26141cb6a8efbbdd6c93d4eb172bc10b3548b21b9f7759c00f6bdeb66bb0f658f9f3b559a1c504
SHA512 (dotnet-8.0.7.tar.gz.sig) = cba31f48de2652a0f8893636e21bd16a7420d56b1dfbff08c39e006a00acfb234beec84044004537c7c2006336be0dfbabbc23199f76a1458c87f9b2cd08f126

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"