Skip to content

Commit c6f9f04

Browse files
bill-phclaude
andauthored
chore: bump bundled PostHog ducklake fork to v1.0-posthog.2 (#559)
Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 51beafc commit c6f9f04

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ ARG BUILD_TAGS=""
1212
ARG TARGETARCH
1313
ARG DUCKDB_EXTENSION_VERSION=1.5.2
1414
ARG HTTPFS_EXTENSION_TAG=v1.5.2-stoi-fix
15-
ARG DUCKLAKE_EXTENSION_TAG=v1.0-posthog.1
15+
ARG DUCKLAKE_EXTENSION_TAG=v1.0-posthog.2
1616
ARG DUCKDB_EXTENSION_REPOSITORY=https://extensions.duckdb.org
1717
ARG DUCKDB_NIGHTLY_EXTENSION_REPOSITORY=http://nightly-extensions.duckdb.org
1818
RUN CGO_ENABLED=1 go build -tags "${BUILD_TAGS}" -ldflags "-X main.version=${VERSION} -X main.commit=${COMMIT} -X main.date=$(date -u +%Y-%m-%dT%H:%M:%SZ)" -o duckgres .

Dockerfile.worker

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ RUN go mod download
5050

5151
ARG DUCKDB_EXTENSION_VERSION=1.5.2
5252
ARG HTTPFS_EXTENSION_TAG=v1.5.2-stoi-fix
53-
ARG DUCKLAKE_EXTENSION_TAG=v1.0-posthog.1
53+
ARG DUCKLAKE_EXTENSION_TAG=v1.0-posthog.2
5454
ARG DUCKDB_EXTENSION_REPOSITORY=https://extensions.duckdb.org
5555
ARG DUCKDB_NIGHTLY_EXTENSION_REPOSITORY=http://nightly-extensions.duckdb.org
5656

tests/k8s/k8s_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -189,11 +189,11 @@ func TestK8sSharedWarmWorkerActivation(t *testing.T) {
189189
}
190190

191191
// expectedDucklakeExtensionVersion is the short SHA of the commit
192-
// PostHog/ducklake's v1.0-posthog.1 tag points at. DuckDB's
192+
// PostHog/ducklake's v1.0-posthog.2 tag points at. DuckDB's
193193
// EXT_VERSION_DUCKLAKE macro embeds this string at build time and exposes
194194
// it via duckdb_extensions().extension_version. Bump this in lock-step
195195
// with DUCKLAKE_EXTENSION_TAG in Dockerfile / Dockerfile.worker.
196-
const expectedDucklakeExtensionVersion = "90dc1f24"
196+
const expectedDucklakeExtensionVersion = "4a9d2f00"
197197

198198
// TestK8sDucklakeExtensionIsBundledFork asserts the worker pods load the
199199
// PostHog ducklake fork bundled by Dockerfile.worker, not the upstream
@@ -212,7 +212,7 @@ func TestK8sDucklakeExtensionIsBundledFork(t *testing.T) {
212212
t.Fatalf("query ducklake extension_version: %v", err)
213213
}
214214
if version != expectedDucklakeExtensionVersion {
215-
t.Fatalf("ducklake extension_version = %q, want %q (PostHog fork v1.0-posthog.1). "+
215+
t.Fatalf("ducklake extension_version = %q, want %q (PostHog fork v1.0-posthog.2). "+
216216
"If the bundled fork was upgraded, update expectedDucklakeExtensionVersion alongside DUCKLAKE_EXTENSION_TAG.",
217217
version, expectedDucklakeExtensionVersion)
218218
}

0 commit comments

Comments
 (0)