Skip to content

Commit

Permalink
update known information for Eclipse Temurin JRE 17 to version 17.0.12+7
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Jul 22, 2024
1 parent 60cd3a8 commit 834542f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ __[maintenance]__

* Update certificate information for CCleaner installers.
* Update certificate information for Eclipse Temurin JDK 17 LTS installers.
* Update certificate information for Eclipse Temurin JRE 17 LTS installers.
* Update certificate information for Eclipse Temurin JDK 21 LTS installers.
* Update certificate information for Eclipse Temurin JRE 21 LTS installers.
* Update certificate information for Firefox ESR installers.
Expand Down
14 changes: 7 additions & 7 deletions updater/software/OpenJRE17.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -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")
);
Expand Down

0 comments on commit 834542f

Please sign in to comment.