Skip to content

Commit

Permalink
update known information for Eclipse Temurin JRE 21 to version 21.0.5+11
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Oct 21, 2024
1 parent 3baab53 commit 75f62fc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ __[new features]__
__[maintenance]__

* Update certificate information for Eclipse Temurin JDK 21 LTS installers.
* Update certificate information for Eclipse Temurin JRE 21 LTS installers.

## Version 2024.09.30.0

Expand Down
8 changes: 4 additions & 4 deletions updater/software/OpenJRE21.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public class OpenJRE21 : NoPreUpdateProcessSoftware
/// <summary>
/// expiration date for the publisher certificate
/// </summary>
private static readonly DateTime certificateExpiration = new(2026, 6, 11, 23, 59, 59, DateTimeKind.Utc);
private static readonly DateTime certificateExpiration = new(2025, 7, 21, 23, 59, 59, DateTimeKind.Utc);


/// <summary>
Expand All @@ -66,16 +66,16 @@ public OpenJRE21(bool autoGetNewer)
public override AvailableSoftware knownInfo()
{
var signature = new Signature(publisherX509, certificateExpiration);
const string version = "21.0.4.7";
const string version = "21.0.5.11";
return new AvailableSoftware("Eclipse Temurin JRE 21 with Hotspot",
version,
null, // no 32-bit installer
"^Eclipse Temurin JRE [a-z]+ Hotspot 21\\.[0-9]+\\.[0-9]+(\\.[0-9]+)?\\+[0-9]+(\\.[0-9]+)? \\(x64\\)$",
null, // no 32-bit installer
new InstallInfoMsiNoLocation(
"https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.4%2B7/OpenJDK21U-jre_x64_windows_hotspot_21.0.4_7.msi",
"https://github.com/adoptium/temurin21-binaries/releases/download/jdk-21.0.5%2B11/OpenJDK21U-jre_x64_windows_hotspot_21.0.5_11.msi",
HashAlgorithm.SHA256,
"cf5b9440680994f1571eb1b83fe017eafbec9e6e8a9cd033b3c099e967c1a553",
"baa356843cbe2cbc8e49bad1cfef27eaaf5e59748a1627be40492804753c706a",
signature,
"INSTALLLEVEL=3 /qn /norestart")
);
Expand Down

0 comments on commit 75f62fc

Please sign in to comment.