-
Notifications
You must be signed in to change notification settings - Fork 413
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
params.auth0, cookies().getAll(), and cookies().set('appSession', ...).
cookies() should be awaited errors - Next 15.0.2
#1802
Comments
The same issue arises when using any of the other functions that use A fix should be relatively simple using the specific codemod provided by NextJS |
Many discussions have been made over at #1779 TLDR; NextJS 15 IS NOT SUPPORTED until v4 is released. V4 is effectively a rewrite and has many breaking changes, but is in beta. So id recommend using the beta if you want to use Next 15, or waiting for the official release whenever that happens |
Thanks for reporting this issue. These errors are related to Next.js 15's new requirement for async handling of cookies and headers, which is a breaking change. As noted in our announcement, Next.js 15 compatibility is only available in our v4 beta release. Closing this issue as it's being tracked as part of the broader Next.js 15 compatibility work. For v4 beta specific issues, please open new issues and tag them accordingly. |
Thank you for the information! I appreciate the feedback! |
➜ ➜ This addresses two major changes to the authentication system: ➜ ➜ 1. Migrates the auth system from custom JWT implementation to NextAuth ➜ - Replace JWT token verification with NextAuth session handling ➜ - Update API routes to use NextAuth authentication helpers ➜ - Add proper session management with NextAuth ➜ - Implement auth helpers (requireAuth, requireAdmin) using NextAuth ➜ ➜ 2. Downgrade to Next.js 14 to resolve NextAuth compatibility issues ➜ - Downgrade Next.js from 15.1.4 to 14.1.0 in package.json ➜ - Convert next.config.ts to next.config.js (TS configs not supported in Next.js 14) ➜ - Replace Geist font with Inter (Geist not available in Next.js 14) ➜ - Remove `await cookies()` ➜ and header() calls in auth.ts ➜ - Update routes to use synchronous cookies/headers access ➜ ➜ The downgrade was necessary because NextAuth's internal implementation doesn't await cookies/headers ➜ and Next.js 15 makes a breaking change that requires cookies/headers to be awaited, see here: ➜ auth0/nextjs-auth0#1802 ➜ ➜
Checklist
Description
When using the getSession function imported from auth0/nextjs-auth0, I get a few errors in the console when the app compiles.
Specifically these 3:
cookies().getAll()
.cookies()
should be awaited before using its value. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apiscookies().set('appSession', ...)
.cookies()
should be awaited before using its value. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apisparams.auth0
.params
should be awaited before using its properties. Learn more: https://nextjs.org/docs/messages/sync-dynamic-apisAll three errors appear to be coming from here:
at get (file:///Users/brianstern/code/ai-companion-next/node_modules/next/src/server/base-server.ts:3121:48)
Reproduction
Additional context
No response
nextjs-auth0 version
3.5.0
Next.js version
15.0.2
Node.js version
22.8.0
The text was updated successfully, but these errors were encountered: