Skip to content

Commit a071ecd

Browse files
update links in v4 migration guide to point to main
1 parent 9cccf91 commit a071ecd

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

V4_MIGRATION_GUIDE.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ export async function middleware(request: NextRequest) {
4848
}
4949
```
5050

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).
5252

5353
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>`.
5454

5555
> [!NOTE]
5656
> If you are using an existing client, you will need to update your **Allowed Callback URLs** accordingly.
5757
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).
5959

6060
## Auth0 middleware
6161

@@ -87,7 +87,7 @@ export const config = {
8787
}
8888
```
8989

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.
9191

9292
### Protecting routes
9393

@@ -123,13 +123,13 @@ The `<UserProvider />` has been renamed to `<Auth0Provider />`.
123123

124124
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.**
125125

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-)).
127127

128128
## Rolling sessions
129129

130130
In v4, rolling sessions are enabled by default and are handled automatically by the middleware with no additional configuration required.
131131

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.
133133

134134
## `withPageAuthRequired` and `withApiAuthRequired`
135135

@@ -155,7 +155,7 @@ The `getSession()` method can be used in the App Router in Server Components, Se
155155

156156
In the Pages Router, the `getSession(req)` method takes a request object and can be used in `getServerSideProps`, API routes, and middleware.
157157

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).
159159

160160
In the browser, you can rely on the `useUser()` hook to check if the user is authenticated. For example:
161161

@@ -212,7 +212,7 @@ export const auth0 = new Auth0Client({
212212
})
213213
```
214214

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).
216216

217217
## ID token claims
218218

@@ -230,15 +230,15 @@ In v4, by default, the only claims that are persisted in the `user` object of se
230230
- `email_verified`
231231
- `org_id`
232232

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))
234234

235235
## Additional changes
236236

237237
- By default, v4 is edge-compatible and as such there is no longer a `@auth0/nextjs-auth0/edge` export.
238238
- Cookie chunking has been removed
239239
- 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
241241
- 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).
243243
- `getAccessToken` can now be called in React Server Components.
244244
- 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

Comments
 (0)