Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion apps/auth/nextjs-ssr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"@crossmint/server-sdk": "workspace:*",
"react": "^18",
"react-dom": "^18",
"next": "15.5.15"
"next": "15.5.18"
},
"devDependencies": {
"typescript": "^5",
Expand Down
4 changes: 2 additions & 2 deletions apps/auth/remix-ssr/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.38",
"postcss": "^8.5.10",
"tailwindcss": "^3.4.4",
"typescript": "^5.1.6",
"vite": "^5.1.0",
"vite": "^6.4.2",
"vite-tsconfig-paths": "^4.2.1"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion apps/payments/nextjs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"@dynamic-labs/ethereum": "4.8.3",
"@dynamic-labs/sdk-react-core": "4.8.3",
"@dynamic-labs/solana": "4.8.3",
"next": "15.5.15",
"next": "15.5.18",
"react": "18.3.1",
"react-dom": "18.3.1"
},
Expand Down
2 changes: 1 addition & 1 deletion apps/wallets/quickstart-devkit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"clsx": "2.1.1",
"firebase": "^10.3.1",
"firebaseui": "6.1.0",
"next": "15.5.15",
"next": "15.5.18",
"react": "^18",
"react-dom": "^18",
"tailwind-merge": "2.4.0",
Expand Down
2 changes: 1 addition & 1 deletion apps/wallets/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"react-native-web": "~0.21.2",
"@solana/web3.js": "1.98.1",
"@stellar/stellar-sdk": "^14.6.1",
"next": "^16.2.3",
"next": "^15.5.18",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

P1 Next.js version downgraded, not upgraded

This file previously pinned "next": "^16.2.3" and the change lowers it to ^15.5.18. Every other app in the repo moves from 15.5.15 → 15.5.18, but this one moves backward from a 16.x range. If the application was already running (or testing against) Next.js 16, reverting to 15.x could reintroduce bugs or remove features that were being relied upon.

Prompt To Fix With AI
This is a comment left during a code review.
Path: apps/wallets/react/package.json
Line: 16

Comment:
**Next.js version downgraded, not upgraded**

This file previously pinned `"next": "^16.2.3"` and the change lowers it to `^15.5.18`. Every other app in the repo moves from 15.5.15 → 15.5.18, but this one moves backward from a 16.x range. If the application was already running (or testing against) Next.js 16, reverting to 15.x could reintroduce bugs or remove features that were being relied upon.

How can I resolve this? If you propose a fix, please make it concise.

"react": "^19.0.0",
"react-dom": "^19.0.0",
"viem": "^2.33.1"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"jest": "29.6.4",
"rimraf": "6.0.1",
"ts-jest": "29.1.1",
"tsup": "8.1.0",
"tsup": "8.3.5",
"turbo": "2.2.3",
"typescript": "5.5.3",
"vitest": "1.6.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/client/base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"@crossmint/common-sdk-base": "workspace:*",
"@datadog/browser-logs": "6.24.1",
"exponential-backoff": "3.1.1",
"uuid": "9.0.1",
"uuid": "14.0.0",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

P2 uuid 14 drops Node 18 support and requires global crypto

uuid@14 dropped Node 18 support and now expects crypto to be globally available (Node 20+). Since @crossmint/client-sdk-base is a published SDK consumed by server-side environments, any consumer still on Node 18 will receive a runtime error when uuid attempts to access the global crypto object. Consider verifying the minimum Node version enforced across consumer environments before shipping this.

Prompt To Fix With AI
This is a comment left during a code review.
Path: packages/client/base/package.json
Line: 27

Comment:
**uuid 14 drops Node 18 support and requires global `crypto`**

`uuid@14` dropped Node 18 support and now expects `crypto` to be globally available (Node 20+). Since `@crossmint/client-sdk-base` is a published SDK consumed by server-side environments, any consumer still on Node 18 will receive a runtime error when uuid attempts to access the global `crypto` object. Consider verifying the minimum Node version enforced across consumer environments before shipping this.

How can I resolve this? If you propose a fix, please make it concise.

"zod": "3.22.4"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/client/wallets/walletconnect/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"autoprefixer": "10.4.17",
"postcss": "8.4.35",
"postcss": "8.5.10",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"tailwindcss": "3.4.1"
Expand Down
Loading
Loading