From 99d593e82d070902a50043c329b293bf29aab201 Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Thu, 27 Feb 2020 17:04:02 -0800 Subject: [PATCH 1/7] Move UPGRADING.md to docs --- UPGRADING.md => docs/upgrading/from-v8.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) rename UPGRADING.md => docs/upgrading/from-v8.md (98%) diff --git a/UPGRADING.md b/docs/upgrading/from-v8.md similarity index 98% rename from UPGRADING.md rename to docs/upgrading/from-v8.md index 458bc5783e5d076..02646cef8aabbb5 100644 --- a/UPGRADING.md +++ b/docs/upgrading/from-v8.md @@ -1,4 +1,8 @@ -# Migrating from v8 to v9 +--- +description: Learn how to upgrade Next.js from version 8 to 9.0.x. +--- + +# Upgrading Next.js from version 8 to 9.0.x ## Preamble From 595493973abcf8410ca34ccf0d5084a8de740b8e Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Thu, 27 Feb 2020 17:17:10 -0800 Subject: [PATCH 2/7] Add upgrading guide to manifest.json --- docs/manifest.json | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/manifest.json b/docs/manifest.json index b3cccfe61edfd37..b835dc16fc4d6cc 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -147,6 +147,15 @@ } ] }, + { + "title": "Upgrading", + "routes": [ + { + "title": "From Version 8", + "path": "/docs/upgrading/from-v8.md" + } + ] + }, { "title": "FAQ", "path": "/docs/faq.md" } ] }, From f6d3013c6d17e450338494e9ea4605273a24b97c Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Thu, 27 Feb 2020 17:26:49 -0800 Subject: [PATCH 3/7] Update title --- docs/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/manifest.json b/docs/manifest.json index b835dc16fc4d6cc..d1f75206a3e642f 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -148,7 +148,7 @@ ] }, { - "title": "Upgrading", + "title": "Upgrade Guide", "routes": [ { "title": "From Version 8", From 1ac4bbc8feeb5d7faadc5eeb70184cdfd97f09ac Mon Sep 17 00:00:00 2001 From: Shu Uesugi Date: Fri, 28 Feb 2020 10:04:15 -0800 Subject: [PATCH 4/7] Move to docs/upgrading --- UPGRADING.md | 1 + docs/manifest.json | 7 +------ docs/{upgrading/from-v8.md => upgrading.md} | 10 ++++++---- 3 files changed, 8 insertions(+), 10 deletions(-) create mode 100644 UPGRADING.md rename docs/{upgrading/from-v8.md => upgrading.md} (97%) diff --git a/UPGRADING.md b/UPGRADING.md new file mode 100644 index 000000000000000..0fbfff754f2db0a --- /dev/null +++ b/UPGRADING.md @@ -0,0 +1 @@ +This document has been moved to [docs/upgrading.md](docs/upgrading.md). It can also be viewed on [our documentation page](https://nextjs.org/docs/upgrading). diff --git a/docs/manifest.json b/docs/manifest.json index d1f75206a3e642f..641215ebc655470 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -149,12 +149,7 @@ }, { "title": "Upgrade Guide", - "routes": [ - { - "title": "From Version 8", - "path": "/docs/upgrading/from-v8.md" - } - ] + "path": "/docs/faq.md" }, { "title": "FAQ", "path": "/docs/faq.md" } ] diff --git a/docs/upgrading/from-v8.md b/docs/upgrading.md similarity index 97% rename from docs/upgrading/from-v8.md rename to docs/upgrading.md index 02646cef8aabbb5..979d9c3195e6aa1 100644 --- a/docs/upgrading/from-v8.md +++ b/docs/upgrading.md @@ -1,10 +1,12 @@ --- -description: Learn how to upgrade Next.js from version 8 to 9.0.x. +description: Learn how to upgrade Next.js. --- -# Upgrading Next.js from version 8 to 9.0.x +# Upgrade Guide -## Preamble +## Upgrading from version 8 to 9.0.x + +### Preamble #### Production Deployment on ZEIT Now v2 @@ -41,7 +43,7 @@ class MyApp extends App { } ``` -## Breaking Changes +### Breaking Changes #### `@zeit/next-typescript` is no longer necessary From 3780bb2a39be99014d3449a9d9a6735b636a3ceb Mon Sep 17 00:00:00 2001 From: Tim Neutkens Date: Fri, 28 Feb 2020 23:43:35 +0100 Subject: [PATCH 5/7] Update UPGRADING.md --- UPGRADING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UPGRADING.md b/UPGRADING.md index 0fbfff754f2db0a..1eae23cbdbb6a49 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -1 +1 @@ -This document has been moved to [docs/upgrading.md](docs/upgrading.md). It can also be viewed on [our documentation page](https://nextjs.org/docs/upgrading). +This document has been moved to [nextjs.org/docs/upgrading](https://nextjs.org/docs/upgrading) From ca6b1d441affb1b541f700b502beb5dd67340540 Mon Sep 17 00:00:00 2001 From: Tim Neutkens Date: Fri, 28 Feb 2020 23:44:14 +0100 Subject: [PATCH 6/7] Update docs/manifest.json --- docs/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/manifest.json b/docs/manifest.json index 641215ebc655470..fb6dd32df41a138 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -149,7 +149,7 @@ }, { "title": "Upgrade Guide", - "path": "/docs/faq.md" + "path": "/docs/upgrading.md" }, { "title": "FAQ", "path": "/docs/faq.md" } ] From 1f90f0b14f7d3d2673ca159a3f54eb8fc2a4a720 Mon Sep 17 00:00:00 2001 From: Tim Neutkens Date: Fri, 28 Feb 2020 23:45:32 +0100 Subject: [PATCH 7/7] Update UPGRADING.md --- UPGRADING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UPGRADING.md b/UPGRADING.md index 1eae23cbdbb6a49..83373e6ae0ad5dd 100644 --- a/UPGRADING.md +++ b/UPGRADING.md @@ -1 +1 @@ -This document has been moved to [nextjs.org/docs/upgrading](https://nextjs.org/docs/upgrading) +This document has been moved to [nextjs.org/docs/upgrading](https://nextjs.org/docs/upgrading). It's also available in this repository on [/docs/upgrading.md](/docs/upgrading.md).