Update to Next.js 16.1

This commit is contained in:
Konstantin Wohlwend 2025-12-26 16:40:30 +01:00
parent 1433a89453
commit 9f96b23bf2
4 changed files with 1401 additions and 1168 deletions

View File

@ -12,7 +12,7 @@
"build": "pnpm run codegen && next build",
"docker-build": "pnpm run codegen && next build --experimental-build-mode compile",
"build-self-host-migration-script": "tsup --config scripts/db-migrations.tsup.config.ts",
"analyze-bundle": "ANALYZE_BUNDLE=1 pnpm run build",
"analyze-bundle": "next experimental-analyze",
"start": "next start --port ${NEXT_PUBLIC_STACK_PORT_PREFIX:-81}02",
"codegen-prisma": "pnpm run prisma generate",
"codegen-prisma:watch": "pnpm run prisma generate --watch",
@ -45,7 +45,6 @@
"dependencies": {
"@ai-sdk/openai": "^1.3.23",
"@aws-sdk/client-s3": "^3.855.0",
"@next/bundle-analyzer": "16.0.10",
"@node-oauth/oauth2-server": "^5.1.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/api-logs": "^0.53.0",
@ -79,7 +78,7 @@
"freestyle-sandboxes": "^0.0.92",
"jose": "^5.2.2",
"json-diff": "^1.0.6",
"next": "16.0.10",
"next": "16.1.1",
"nodemailer": "^6.9.10",
"oidc-provider": "^8.5.1",
"openid-client": "5.6.4",

View File

@ -10,7 +10,7 @@
"dev": "next dev --turbopack --port ${NEXT_PUBLIC_STACK_PORT_PREFIX:-81}01",
"build": "next build",
"docker-build": "next build --experimental-build-mode compile",
"analyze-bundle": "next experimental-analyze --serve",
"analyze-bundle": "next experimental-analyze",
"start": "next start --port ${NEXT_PUBLIC_STACK_PORT_PREFIX:-81}01",
"psql": "pnpm run with-env bash -c 'psql $STACK_DATABASE_CONNECTION_STRING'",
"lint": "eslint ."
@ -78,11 +78,11 @@
"input-otp": "^1.4.1",
"jose": "^5.2.2",
"lodash": "^4.17.21",
"next": "16.0.9",
"next": "16.1.1",
"next-themes": "^0.2.1",
"posthog-js": "^1.235.0",
"react": "19.2.1",
"react-dom": "19.2.1",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-globe.gl": "^2.28.2",
"react-day-picker": "^9.6.7",
"react-hook-form": "^7.53.1",
@ -104,8 +104,8 @@
"@types/canvas-confetti": "^1.6.4",
"@types/lodash": "^4.17.5",
"@types/node": "20.17.6",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/three": "^0.169.0",
"autoprefixer": "^10.4.17",
@ -119,8 +119,8 @@
},
"pnpm": {
"overrides": {
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2"
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
},
"packageManager": "pnpm@10.23.0"

File diff suppressed because it is too large Load Diff

View File

@ -5,9 +5,3 @@ packages:
- docs
minimumReleaseAge: 2880
minimumReleaseAgeExclude:
- next
- "@next/env"
- react
- react-dom
- "@next/*"