From 85ca24bac0f1f37fc0d415f447cd61794b9ad50e Mon Sep 17 00:00:00 2001 From: Stewart X Addison <6487691+sxa@users.noreply.github.com> Date: Thu, 25 Apr 2024 13:25:12 +0100 Subject: [PATCH] Remove banner for April 2024 releases (#2807) * support: update versions for April 2024 releases Signed-off-by: Stewart X Addison * Revert "update banner for April 2024 PSU releases (#2789)" This reverts commit 0bb3395c6896bdb254bc0e4d6eba8bb4f383a3c4. --------- Signed-off-by: Stewart X Addison --- .../support/_partials/support-table.adoc | 32 +++++++++---------- src/components/Banner/index.tsx | 19 ++++++----- 2 files changed, 27 insertions(+), 24 deletions(-) diff --git a/content/asciidoc-pages/support/_partials/support-table.adoc b/content/asciidoc-pages/support/_partials/support-table.adoc index cc2dc9959..6d540fe7e 100644 --- a/content/asciidoc-pages/support/_partials/support-table.adoc +++ b/content/asciidoc-pages/support/_partials/support-table.adoc @@ -13,10 +13,10 @@ Sep 2024 | Java 22 | Mar 2024 -| 19 Mar 2024 + -[.small]#jdk-22+36# -| 16 Apr 2024 + -[.small]#jdk-22.0.1# +| 19 Apr 2024 + +[.small]#jdk-22+0.1+9# +| 16 Jul 2024 + +[.small]#jdk-22.0.2# | Sep 2023 | Java 21 (LTS) @@ -50,26 +50,26 @@ Sep 2024 | Java 17 (LTS) | Sep 2021 -| 23 Jan 2024 + -[.small]#jdk-17.0.10+7# -| 16 Apr 2024 + -[.small]#jdk-17.0.11# +| 18 Apr 2024 + +[.small]#jdk-17.0.11+9# +| 16 Jul 2024 + +[.small]#jdk-17.0.12# | At least Oct 2027 | Java 11 (LTS) | Sep 2018 -| 22 Jan 2024 + -[.small]#jdk-11.0.22+7# -| 16 Apr 2024 + -[.small]#jdk-11.0.23# +| 18 Apr 2024 + +[.small]#jdk-11.0.23+9# +| 16 Jul 2024 + +[.small]#jdk-11.0.24# | At least Oct 2027 | Java 8 (LTS) | Mar 2014 -| 19 Jan 2024 + -[.small]#jdk8u402b06# -| 16 Apr 2024 + -[.small]#jdk8u412# +| 18 Apr 2024 + +[.small]#jdk8u412-b08# +| 16 Jul 2024 + +[.small]#jdk8u422# | At least Nov 2026 |=== diff --git a/src/components/Banner/index.tsx b/src/components/Banner/index.tsx index c28113475..50604fe88 100644 --- a/src/components/Banner/index.tsx +++ b/src/components/Banner/index.tsx @@ -1,17 +1,20 @@ import React from 'react'; const Banner = () => { + return null; + // The following is an example that can be used for future banner alert // Comment Out The Above Line ( return null ; ) and uncomment the below - return ( -
- 16th April 2024: - We are creating the April 2024 PSU binaries for Eclipse Temurin 8u412, 11.0.23, 17.0.11, 21.0.3 and 22.0.1
- You can track progress by platform. - -
- ); + // return ( + //
+ // 20th March 2024: + // We are creating the March 2024 PSU binaries for Eclipse Temurin 22.0.0
+ // You can track progress by platform. + // + //
+ // ); + }; export default Banner;