-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update known information for Eclipse Temurin JRE 17 to version 17.0.12+7
- Loading branch information
Showing
2 changed files
with
8 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,13 +39,13 @@ public class OpenJRE17 : NoPreUpdateProcessSoftware | |
/// <summary> | ||
/// publisher of signed binaries | ||
/// </summary> | ||
private const string publisherX509 = "[email protected], CN=\"Eclipse.org Foundation, Inc.\", OU=IT, O=\"Eclipse.org Foundation, Inc.\", L=Ottawa, S=Ontario, C=CA"; | ||
private const string publisherX509 = "CN=\"Eclipse.org Foundation, Inc.\", O=\"Eclipse.org Foundation, Inc.\", L=Ottawa, S=Ontario, C=CA"; | ||
|
||
|
||
/// <summary> | ||
/// expiration date for the publisher certificate | ||
/// </summary> | ||
private static readonly DateTime certificateExpiration = new(2024, 5, 21, 23, 59, 59, DateTimeKind.Utc); | ||
private static readonly DateTime certificateExpiration = new(2026, 6, 11, 23, 59, 59, DateTimeKind.Utc); | ||
|
||
|
||
/// <summary> | ||
|
@@ -66,21 +66,21 @@ public OpenJRE17(bool autoGetNewer) | |
public override AvailableSoftware knownInfo() | ||
{ | ||
var signature = new Signature(publisherX509, certificateExpiration); | ||
const string version = "17.0.11.9"; | ||
const string version = "17.0.12.7"; | ||
return new AvailableSoftware("Eclipse Temurin JRE 17 with Hotspot", | ||
version, | ||
"^Eclipse Temurin JRE [a-z]+ Hotspot 17\\.[0-9]+\\.[0-9]+(\\.[0-9]+)?\\+[0-9]+(\\.[0-9]+)? \\(x86\\)$", | ||
"^Eclipse Temurin JRE [a-z]+ Hotspot 17\\.[0-9]+\\.[0-9]+(\\.[0-9]+)?\\+[0-9]+(\\.[0-9]+)? \\(x64\\)$", | ||
new InstallInfoMsiNoLocation( | ||
"https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.11%2B9/OpenJDK17U-jre_x86-32_windows_hotspot_17.0.11_9.msi", | ||
"https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.12%2B7/OpenJDK17U-jre_x86-32_windows_hotspot_17.0.12_7.msi", | ||
HashAlgorithm.SHA256, | ||
"f30dc5345265bb744c42f2b048ee50a1d7d3c36bd3e7641ae5177ead8a339f46", | ||
"d2d8f7a27409b9a90ceadb53fc7064ce2a3d71d9f0db40572cb0b14f089a9798", | ||
signature, | ||
"INSTALLLEVEL=3 /qn /norestart"), | ||
new InstallInfoMsiNoLocation( | ||
"https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.11%2B9/OpenJDK17U-jre_x64_windows_hotspot_17.0.11_9.msi", | ||
"https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.12%2B7/OpenJDK17U-jre_x64_windows_hotspot_17.0.12_7.msi", | ||
HashAlgorithm.SHA256, | ||
"1244a2fc43e502758f16bd49de01fa60e89a94247eee41fa449db8f90ed5e682", | ||
"62caaa23b88545099612ae77455fe2ac888ad3731ac0758f5cbedad406fd3c6c", | ||
signature, | ||
"INSTALLLEVEL=3 /qn /norestart") | ||
); | ||
|