From dee1b774f2ef2f873e765c81a559fe3ed6df5d89 Mon Sep 17 00:00:00 2001 From: Jeff Cross Date: Fri, 17 Jun 2016 17:34:14 -0700 Subject: [PATCH] docs(changelog): add note about forthcoming deprecation of Parse5DomAdapter (#9314) --- CHANGELOG.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f8fbfdfb6a..5422087bee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -167,8 +167,6 @@ The likelihood of anyone actually depending on this property is very low. * `Parser` constructor required new parameter `config: CompilerConfig` as second argument. -* Parse5Adapter is no longer exported as public API, use serverBootstrap() - * Bundles are now in the bundles/ subdirectory within each package * HTML, style values, and URLs are now automatically sanitized. Values that do not match are escaped @@ -190,6 +188,12 @@ The likelihood of anyone actually depending on this property is very low. * `CompilerConfig` used to take positional arguments and now takes named arguments. +### Deprecation + +* `Parse5DomAdapter` will no longer be exported from `@angular/platform-server` as a public API as of RC.3. + A new function called `serverBootstrap()` will be provided, which will automatically set the correct + `document` during platform initialization. + ### Reverts * Revert fix(compiler): support string tokens with `.` inside. ([cc86fee](https://github.com/angular/angular/commit/cc86fee))