diff --git a/CHANGELOG.md b/CHANGELOG.md index abaf3609e3..0c963dac3d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ + + + # [10.0.0-rc.6](https://github.com/angular/angular/compare/10.0.0-rc.5...10.0.0-rc.6) (2020-06-15) diff --git a/aio/content/guide/migration-update-libraries-tslib.md b/aio/content/guide/migration-update-libraries-tslib.md index 54fc89ba73..5462d1c627 100644 --- a/aio/content/guide/migration-update-libraries-tslib.md +++ b/aio/content/guide/migration-update-libraries-tslib.md @@ -1,4 +1,4 @@ -# tslib Direct Dependency Migration +# `tslib` direct dependency migration ## What does this migration do? diff --git a/aio/content/guide/migration-update-module-and-target-compiler-options.md b/aio/content/guide/migration-update-module-and-target-compiler-options.md index b215e775dc..259f85d93a 100644 --- a/aio/content/guide/migration-update-module-and-target-compiler-options.md +++ b/aio/content/guide/migration-update-module-and-target-compiler-options.md @@ -1,4 +1,4 @@ -# Update module and target compiler options migration +# Update `module` and `target` compiler options migration ## What does this migration do? @@ -14,7 +14,7 @@ Used in `browser` builder options (`ng build` for applications) | `"module"` | ` Used in `ng-packgr` builder options (`ng build` for libraries) | `"module"` | `"esnext"` | `"es2020"` Used in `karma` builder options (`ng test` for applications) | `"module"` | `"esnext"` | `"es2020"` Used in `server` builder options (universal) | `"module"` | `"commonjs"` | _removed_ -  | `"target"` | _any_ | `"es2016"` +Used in `server` builder options (universal) | `"target"` | _any_ | `"es2016"` Used in `protractor` builder options (`ng e2e` for applications) | `"target"` | `"es5"` | `"es2018"` ## Why is this migration necessary? diff --git a/aio/content/guide/updating-to-version-10.md b/aio/content/guide/updating-to-version-10.md index 04ea9ca80e..343f0a310c 100644 --- a/aio/content/guide/updating-to-version-10.md +++ b/aio/content/guide/updating-to-version-10.md @@ -39,7 +39,6 @@ If you're curious about the specific migrations being run by the CLI, see the [a | Area | API or Feature | May be removed in | | ----------------------------- | --------------------------------------------------------------------------- | ----------------- | -| `@angular/bazel` | [`Bazel builder and schematics`](guide/deprecations#bazelbuilder) | v10 | | `@angular/core` | [`WrappedValue`](guide/deprecations#wrapped-value) | v12 | | browser support | [`IE 9, 10, and IE Mobile`](guide/deprecations#ie-9-10-and-ie-mobile-support) | v11 | @@ -54,6 +53,8 @@ The following APIs have been removed starting with version 10.0.0*: | `@angular/core` | Undecorated base classes that use Angular features | Add Angular decorator | See [migration guide](guide/migration-undecorated-classes) for more info | | `@angular/core` | `ModuleWithProviders` without a generic | `ModuleWithProviders` with a generic | See [migration guide](guide/migration-module-with-providers) for more info | | `@angular/core` | Style Sanitization | no action needed | See [style sanitization API removal](/guide/deprecations#style-sanitization) for more info +| `@angular/bazel` | [`Bazel builder and schematics`](guide/deprecations#bazelbuilder) | `bazelbuild/rules_nodejs` | [More info](https://github.com/angular/angular/tree/10.0.x/packages/bazel/src/schematics) | + *To see APIs removed in version 9, check out this guide on the [version 9 docs site](https://v9.angular.io/guide/deprecations#removed). @@ -76,3 +77,6 @@ Read about the migrations the CLI handles for you automatically: * [Migrating missing `@Directive()`/`@Component()` decorators](guide/migration-undecorated-classes) * [Migrating `ModuleWithProviders`](guide/migration-module-with-providers) +* [Solution-style `tsconfig.json` migration](guide/migration-solution-style-tsconfig) +* [`tslib` direct dependency migration](guide/migration-update-libraries-tslib) +* [Update `module` and `target` compiler options migration](guide/migration-update-module-and-target-compiler-options) diff --git a/aio/content/navigation.json b/aio/content/navigation.json index 82f782a913..363dca4c3a 100644 --- a/aio/content/navigation.json +++ b/aio/content/navigation.json @@ -803,6 +803,21 @@ "url": "guide/migration-injectable", "title": "Missing @Injectable() Decorators", "tooltip": "Migration to add missing @Injectable() decorators and incomplete provider definitions." + }, + { + "url": "guide/migration-solution-style-tsconfig", + "title": "Solution-style `tsconfig.json`", + "tooltip": "Migration to create a solution-style `tsconfig.json`." + }, + { + "url": "guide/migration-update-libraries-tslib", + "title": "`tslib` direct dependency", + "tooltip": "Migration to a direct dependency on the `tslib` npm package." + }, + { + "url": "guide/migration-update-module-and-target-compiler-options", + "title": "`module` and `target` compiler options", + "tooltip": "Migration to update `module` and `target` compiler options." } ] }