Skip to content
Closed
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/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"fumadocs-mdx": "11.10.1",
"fumadocs-ui": "15.8.2",
"lucide-react": "^0.511.0",
"next": "15.4.1",
"next": "15.4.8",
"next-themes": "^0.4.6",
"react": "19.1.0",
"react-dom": "19.1.0",
Expand Down
6 changes: 3 additions & 3 deletions apps/sim/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
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.

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:

  • Session handling changes (session shouldn't be required in OIDC provider)
  • Email-OTP capitalization handling fixes
  • Database schema changes requiring migration

Check: Run better-auth migrate and verify session/auth functionality still works as expected, especially for OIDC and email-OTP flows.

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

Comment:
**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:
- Session handling changes (session shouldn't be required in OIDC provider)
- Email-OTP capitalization handling fixes
- Database schema changes requiring migration

Check: Run `better-auth migrate` and verify session/auth functionality still works as expected, especially for OIDC and email-OTP flows.

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

"browser-image-compression": "^2.0.2",
"chalk": "5.6.2",
"cheerio": "1.1.2",
Expand All @@ -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",
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.

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)
Prompt To Fix With AI
This 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",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
},
"dependencies": {
"@linear/sdk": "40.0.0",
"@modelcontextprotocol/sdk": "1.20.2",
"@modelcontextprotocol/sdk": "1.24.0",
"@t3-oss/env-nextjs": "0.13.4",
"@tanstack/react-query": "5.90.8",
"@tanstack/react-query-devtools": "5.90.2",
Expand Down
Loading
Loading