From 4802fe667cca6cbde40e535f28892ed76011e832 Mon Sep 17 00:00:00 2001 From: Misko Hevery Date: Wed, 5 May 2021 14:53:42 -0700 Subject: [PATCH] release: cut the v12.1.0-next.1 release --- CHANGELOG.md | 38 ++++++++++++++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 39 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77d877973e..17ce331daf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,41 @@ +# 12.1.0-next.1 (2021-05-05) + + +### Bug Fixes + +* **common:** add body as an optional property on the options of HttpClient.delete ([#19438](https://github.com/angular/angular/issues/19438)) ([#41723](https://github.com/angular/angular/issues/41723)) ([6b8baad](https://github.com/angular/angular/commit/6b8baad94096225837dddc6ccf0826c59582d467)) +* **compiler-cli:** expose the linker as a Babel plugin ([#41918](https://github.com/angular/angular/issues/41918)) ([6eafaa7](https://github.com/angular/angular/commit/6eafaa7b5e2b85e53b4213f9f7756474609a0fa3)) +* **compiler-cli:** prefer non-aliased exports in reference emitters ([#41866](https://github.com/angular/angular/issues/41866)) ([35450c7](https://github.com/angular/angular/commit/35450c78f7908d43c1d7d8598c915a8c86a28d2e)), closes [#41443](https://github.com/angular/angular/issues/41443) [#41277](https://github.com/angular/angular/issues/41277) +* **core:** handle multiple i18n attributes with expression bindings ([#41882](https://github.com/angular/angular/issues/41882)) ([9b4b281](https://github.com/angular/angular/commit/9b4b281c5223084834019664fbe5248521caadae)), closes [#41869](https://github.com/angular/angular/issues/41869) + + +### Features + +* **compiler:** support directive selectors with attributes containing `$` ([#41567](https://github.com/angular/angular/issues/41567)) ([1758d02](https://github.com/angular/angular/commit/1758d0297267a8d46042d2f926eebb2263a345e5)), closes [#41244](https://github.com/angular/angular/issues/41244) [#41500](https://github.com/angular/angular/issues/41500) [#41500](https://github.com/angular/angular/issues/41500) + + +### Performance Improvements + +* **core:** minor improvements to listener instructions ([#41807](https://github.com/angular/angular/issues/41807)) ([6581a1b](https://github.com/angular/angular/commit/6581a1b48dc6a3ddb6d371d26d765aaa0f0b04c1)) + + +### BREAKING CHANGES + +* Minified UMD bundles are no longer included in the distributed NPM packages. +* **core:** Angular no longer maintains support for node v10 +* **core:** Previously the `ng.getDirectives` function threw an error in case a +given DOM node had no Angular context associated with it (for example +if a function was called for a DOM element outside of an Angular app). +This behavior was inconsistent with other debugging utilities under `ng` +namespace, which handled this situation without raising an exception. +Now calling the `ng.getDirectives` function for such DOM nodes would +result in an empty array returned from that function. +* **compiler-cli:** Linked libraries no longer generate legacy i18n message ids. Any downstream +application that provides translations for these messages, will need to +migrate their message ids using the `localize-migrate` command line tool. + + + ## 11.2.13 (2021-05-05) diff --git a/package.json b/package.json index b4e62705dd..4d4154b51d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "angular-srcs", - "version": "12.1.0-next.0", + "version": "12.1.0-next.1", "private": true, "description": "Angular - a web framework for modern web apps", "homepage": "https://github.com/angular/angular",