From 2a9d2bacd5155308b82b90ec6c9eecb82b0128cd Mon Sep 17 00:00:00 2001 From: Alex Eagle Date: Fri, 17 Nov 2017 07:46:21 -0800 Subject: [PATCH] docs: update changelog with missing feature in 5.1.0-beta.1 (#20508) PR Close #20508 --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 434b97c106..b14451f136 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,11 @@ * **router:** 'merge' queryParamHandling strategy should be able to remove query params ([#19733](https://github.com/angular/angular/issues/19733)) ([a622e19](https://github.com/angular/angular/commit/a622e19)), closes [#18463](https://github.com/angular/angular/issues/18463) [#17202](https://github.com/angular/angular/issues/17202) * Update test code to type-check under TS 2.5 ([#20175](https://github.com/angular/angular/issues/20175)) ([5ec1717](https://github.com/angular/angular/commit/5ec1717)) +### Features +* **typescript:** support TypeScript 2.5 ([a9f3e2b](https://github.com/angular/angular/commit/a9f3e2b)), closes [#20175](https://github.com/angular/angular/issues/20175) + +> Note, if you do `Injector.get(Token)` where `Token` has static members, you'll run into https://github.com/Microsoft/TypeScript/issues/20102 where the returned type is `{}` rather than `Token`. Use `Injector.get(Token)` to work around. ## [5.0.2](https://github.com/angular/angular/compare/5.0.1...5.0.2) (2017-11-16)