From bb5d5440a4d7080dbd413d26727e4ed79ab82b72 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Mon, 8 Apr 2019 19:58:09 +0200 Subject: [PATCH] feat: run v8 migration schematics for v8 beta and rc releases (#15753) Currently the V8 schematic migrations only run for `8.0.0` which does not include any betas or release candidates. We want to run the schematic in the beta's and RC in order to get early feedback about the schematics. Enabling it promptly with V8 stable release can result in accidental breakages that we would like to fix/identify before. --- src/cdk/schematics/migration.json | 2 +- src/lib/schematics/migration.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cdk/schematics/migration.json b/src/cdk/schematics/migration.json index bed8eba56b75..46fdd3891b22 100644 --- a/src/cdk/schematics/migration.json +++ b/src/cdk/schematics/migration.json @@ -12,7 +12,7 @@ "factory": "./ng-update/index#updateToV7" }, "migration-v8": { - "version": "8", + "version": "8-beta", "description": "Updates the Angular CDK to v8", "factory": "./ng-update/index#updateToV8" }, diff --git a/src/lib/schematics/migration.json b/src/lib/schematics/migration.json index fe62387df9e7..5ed2b19be392 100644 --- a/src/lib/schematics/migration.json +++ b/src/lib/schematics/migration.json @@ -12,7 +12,7 @@ "factory": "./ng-update/index#updateToV7" }, "migration-v8": { - "version": "8", + "version": "8-beta", "description": "Updates Angular Material to v8", "factory": "./ng-update/index#updateToV8" },