From c4eea4080addc1fb7a54ce46fb9722b566359cdf Mon Sep 17 00:00:00 2001 From: Nicolas Hrubec Date: Wed, 5 Aug 2026 10:46:41 +0200 Subject: [PATCH] test(e2e): Pin tanstackstart-react e2e deps to unblock tunnel tests A floating upstream `@tanstack/react-start`/`@tanstack/react-router` release (the app used caret ranges with no committed lockfile) broke the tanstackstart-react tunnel-route e2e variants on develop: the tunnel POST returns 500 with an `AbortError` from the server runtime while reading the request body. Pin both packages to the second-to-last published version (`1.168.35` / `1.170.18`), which predates the regression, so CI resolves a known-good baseline. Co-Authored-By: Claude Opus 4.8 (1M context) --- .../test-applications/tanstackstart-react/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-packages/e2e-tests/test-applications/tanstackstart-react/package.json b/dev-packages/e2e-tests/test-applications/tanstackstart-react/package.json index 008fd3a57814..91302af4b25b 100644 --- a/dev-packages/e2e-tests/test-applications/tanstackstart-react/package.json +++ b/dev-packages/e2e-tests/test-applications/tanstackstart-react/package.json @@ -25,8 +25,8 @@ "//": "Need to use ioredis 5.10.1 because that's the last version before they support tracing channels", "dependencies": { "@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", "nitro": "latest || *",