From 39bfd1a11fa1dd0fcbb5062fdd5f98e6ca985ca8 Mon Sep 17 00:00:00 2001 From: Paul Gschwendtner Date: Fri, 5 Apr 2019 18:58:56 +0200 Subject: [PATCH] refactor(core): run migration schematics for v8 beta and rc releases (#29735) Currently the `static-query` and `template-var-assignment` schematic only runs 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. PR Close #29735 --- packages/core/schematics/migrations.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/core/schematics/migrations.json b/packages/core/schematics/migrations.json index f4fe65f4b6..7f83b87884 100644 --- a/packages/core/schematics/migrations.json +++ b/packages/core/schematics/migrations.json @@ -1,12 +1,12 @@ { "schematics": { "migration-v8-static-queries": { - "version": "8", + "version": "8-beta", "description": "Migrates ViewChild and ContentChild to explicit query timing", "factory": "./migrations/static-queries/index" }, "migration-v8-template-local-variables": { - "version": "8", + "version": "8-beta", "description": "Warns developers if values are assigned to template variables", "factory": "./migrations/template-var-assignment/index" }