From 3505692f752808ec6bfce2329118669c821b975d Mon Sep 17 00:00:00 2001 From: Kara Erickson Date: Fri, 25 Oct 2019 11:23:42 -0700 Subject: [PATCH] docs: add @next to update instructions (#33410) PR Close #33410 --- aio/content/guide/updating-to-version-9.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/aio/content/guide/updating-to-version-9.md b/aio/content/guide/updating-to-version-9.md index fb07f60035..64d0ad03f3 100644 --- a/aio/content/guide/updating-to-version-9.md +++ b/aio/content/guide/updating-to-version-9.md @@ -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 ``` +
+During the RC period, the `@next` tag is required. This flag will no longer be necessary once version 9 final is released. +
+ 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).