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.3.9"
"next": "15.5.15"
},
"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.3.9",
"next": "15.5.15",
"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.3.9",
"next": "15.5.15",
"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.15",
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 major-version downgrade

This file previously pinned "next": "^16.2.3" and is being changed to "^15.5.15" — a regression across a major version boundary. Dependabot is grouping this under the "15.x patch" updates affecting other apps, but those apps were already on 15.x. If apps/wallets/react intentionally adopted Next.js 16, reverting to ^15 could remove features or APIs the app depends on. Please confirm this downgrade is intentional before merging.

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 major-version downgrade**

This file previously pinned `"next": "^16.2.3"` and is being changed to `"^15.5.15"` — a regression across a major version boundary. Dependabot is grouping this under the "15.x patch" updates affecting other apps, but those apps were already on `15.x`. If `apps/wallets/react` intentionally adopted Next.js 16, reverting to `^15` could remove features or APIs the app depends on. Please confirm this downgrade is intentional before merging.

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.

P1 uuid v14 carries multiple breaking changes from v9

The jump from 9.0.114.0.0 accumulates several breaking changes across intermediate majors:

  • v12: CommonJS (require('uuid')) support was removed — only ESM is supported.
  • v13: browser exports become the default export condition, which can shift how bundlers resolve the package.
  • v14: crypto must now be globally available, requiring Node 20+; Node 18 is no longer supported.

If this package (or any package that re-exports it) is consumed in a CommonJS context or in an environment running Node 18, it will fail at runtime. Please verify the execution environments and import style before merging.

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

Comment:
**uuid v14 carries multiple breaking changes from v9**

The jump from `9.0.1``14.0.0` accumulates several breaking changes across intermediate majors:

- **v12**: CommonJS (`require('uuid')`) support was removed — only ESM is supported.
- **v13**: browser exports become the default export condition, which can shift how bundlers resolve the package.
- **v14**: `crypto` must now be globally available, requiring **Node 20+**; Node 18 is no longer supported.

If this package (or any package that re-exports it) is consumed in a CommonJS context or in an environment running Node 18, it will fail at runtime. Please verify the execution environments and import style before merging.

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