angular/packages/core/schematics/test/google3
Andrew Kushnir 7bee28d037 feat(router): add a migration to remove relativeLinkResolution usages (#47604)
As of Angular v15, the deprecated `relativeLinkResolution` config option of the Router is removed.  This migration cleans up (removes) the `relativeLinkResolution` fields from the Router config objects in applications code.

```ts
import { RouterModule } from '@angular/router';

RouterModule.forRoot([], {
  relativeLinkResolution: 'legacy',
  enableTracing: false,
});
```

```ts
import { RouterModule } from '@angular/router';

RouterModule.forRoot([], {
  // the `relativeLinkResolution` is removed
  enableTracing: false,
});
```

PR Close #47604
2022-10-07 10:28:42 -07:00
..
BUILD.bazel test(core): cleanup bazel target names for schematic tests (#32318) 2019-08-28 17:11:04 -07:00
entry_components_spec.ts feat(core): add migration to remove entryComponents (#44322) 2021-12-01 12:03:14 -08:00
patch_match_type_spec.ts feat(migrations): Add migration to add explicit Route/Routes type (#45084) 2022-04-04 14:53:45 -07:00
relative_link_resolution_spec.ts feat(router): add a migration to remove relativeLinkResolution usages (#47604) 2022-10-07 10:28:42 -07:00
typed_forms_spec.ts refactor(core): Make the typed forms migration apply to all usages of the symbols. (#45311) 2022-03-21 14:40:59 -07:00
wait_for_async_spec.ts Revert "refactor(migrations): remove no longer accessible migrations" (#43943) 2021-10-25 22:02:32 +00:00