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

Add stub Release Candidate migration guide #1049

Merged
merged 1 commit into from
Jul 20, 2022
Merged
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
16 changes: 16 additions & 0 deletions src/pages/en/migrate.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,22 @@ This guide will help you migrate from older versions of Astro to the latest vers

Read the guide below for major highlights and instructions on how to handle breaking changes.

## Astro 1.0 Release Candidate

The Astro v1.0 Release Candidate (RC) introduces some changes that you should be aware of when migrating from beta or earlier releases. See below for more details.

:::note
The Release Candidate is not yet installed by default for most users, but you can try it today by running this command:

```sh
npm install astro@next--rc
```
:::

### Updated: Vite 3

Astro v1.0 RC has upgraded from Vite 2 to [Vite 3](https://vitejs.dev/). We've handled most of the upgrade for you inside of Astro, however some subtle Vite behaviors may still change between versions. Refer to the official [Vite Migration Guide](https://vitejs.dev/guide/migration.html#general-changes) if you run into trouble.

## Astro 1.0 Beta

On April 4, 2022 we released the Astro 1.0 Beta! 🎉
Expand Down