From d2d14d4b889c9a657b3769080f25659db2572dcd Mon Sep 17 00:00:00 2001 From: Nicolas Hrubec Date: Thu, 7 May 2026 12:31:02 +0200 Subject: [PATCH 1/2] fix(e2e): Pin astro version in astro-6 test app Astro 6.3.0 removed `getAdapterLogger()` from `BaseApp`, breaking compatibility with `@astrojs/node@10.0.6` which still calls it. Co-Authored-By: Claude Opus 4.6 (1M context) --- dev-packages/e2e-tests/test-applications/astro-6/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-packages/e2e-tests/test-applications/astro-6/package.json b/dev-packages/e2e-tests/test-applications/astro-6/package.json index 37f61a774e32..b3567c42c931 100644 --- a/dev-packages/e2e-tests/test-applications/astro-6/package.json +++ b/dev-packages/e2e-tests/test-applications/astro-6/package.json @@ -16,7 +16,7 @@ "@playwright/test": "~1.56.0", "@sentry-internal/test-utils": "link:../../../test-utils", "@sentry/astro": "file:../../packed/sentry-astro-packed.tgz", - "astro": "^6.0.6" + "astro": "6.0.6" }, "volta": { "node": "22.22.0", From 9d7d9df7156606daedd7f48a9b263ede29eac2dc Mon Sep 17 00:00:00 2001 From: Nicolas Hrubec Date: Thu, 7 May 2026 12:47:25 +0200 Subject: [PATCH 2/2] fix(e2e): Pin astro to ~6.2.0 in astro-6 test app `@astrojs/node@10.0.6` requires `getAbortControllerCleanup` (exported since astro ~6.2.0) and `getAdapterLogger()` (removed in astro 6.3.0). Pin to ~6.2.x to satisfy both constraints. Co-Authored-By: Claude Opus 4.6 (1M context) --- dev-packages/e2e-tests/test-applications/astro-6/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-packages/e2e-tests/test-applications/astro-6/package.json b/dev-packages/e2e-tests/test-applications/astro-6/package.json index b3567c42c931..71a3182f4b7c 100644 --- a/dev-packages/e2e-tests/test-applications/astro-6/package.json +++ b/dev-packages/e2e-tests/test-applications/astro-6/package.json @@ -16,7 +16,7 @@ "@playwright/test": "~1.56.0", "@sentry-internal/test-utils": "link:../../../test-utils", "@sentry/astro": "file:../../packed/sentry-astro-packed.tgz", - "astro": "6.0.6" + "astro": "~6.2.0" }, "volta": { "node": "22.22.0",