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
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.

P2 next range changed from ^16.2.3 to ^15.5.18

The previous range ^16.2.3 referenced a Next.js version that does not appear to exist, so this is likely a correction. The change is safe, but worth confirming intentionally: the app will now resolve to 15.x rather than any hypothetical 16.x release. If the intent was to track a future major, the team should be aware the range now pins to 15.

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

Comment:
**`next` range changed from `^16.2.3` to `^15.5.18`**

The previous range `^16.2.3` referenced a Next.js version that does not appear to exist, so this is likely a correction. The change is safe, but worth confirming intentionally: the app will now resolve to 15.x rather than any hypothetical 16.x release. If the intent was to track a future major, the team should be aware the range now pins to 15.

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 @@ -34,7 +34,7 @@
"rimraf": "6.0.1",
"ts-jest": "29.1.1",
"tsup": "8.1.0",
"turbo": "2.2.3",
"turbo": "2.9.14",
"typescript": "5.5.3",
"vitest": "1.6.1",
"vitest-mock-extended": "2.0.2"
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 9→14: multiple breaking changes require verification

This is a 5-major-version jump. Three breaking changes could affect this package at runtime:

  • CommonJS removed (v12): if any consumer imports uuid via require() or if bundler config emits CJS, imports will fail.
  • Node 20+ required (v14): crypto must be globally available; Node 18 environments will throw at runtime.
  • Browser exports now default (v13): the resolution strategy changed, which may silently affect SSR paths.

Please verify that all deployment environments are on Node 20+, that no CJS consumers of this package rely on require('uuid'), and that SSR usage still resolves correctly after the export-map change.

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

Comment:
**uuid 9→14: multiple breaking changes require verification**

This is a 5-major-version jump. Three breaking changes could affect this package at runtime:

- **CommonJS removed** (v12): if any consumer imports `uuid` via `require()` or if bundler config emits CJS, imports will fail.
- **Node 20+ required** (v14): `crypto` must be globally available; Node 18 environments will throw at runtime.
- **Browser exports now default** (v13): the resolution strategy changed, which may silently affect SSR paths.

Please verify that all deployment environments are on Node 20+, that no CJS consumers of this package rely on `require('uuid')`, and that SSR usage still resolves correctly after the export-map change.

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