https://github.com/angular/angular
Raw File
Tip revision: 7a47add255486e2b30a98e8ce54ccb5fd6bcc2f0 authored by Dylan Hunn on 08 February 2022, 17:33:08 UTC
release: cut the v13.2.2 release (#45018)
Tip revision: 7a47add
migrations.json
{
  "schematics": {
    "migration-v13-router-link-empty-expression": {
      "version": "13.0.0-beta",
      "description": "Migrates `[routerLink]=\"\"` in templates to `[routerLink]=\"[]\"` because these links are likely intended to route to the current page with updated fragment/query params.",
      "factory": "./migrations/router-link-empty-expression/index"
    },
    "migration-v13-testbed-teardown": {
      "version": "13.0.0-beta",
      "description": "In Angular version 13, the `teardown` flag in `TestBed` will be enabled by default. This migration automatically opts out existing apps from the new teardown behavior.",
      "factory": "./migrations/testbed-teardown/index"
    },
    "migration-v13.1-entry-components": {
      "version": "13.1.0-beta",
      "description": "As of Angular version 13, `entryComponents` are no longer necessary.",
      "factory": "./migrations/entry-components/index"
    },
    "migration-v14-entry-components": {
      "version": "14.0.0-beta",
      "description": "As of Angular version 13, `entryComponents` are no longer necessary.",
      "factory": "./migrations/entry-components/index"
    }
  }
}
back to top