You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: V4_MIGRATION_GUIDE.md
+10-10
Original file line number
Diff line number
Diff line change
@@ -48,14 +48,14 @@ export async function middleware(request: NextRequest) {
48
48
}
49
49
```
50
50
51
-
For a complete example, see [the Getting Started section](https://github.com/auth0/nextjs-auth0/tree/v4?tab=readme-ov-file#getting-started).
51
+
For a complete example, see [the Getting Started section](https://github.com/auth0/nextjs-auth0/tree/main?tab=readme-ov-file#getting-started).
52
52
53
53
Additionally, in v4, the mounted routes drop the `/api` prefix. For example, the default login route is now `/auth/login` instead of `/api/auth/login`. To link to the login route, it would now be: `<a href="/auth/login">Log in</a>`.
54
54
55
55
> [!NOTE]
56
56
> If you are using an existing client, you will need to update your **Allowed Callback URLs** accordingly.
57
57
58
-
The complete list of routes mounted by the SDK can be found [here](https://github.com/auth0/nextjs-auth0/tree/v4?tab=readme-ov-file#routes).
58
+
The complete list of routes mounted by the SDK can be found [here](https://github.com/auth0/nextjs-auth0/tree/main?tab=readme-ov-file#routes).
59
59
60
60
## Auth0 middleware
61
61
@@ -87,7 +87,7 @@ export const config = {
87
87
}
88
88
```
89
89
90
-
See [the Getting Started section](https://github.com/auth0/nextjs-auth0/tree/v4?tab=readme-ov-file#getting-started) for details on how to configure the middleware.
90
+
See [the Getting Started section](https://github.com/auth0/nextjs-auth0/tree/main?tab=readme-ov-file#getting-started) for details on how to configure the middleware.
91
91
92
92
### Protecting routes
93
93
@@ -123,13 +123,13 @@ The `<UserProvider />` has been renamed to `<Auth0Provider />`.
123
123
124
124
Previously, when setting up your application to use v3 of the SDK, it was required to wrap your layout in the `<UserProvider />`. **This is no longer required by default.**
125
125
126
-
If you would like to pass an initial user during server rendering to be available to the `useUser()` hook, you can wrap your components with the new `<Auth0Provider />` ([see example](https://github.com/auth0/nextjs-auth0/tree/v4?tab=readme-ov-file#auth0provider-)).
126
+
If you would like to pass an initial user during server rendering to be available to the `useUser()` hook, you can wrap your components with the new `<Auth0Provider />` ([see example](https://github.com/auth0/nextjs-auth0/tree/main?tab=readme-ov-file#auth0provider-)).
127
127
128
128
## Rolling sessions
129
129
130
130
In v4, rolling sessions are enabled by default and are handled automatically by the middleware with no additional configuration required.
131
131
132
-
See the [session configuration section](https://github.com/auth0/nextjs-auth0/tree/v4?tab=readme-ov-file#session-configuration) for additional details on how to configure it.
132
+
See the [session configuration section](https://github.com/auth0/nextjs-auth0/tree/main?tab=readme-ov-file#session-configuration) for additional details on how to configure it.
133
133
134
134
## `withPageAuthRequired` and `withApiAuthRequired`
135
135
@@ -155,7 +155,7 @@ The `getSession()` method can be used in the App Router in Server Components, Se
155
155
156
156
In the Pages Router, the `getSession(req)` method takes a request object and can be used in `getServerSideProps`, API routes, and middleware.
157
157
158
-
Read more about [accessing the authenticated user here](https://github.com/guabu/nextjs-auth0/tree/v4?tab=readme-ov-file#accessing-the-authenticated-user).
158
+
Read more about [accessing the authenticated user here](https://github.com/guabu/nextjs-auth0/tree/main?tab=readme-ov-file#accessing-the-authenticated-user).
159
159
160
160
In the browser, you can rely on the `useUser()` hook to check if the user is authenticated. For example:
161
161
@@ -212,7 +212,7 @@ export const auth0 = new Auth0Client({
212
212
})
213
213
```
214
214
215
-
Read more about [passing authorization parameters](https://github.com/auth0/nextjs-auth0/tree/v4?tab=readme-ov-file#passing-authorization-parameters).
215
+
Read more about [passing authorization parameters](https://github.com/auth0/nextjs-auth0/tree/main?tab=readme-ov-file#passing-authorization-parameters).
216
216
217
217
## ID token claims
218
218
@@ -230,15 +230,15 @@ In v4, by default, the only claims that are persisted in the `user` object of se
230
230
-`email_verified`
231
231
-`org_id`
232
232
233
-
If you'd like to customize the `user` object to include additional custom claims from the ID token, you can use the `beforeSessionSaved` hook (see [beforeSessionSaved hook](https://github.com/guabu/nextjs-auth0/tree/v4?tab=readme-ov-file#beforesessionsaved))
233
+
If you'd like to customize the `user` object to include additional custom claims from the ID token, you can use the `beforeSessionSaved` hook (see [beforeSessionSaved hook](https://github.com/guabu/nextjs-auth0/tree/main?tab=readme-ov-file#beforesessionsaved))
234
234
235
235
## Additional changes
236
236
237
237
- By default, v4 is edge-compatible and as such there is no longer a `@auth0/nextjs-auth0/edge` export.
238
238
- Cookie chunking has been removed
239
239
- If the cookie size exceeds the browser limit of 4096 bytes, a warning will be logged
240
-
- To store large session data, please use a [custom data store](https://github.com/auth0/nextjs-auth0/tree/v4?tab=readme-ov-file#database-sessions) with a SessionStore implementation
240
+
- To store large session data, please use a [custom data store](https://github.com/auth0/nextjs-auth0/tree/main?tab=readme-ov-file#database-sessions) with a SessionStore implementation
241
241
- All cookies set by the SDK default to `SameSite=Lax`
242
-
-`touchSession` method was removed. The middleware enables rolling sessions by default and can be configured via the [session configuration](https://github.com/auth0/nextjs-auth0/tree/v4?tab=readme-ov-file#session-configuration).
242
+
-`touchSession` method was removed. The middleware enables rolling sessions by default and can be configured via the [session configuration](https://github.com/auth0/nextjs-auth0/tree/main?tab=readme-ov-file#session-configuration).
243
243
-`getAccessToken` can now be called in React Server Components.
244
244
- By default, v4 will use [OpenID Connect's RP-Initiated Logout](https://auth0.com/docs/authenticate/login/logout/log-users-out-of-auth0) if it's enabled on the tenant. Otherwise, it will fallback to the `/v2/logout` endpoint.
0 commit comments