Skip to content

Commit e9be68d

Browse files
authored
fix(repo): Use ~ instead of ^ for react peers (#7512)
1 parent 323e66d commit e9be68d

File tree

2 files changed

+15
-2
lines changed

2 files changed

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

pnpm-workspace.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ packages:
33

44
catalogs:
55
peer-react:
6-
react: ^18.0.0 || ^19.0.3 || ^19.1.4 || ^19.2.3 || ^19.3.0-0
7-
react-dom: ^18.0.0 || ^19.0.3 || ^19.1.4 || ^19.2.3 || ^19.3.0-0
6+
react: ^18.0.0 || ~19.0.3 || ~19.1.4 || ~19.2.3 || ~19.3.0-0
7+
react-dom: ^18.0.0 || ~19.0.3 || ~19.1.4 || ~19.2.3 || ~19.3.0-0
88
react:
99
'@types/react': 18.3.26
1010
'@types/react-dom': 18.3.7

0 commit comments

Comments
 (0)