Skip to content

Commit cb18da3

Browse files
committed
fix(@angular/cli): change update guide link to angular.dev
References to the Angular update guide now use the new angular.dev site.
1 parent 593050e commit cb18da3

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Angular is cross-platform, fast, scalable, has incredible tooling, and is loved
106106

107107
## Upgrading
108108

109-
Check out our [upgrade guide](https://update.angular.io/) to find out the best way to upgrade your project.
109+
Check out our [upgrade guide](https://update.angular.dev/) to find out the best way to upgrade your project.
110110

111111
## Contributing
112112

packages/angular/build/src/utils/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export function assertCompatibleAngularVersion(projectRoot: string): void | neve
7373
console.error(
7474
`This version of CLI is only compatible with Angular versions ${supportedAngularSemver},\n` +
7575
`but Angular version ${angularVersion} was found instead.\n` +
76-
'Please visit the link below to find instructions on how to update Angular.\nhttps://update.angular.io/',
76+
'Please visit the link below to find instructions on how to update Angular.\nhttps://update.angular.dev/',
7777
);
7878

7979
process.exit(3);

packages/angular/cli/src/commands/update/cli.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export default class UpdateCommandModule extends CommandModule<UpdateCommandArgs
8181
protected override shouldReportAnalytics = false;
8282

8383
command = 'update [packages..]';
84-
describe = 'Updates your workspace and its dependencies. See https://update.angular.io/.';
84+
describe = 'Updates your workspace and its dependencies. See https://update.angular.dev/.';
8585
longDescriptionPath = join(__dirname, 'long-description.md');
8686

8787
builder(localYargs: Argv): Argv<UpdateCommandArgs> {
@@ -716,7 +716,7 @@ export default class UpdateCommandModule extends CommandModule<UpdateCommandArgs
716716
// Example @angular/core skipped version 3, @angular/cli skipped versions 2-5.
717717
logger.error(
718718
`Updating multiple major versions of '${name}' at once is not supported. Please migrate each major version individually.\n` +
719-
`For more information about the update process, see https://update.angular.io/.`,
719+
`For more information about the update process, see https://update.angular.dev/.`,
720720
);
721721
} else {
722722
const nextMajorVersionFromCurrent = currentMajorVersion + 1;
@@ -725,7 +725,7 @@ export default class UpdateCommandModule extends CommandModule<UpdateCommandArgs
725725
`Updating multiple major versions of '${name}' at once is not supported. Please migrate each major version individually.\n` +
726726
`Run 'ng update ${name}@${nextMajorVersionFromCurrent}' in your workspace directory ` +
727727
`to update to latest '${nextMajorVersionFromCurrent}.x' version of '${name}'.\n\n` +
728-
`For more information about the update process, see https://update.angular.io/?v=${currentMajorVersion}.0-${nextMajorVersionFromCurrent}.0`,
728+
`For more information about the update process, see https://update.angular.dev/?v=${currentMajorVersion}.0-${nextMajorVersionFromCurrent}.0`,
729729
);
730730
}
731731

packages/angular/cli/src/commands/update/long-description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ For example, use the following command to take the latest 10.x.x version and use
1919
ng update @angular/cli@^10 @angular/core@^10
2020
```
2121

22-
For detailed information and guidance on updating your application, see the interactive [Angular Update Guide](https://update.angular.io/).
22+
For detailed information and guidance on updating your application, see the interactive [Angular Update Guide](https://update.angular.dev/).

scripts/templates/readme.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Angular is cross-platform, fast, scalable, has incredible tooling, and is loved
106106

107107
## Upgrading
108108

109-
Check out our [upgrade guide](https://update.angular.io/) to find out the best way to upgrade your project.
109+
Check out our [upgrade guide](https://update.angular.dev/) to find out the best way to upgrade your project.
110110

111111
## Contributing
112112

0 commit comments

Comments
 (0)