Skip to content
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

chore: update supported Next.js version range #8191

Merged
merged 1 commit into from
Jan 10, 2025
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ To set up the project, you will need to create a new Next.js app with the [`crea
Run the following command and following the instructions to create a Next.js app.

```shellscript
npx create-next-app@">=13.5.0 <15.0.0" next-amplified
npx create-next-app@">=13.5.0 <16.0.0" next-amplified
```

Then run the following command to enter the root of your Next.js app.
Expand Down
2 changes: 1 addition & 1 deletion src/fragments/lib/ssr/nextjs/version-range-callout.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Callout warning>

**NOTE:** Amplify JS v6 supports Next.js with the version range: `>=13.5.0 <15.0.0`.
**NOTE:** Amplify JS v6 supports Next.js with the version range: `>=13.5.0 <16.0.0`.
Ensure you have the correct version to integrate with Amplify.

</Callout>
2 changes: 1 addition & 1 deletion src/fragments/start/getting-started/next/setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ To set up the project, you'll first create a new Next.js app with [Create Next A
From your projects directory, run the following commands:

```bash
npx create-next-app@">=13.5.0 <15.0.0" next-amplified --no-app
npx create-next-app@">=13.5.0 <16.0.0" next-amplified --no-app
cd next-amplified
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ This guide walks through how to use Amplify Auth, GraphQL API, REST API, and Sto

<Callout warning>

**NOTE:** Amplify JS v6 supports Next.js with the version range: `>=13.5.0 <15.0.0`.
**NOTE:** Amplify JS v6 supports Next.js with the version range: `>=13.5.0 <16.0.0`.
Ensure you have the correct version to integrate with Amplify.

</Callout>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ cd amplify-app

This tutorial is built using the [Next.js App Router](https://nextjs.org/docs/app/building-your-application/routing).

**NOTE:** Amplify JS v6 supports Next.js with the version range: `>=13.5.0 <15.0.0`.
**NOTE:** Amplify JS v6 supports Next.js with the version range: `>=13.5.0 <16.0.0`.
Ensure you have the correct version to integrate with Amplify.

</Callout>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ import reactnative_getting_started from '/src/fragments/start/getting-started/re

<Callout warning>

**NOTE:** Amplify JS v6 supports Next.js with the version range: `>=13.5.0 <15.0.0`.
**NOTE:** Amplify JS v6 supports Next.js with the version range: `>=13.5.0 <16.0.0`.
Ensure you have the correct version to integrate with Amplify.

</Callout>
Expand All @@ -59,7 +59,7 @@ To set up the project, you will need to create a new Next.js app with the [`crea
Run the following command and following the instructions to create a Next.js app.

```shellscript
npx create-next-app@">=13.5.0 <15.0.0" next-amplified
npx create-next-app@">=13.5.0 <16.0.0" next-amplified
```

Then run the following command to enter the root of your Next.js app.
Expand Down
Loading