-
Notifications
You must be signed in to change notification settings - Fork 3.5k
build(deps): bump the npm_and_yarn group across 4 directories with 5 updates #2172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -69,7 +69,7 @@ | |
| "@react-email/render": "2.0.0", | ||
| "@trigger.dev/sdk": "4.0.4", | ||
| "@types/three": "0.177.0", | ||
| "better-auth": "1.3.12", | ||
| "better-auth": "1.4.2", | ||
| "browser-image-compression": "^2.0.2", | ||
| "chalk": "5.6.2", | ||
| "cheerio": "1.1.2", | ||
|
|
@@ -90,15 +90,15 @@ | |
| "ioredis": "^5.6.0", | ||
| "jose": "6.0.11", | ||
| "js-tiktoken": "1.0.21", | ||
| "js-yaml": "4.1.0", | ||
| "js-yaml": "4.1.1", | ||
| "jszip": "3.10.1", | ||
| "jwt-decode": "^4.0.0", | ||
| "lodash": "4.17.21", | ||
| "lucide-react": "^0.479.0", | ||
| "mammoth": "^1.9.0", | ||
| "mysql2": "3.14.3", | ||
| "nanoid": "^3.3.7", | ||
| "next": "^15.4.1", | ||
| "next": "^16.0.7", | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. logic: Next.js 16.0.7 conflicts with workspace override The root Impact: The application will run on Next.js 15.4.1 instead of 16.0.7, potentially causing runtime issues if the code uses Next.js 16 features. Resolution: Either:
Prompt To Fix With AIThis is a comment left during a code review.
Path: apps/sim/package.json
Line: 101:101
Comment:
**logic:** Next.js 16.0.7 conflicts with workspace override
The root `package.json` overrides section locks Next.js to `15.4.1`, but this package now requests `^16.0.7` (a major version bump). This creates a version conflict where the override will force 15.4.1 to be installed despite the 16.x requirement.
**Impact**: The application will run on Next.js 15.4.1 instead of 16.0.7, potentially causing runtime issues if the code uses Next.js 16 features.
**Resolution**: Either:
1. Update the root `package.json` overrides to allow Next.js 16.x, OR
2. Revert this change to stay on Next.js 15.4.8 (which includes the security fix)
How can I resolve this? If you propose a fix, please make it concise. |
||
| "next-mdx-remote": "^5.0.0", | ||
| "next-runtime-env": "3.3.0", | ||
| "next-themes": "^0.4.6", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
logic: Check database migration for better-auth 1.4.x
better-auth upgrade from 1.3.12 to 1.4.2 includes changes per the release notes:
Check: Run
better-auth migrateand verify session/auth functionality still works as expected, especially for OIDC and email-OTP flows.Prompt To Fix With AI