Update to .NET SDK 8.0.105 and Runtime 8.0.5

Resolves: RHEL-35315
This commit is contained in:
Omair Majid 2024-05-16 13:31:26 -04:00
parent d4aec77a53
commit a00d1130f7
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.5.tar.gz
/dotnet-8.0.5.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.5
%global runtime_version 8.0.5
%global aspnetcore_runtime_version %{runtime_version}
%global sdk_version 8.0.104
%global sdk_version 8.0.105
%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 }')
@ -712,6 +712,10 @@ export COMPlus_LTTng=0
%changelog
* Wed May 15 2024 Omair Majid <omajid@redhat.com> - 8.0.105-2
- Update to .NET SDK 8.0.105 and Runtime 8.0.5
- Resolves: RHEL-35315
* 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-31208

View File

@ -1,10 +1,10 @@
{
"release": "8.0.4",
"release": "8.0.5",
"channel": "8.0",
"tag": "v8.0.4",
"sdkVersion": "8.0.104",
"runtimeVersion": "8.0.4",
"aspNetCoreVersion": "8.0.4",
"tag": "v8.0.5",
"sdkVersion": "8.0.105",
"runtimeVersion": "8.0.5",
"aspNetCoreVersion": "8.0.5",
"sourceRepository": "https://github.com/dotnet/dotnet",
"sourceVersion": "83659133a1aa2b2d94f9c4ecebfa10d960e27706"
"sourceVersion": "181780576f29353fd077b649e7624cf806e882e7"
}

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.5.tar.gz) = 73b2045d99c76fc44a31de992119beaaa66ab460153364adcaccda01e5040c3e2d7a865c9c1b005ba445506295a6d064581a6c258236057b87d8bab5daf9c220
SHA512 (dotnet-8.0.5.tar.gz.sig) = a7c054fe06f7a857b128908c8df49f720163e7069e4dea1f3cd26431e74ee7283142b8bb47de0710eab6ed47fe68cfd6c9a6d0d4c985480bbeb75811fdd6245c

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"