Skip to content

Commit 03dd374

Browse files
authored
fix(repo): Use ~ instead of ^ for react peers (#7512) (#7513)
1 parent 7c7713f commit 03dd374

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
'@clerk/chrome-extension': patch
3+
'@clerk/clerk-expo': patch
4+
'@clerk/expo-passkeys': patch
5+
'@clerk/nextjs': patch
6+
'@clerk/clerk-react': patch
7+
'@clerk/react-router': patch
8+
'@clerk/shared': patch
9+
'@clerk/tanstack-react-start': patch
10+
---
11+
12+
Fix React peer dependency version ranges to use `~` instead of `^` for React 19 versions, ensuring non-overlapping version constraints.

pnpm-lock.yaml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ catalogs:
1515

1616
# Can be referenced through "catalog:peer-react"
1717
peer-react:
18-
react: ^18.0.0 || ^19.0.0 || ^19.0.0-0
19-
react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-0
18+
react: ^18.0.0 || ~19.0.3 || ~19.1.4 || ~19.2.3 || ~19.3.0-0
19+
react-dom: ^18.0.0 || ~19.0.3 || ~19.1.4 || ~19.2.3 || ~19.3.0-0
2020

2121
# Can be referenced through "catalog:repo"
2222
repo:

0 commit comments

Comments
 (0)