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

docs: add @next to update instructions #33410

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion aio/content/guide/updating-to-version-9.md
Expand Up @@ -7,9 +7,13 @@ This guide contains everything you need to know about updating to the next Angul
If your application uses the CLI, you can update to version 9 automatically with the help of the `ng update` script:

```
ng update @angular/cli @angular/core
ng update @angular/cli@next @angular/core@next
```

<div class="alert is-important">
During the RC period, the `@next` tag is required. This flag will no longer be necessary once version 9 final is released.
</div>

The script will run a series of small migrations that will transform the code of your application to be compatible with version 9.

If you're curious about the specific migrations being run (e.g. what code is changing and why), see the [automated migrations section](#migrations).
Expand Down