From d905960c6f1a35d681581881cd36794c9f6a72bd Mon Sep 17 00:00:00 2001 From: Jakob Homan Date: Thu, 10 Sep 2026 16:30:24 -0700 Subject: [PATCH] build: restore ducklake extension URLs after repo rename-back MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The fork repo is being renamed hoglake -> ducklake (its original name). #1137 pointed the extension downloads at PostHog/hoglake when the repo was renamed away; this restores PostHog/ducklake before a NEW repo claims the hoglake name — repo creation severs GitHub's rename redirect, at which point these URLs would resolve to the new unrelated repo (404 on release assets) instead of the fork. Safe in every interim state: the ducklake->hoglake redirect from the original rename is still live (both linux-amd64 and linux-arm64 v1.0-posthog.7 assets verified fetchable through it today), and after the rename-back the URL is a direct hit. --- Dockerfile | 2 +- Dockerfile.worker | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 774f3a17..76d2631d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -54,7 +54,7 @@ RUN : "${DUCKDB_EXTENSION_VERSION:?must be set}" \ && mkdir -p "/build/duckdb-extensions/v${DUCKDB_EXTENSION_VERSION}/linux_${TARGETARCH}" \ && curl -fsSL "https://github.com/PostHog/duckdb-httpfs/releases/download/${HTTPFS_EXTENSION_TAG}/httpfs-linux-${TARGETARCH}.duckdb_extension" \ -o "/build/duckdb-extensions/v${DUCKDB_EXTENSION_VERSION}/linux_${TARGETARCH}/httpfs.duckdb_extension" \ - && curl -fsSL "https://github.com/PostHog/hoglake/releases/download/${DUCKLAKE_EXTENSION_TAG}/ducklake-linux-${TARGETARCH}.duckdb_extension" \ + && curl -fsSL "https://github.com/PostHog/ducklake/releases/download/${DUCKLAKE_EXTENSION_TAG}/ducklake-linux-${TARGETARCH}.duckdb_extension" \ -o "/build/duckdb-extensions/v${DUCKDB_EXTENSION_VERSION}/linux_${TARGETARCH}/ducklake.duckdb_extension" \ && curl -fsSL "${DUCKDB_EXTENSION_REPOSITORY}/v${DUCKDB_EXTENSION_VERSION}/linux_${TARGETARCH}/json.duckdb_extension.gz" \ | gunzip > "/build/duckdb-extensions/v${DUCKDB_EXTENSION_VERSION}/linux_${TARGETARCH}/json.duckdb_extension" \ diff --git a/Dockerfile.worker b/Dockerfile.worker index 93898356..2cb488ea 100644 --- a/Dockerfile.worker +++ b/Dockerfile.worker @@ -102,7 +102,7 @@ RUN : "${DUCKDB_EXTENSION_VERSION:?must be set}" \ && mkdir -p "/build/duckdb-extensions/v${DUCKDB_EXTENSION_VERSION}/linux_${TARGETARCH}" \ && curl -fsSL "https://github.com/PostHog/duckdb-httpfs/releases/download/${HTTPFS_EXTENSION_TAG}/httpfs-linux-${TARGETARCH}.duckdb_extension" \ -o "/build/duckdb-extensions/v${DUCKDB_EXTENSION_VERSION}/linux_${TARGETARCH}/httpfs.duckdb_extension" \ - && curl -fsSL "https://github.com/PostHog/hoglake/releases/download/${DUCKLAKE_EXTENSION_TAG}/ducklake-linux-${TARGETARCH}.duckdb_extension" \ + && curl -fsSL "https://github.com/PostHog/ducklake/releases/download/${DUCKLAKE_EXTENSION_TAG}/ducklake-linux-${TARGETARCH}.duckdb_extension" \ -o "/build/duckdb-extensions/v${DUCKDB_EXTENSION_VERSION}/linux_${TARGETARCH}/ducklake.duckdb_extension" \ && curl -fsSL "${DUCKDB_EXTENSION_REPOSITORY}/v${DUCKDB_EXTENSION_VERSION}/linux_${TARGETARCH}/json.duckdb_extension.gz" \ | gunzip > "/build/duckdb-extensions/v${DUCKDB_EXTENSION_VERSION}/linux_${TARGETARCH}/json.duckdb_extension" \