From fd03314a83ed811740731edbb6d0ae7f6a36768e Mon Sep 17 00:00:00 2001 From: Charly Gomez Date: Fri, 7 Aug 2026 14:28:28 +0200 Subject: [PATCH] test(e2e): Raise TanStack version floor in tanstackstart-react-cloudflare The Cloudflare TanStack Start e2e app declared `@tanstack/react-start` and `@tanstack/react-router` as `^1.136.0`. A broken upstream publish (`start-plugin-core@1.171.30` depending on the then-unpublished `router-generator@1.167.25`) made `pnpm install` fail, so the app never built and the job failed before running a single test. Raise the floor to the versions the sibling `tanstackstart-react` app was pinned to in #23046, which resolve a fully published dependency tree. Co-Authored-By: Claude Opus 5 (1M context) --- .../tanstackstart-react-cloudflare/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-packages/e2e-tests/test-applications/tanstackstart-react-cloudflare/package.json b/dev-packages/e2e-tests/test-applications/tanstackstart-react-cloudflare/package.json index c817bd699838..8a00c99add8b 100644 --- a/dev-packages/e2e-tests/test-applications/tanstackstart-react-cloudflare/package.json +++ b/dev-packages/e2e-tests/test-applications/tanstackstart-react-cloudflare/package.json @@ -16,8 +16,8 @@ "@sentry/browser": "file:../../packed/sentry-browser-packed.tgz", "@sentry/cloudflare": "file:../../packed/sentry-cloudflare-packed.tgz", "@sentry/tanstackstart-react": "file:../../packed/sentry-tanstackstart-react-packed.tgz", - "@tanstack/react-start": "^1.136.0", - "@tanstack/react-router": "^1.136.0", + "@tanstack/react-start": "^1.168.35", + "@tanstack/react-router": "^1.170.18", "react": "^19.2.0", "react-dom": "^19.2.0" },