Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
1c717f5
chore(tanstack-react-start): Init RC update
wobsoriano Sep 25, 2025
443e7ce
chore: introduce middleware
wobsoriano Sep 26, 2025
c0342c5
chore: Use global context for auth fn
wobsoriano Sep 26, 2025
3f9b230
chore: export new middleware
wobsoriano Sep 26, 2025
793acc5
chore: remove context
wobsoriano Sep 26, 2025
4f4ee08
chore: add missing middleware error message
wobsoriano Sep 26, 2025
14a31e3
chore: export middleware type
wobsoriano Sep 26, 2025
5c42683
chore: Update ClerkProvider to use new context state
wobsoriano Sep 26, 2025
a0f5987
chore: remove unused returned properties
wobsoriano Sep 26, 2025
02a3269
chore: add placeholder changeset
wobsoriano Sep 26, 2025
c938089
chore: remove unused function
wobsoriano Sep 26, 2025
41fe920
chore: remove unused function
wobsoriano Sep 26, 2025
951cc06
feat(repo): Enable sessions staging e2e runs (#6855)
nikosdouvlis Sep 26, 2025
1b772e6
feat(shared): Improve error handling for clerk-js loading (#6856)
brkalow Sep 26, 2025
d55720c
feat(shared): Capture auth component mounted for all SDK types (#6858)
heatlikeheatwave Sep 26, 2025
bf496bc
feat(react-router): Introduce middleware and context (#6660)
wobsoriano Sep 26, 2025
f77df91
chore(repo): Update pnpm to v10.17.1 (#6847)
renovate[bot] Sep 26, 2025
900ac85
ci(repo): Version packages (#6844)
clerk-cookie Sep 27, 2025
01ec8ee
dedupe
wobsoriano Sep 27, 2025
456c86c
Merge main into rob/tanstack-rc, accepting main's version for conflicts
wobsoriano Oct 3, 2025
86cb369
chore: update tests
wobsoriano Oct 5, 2025
d8a96ab
chore: edit changeset
wobsoriano Oct 5, 2025
2de4a2c
Merge branch 'main' into rob/tanstack-rc
wobsoriano Oct 5, 2025
5427d6e
chore: remove unused file
wobsoriano Oct 5, 2025
da42e5a
chore: set test version to 7 days ago
wobsoriano Oct 5, 2025
33b064b
skip tanstack router test
wobsoriano Oct 5, 2025
52459e0
skip tanstack router test
wobsoriano Oct 5, 2025
80a3018
skip tanstack router test
wobsoriano Oct 5, 2025
ec71828
chore: skip tanstack router test
wobsoriano Oct 5, 2025
5848fa5
chore: bump integration tanstack versions
wobsoriano Oct 5, 2025
8ef7ac6
revert
wobsoriano Oct 5, 2025
525dd91
fix integration router
wobsoriano Oct 5, 2025
2c5f793
Merge branch 'main' into rob/tanstack-rc
wobsoriano Oct 6, 2025
a612233
Merge branch 'main' into rob/tanstack-rc
wobsoriano Oct 7, 2025
cc8e86d
Merge branch 'main' into rob/tanstack-rc
wobsoriano Oct 7, 2025
40cf986
chore: Use shared type helper
wobsoriano Oct 7, 2025
b971abc
chore: fix middleware missing message
wobsoriano Oct 7, 2025
b19fa85
chore: update integration deps
wobsoriano Oct 7, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions packages/tanstack-react-start/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,13 +76,13 @@
"tslib": "catalog:repo"
},
"devDependencies": {
"@tanstack/react-router": "1.131.49",
"@tanstack/react-start": "1.131.49",
"@tanstack/react-router": "1.132.0",
"@tanstack/react-start": "1.132.0",
"esbuild-plugin-file-path-extensions": "^2.1.4"
},
"peerDependencies": {
"@tanstack/react-router": "^1.131.0 <1.132.0",
"@tanstack/react-start": "^1.131.0 <1.132.0",
"@tanstack/react-router": "^1.132.0",
"@tanstack/react-start": "^1.132.0",
Comment on lines +84 to +85
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

Raising the peer dependency floor is a breaking change

Moving the peer requirements to ^1.132.0 drops support for every app still on 1.131.x, which our previous range accepted. That’s effectively a breaking change for consumers, so we either need to widen the range (e.g. >=1.131.49 <2) if compatibility remains, or else communicate the break via an appropriate version bump/release note before shipping.

🤖 Prompt for AI Agents
In packages/tanstack-react-start/package.json around lines 84-85, the peer
dependency bump to "^1.132.0" is a breaking change for consumers still on
1.131.x; either relax the range back to a compatible span (for example
">=1.131.49 <2" or another range that includes 1.131.x) to preserve backward
compatibility, or keep the raised floor but mark this as a breaking change by
preparing a major version bump and adding a clear release note/CHANGELOG entry
explaining the incompatibility before shipping.

"react": "catalog:peer-react",
"react-dom": "catalog:peer-react"
},
Expand Down
Empty file.
Loading
Loading