This is an automated email from the ASF dual-hosted git repository.

spetz pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iggy-website.git


The following commit(s) were added to refs/heads/main by this push:
     new 705c49e5 fix(downloads): use closer.lua for release artifact links as 
ASF policy requires (#44)
705c49e5 is described below

commit 705c49e512d8c1cabdf5eb09c67e3feb8e1e796d
Author: Justin Mclean <[email protected]>
AuthorDate: Wed Aug 5 17:43:45 2026 +1000

    fix(downloads): use closer.lua for release artifact links as ASF policy 
requires (#44)
---
 src/app/(site)/downloads/page.tsx | 21 ++++++++++++++++-----
 1 file changed, 16 insertions(+), 5 deletions(-)

diff --git a/src/app/(site)/downloads/page.tsx 
b/src/app/(site)/downloads/page.tsx
index 2d2d913b..05c0587e 100644
--- a/src/app/(site)/downloads/page.tsx
+++ b/src/app/(site)/downloads/page.tsx
@@ -31,7 +31,7 @@ const releases = [
     latest: true,
     date: "2026-04-22",
     archive:
-      
"https://downloads.apache.org/incubator/iggy/0.8.0/iggy-0.8.0-incubating-src.tar.gz";,
+      
"https://www.apache.org/dyn/closer.lua/incubator/iggy/0.8.0/iggy-0.8.0-incubating-src.tar.gz";,
     asc: 
"https://downloads.apache.org/incubator/iggy/0.8.0/iggy-0.8.0-incubating-src.tar.gz.asc";,
     sha: 
"https://downloads.apache.org/incubator/iggy/0.8.0/iggy-0.8.0-incubating-src.tar.gz.sha512";,
     changelog: "/blogs/2026/04/22/release-0.8.0",
@@ -41,7 +41,7 @@ const releases = [
     latest: false,
     date: "2026-02-24",
     archive:
-      
"https://downloads.apache.org/incubator/iggy/0.7.0/iggy-0.7.0-incubating-src.tar.gz";,
+      
"https://www.apache.org/dyn/closer.lua/incubator/iggy/0.7.0/iggy-0.7.0-incubating-src.tar.gz";,
     asc: 
"https://downloads.apache.org/incubator/iggy/0.7.0/iggy-0.7.0-incubating-src.tar.gz.asc";,
     sha: 
"https://downloads.apache.org/incubator/iggy/0.7.0/iggy-0.7.0-incubating-src.tar.gz.sha512";,
     changelog: "/blogs/2026/02/24/release-0.7.0",
@@ -51,7 +51,7 @@ const releases = [
     latest: false,
     date: "2025-12-09",
     archive:
-      
"https://downloads.apache.org/incubator/iggy/0.6.0/iggy-0.6.0-incubating-src.tar.gz";,
+      
"https://www.apache.org/dyn/closer.lua/incubator/iggy/0.6.0/iggy-0.6.0-incubating-src.tar.gz";,
     asc: 
"https://downloads.apache.org/incubator/iggy/0.6.0/iggy-0.6.0-incubating-src.tar.gz.asc";,
     sha: 
"https://downloads.apache.org/incubator/iggy/0.6.0/iggy-0.6.0-incubating-src.tar.gz.sha512";,
     changelog: "/blogs/2025/12/09/release-0.6.0",
@@ -61,7 +61,7 @@ const releases = [
     latest: false,
     date: "2025-08-10",
     archive:
-      
"https://downloads.apache.org/incubator/iggy/0.5.0/iggy-0.5.0-incubating-src.tar.gz";,
+      
"https://www.apache.org/dyn/closer.lua/incubator/iggy/0.5.0/iggy-0.5.0-incubating-src.tar.gz";,
     asc: 
"https://downloads.apache.org/incubator/iggy/0.5.0/iggy-0.5.0-incubating-src.tar.gz.asc";,
     sha: 
"https://downloads.apache.org/incubator/iggy/0.5.0/iggy-0.5.0-incubating-src.tar.gz.sha512";,
     changelog: "/blogs/2025/08/10/release-0.5.0",
@@ -71,7 +71,7 @@ const releases = [
     latest: false,
     date: "2025-04-15",
     archive:
-      
"https://downloads.apache.org/incubator/iggy/0.4.300/iggy-0.4.300-incubating-src.tar.gz";,
+      
"https://www.apache.org/dyn/closer.lua/incubator/iggy/0.4.300/iggy-0.4.300-incubating-src.tar.gz";,
     asc: 
"https://downloads.apache.org/incubator/iggy/0.4.300/iggy-0.4.300-incubating-src.tar.gz.asc";,
     sha: 
"https://downloads.apache.org/incubator/iggy/0.4.300/iggy-0.4.300-incubating-src.tar.gz.sha512";,
     changelog: "https://github.com/apache/iggy/releases/tag/server-0.4.300";,
@@ -206,6 +206,17 @@ export default function DownloadsPage() {
             </Link>{" "}
             file contains all public keys used to sign Iggy releases.
           </li>
+          <li>
+            For background on why and how to check releases, see the ASF guide
+            to{" "}
+            <Link
+              href="https://www.apache.org/dyn/closer.cgi#verify";
+              className="text-fd-primary hover:underline"
+            >
+              verifying Apache downloads
+            </Link>
+            .
+          </li>
           <li>
             Because Iggy is still in the Apache Incubator, releases are{" "}
             <strong className="text-fd-foreground">incubating 
releases</strong>{" "}

Reply via email to