Skip to content

Commit 07bd4b0

Browse files
tboschIgorMinar
authored andcommitted
chore: bump version number and generate CHANGELOG (angular#12247)
1 parent df1718d commit 07bd4b0

File tree

2 files changed

+35
-10
lines changed

2 files changed

+35
-10
lines changed

CHANGELOG.md

Lines changed: 34 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,28 @@
1+
<a name="2.1.0"></a>
2+
# [2.1.0](https://github.com/angular/angular/compare/2.1.0-rc.0...2.1.0) (2016-10-12)
3+
4+
5+
### Bug Fixes
6+
7+
* **benchmarks:** allow ng2_switch benchmark to be used with AoT. ([#12124](https://github.com/angular/angular/issues/12124)) ([de1f44f](https://github.com/angular/angular/commit/de1f44f))
8+
* **compiler:** allow whitespace as `<ng-content>` content ([#12225](https://github.com/angular/angular/issues/12225)) ([df1718d](https://github.com/angular/angular/commit/df1718d))
9+
* **compiler:** interpolation expressions report the correct offset ([#12125](https://github.com/angular/angular/issues/12125)) ([d641c36](https://github.com/angular/angular/commit/d641c36))
10+
* **compiler:** properly shim `:host:before` and `:host(:before)` ([#12171](https://github.com/angular/angular/issues/12171)) ([aa92512](https://github.com/angular/angular/commit/aa92512)), closes [#12165](https://github.com/angular/angular/issues/12165)
11+
* **compiler:** validate `[@HostBinding](https://github.com/HostBinding)` name ([#12139](https://github.com/angular/angular/issues/12139)) ([13ecc14](https://github.com/angular/angular/commit/13ecc14))
12+
* **compiler-cli:** don't clone static symbols when simplifying annotation metadata ([#12158](https://github.com/angular/angular/issues/12158)) ([8c477b2](https://github.com/angular/angular/commit/8c477b2))
13+
* **compiler-cli:** remove peerDependency on [@angular](https://github.com/angular)/platform-server ([#12122](https://github.com/angular/angular/issues/12122)) ([71b7654](https://github.com/angular/angular/commit/71b7654))
14+
* **compiler-cli:** remove unused parse5 dependency from package.json ([eaaec69](https://github.com/angular/angular/commit/eaaec69))
15+
* **forms:** allow optional fields with pattern and minlength validators ([#12147](https://github.com/angular/angular/issues/12147)) ([d22eeb7](https://github.com/angular/angular/commit/d22eeb7))
16+
* **forms:** properly validate blank strings with minlength ([#12091](https://github.com/angular/angular/issues/12091)) ([f50c1da](https://github.com/angular/angular/commit/f50c1da))
17+
* **http:** fix Headers initialization from Headers and Object ([#12106](https://github.com/angular/angular/issues/12106)) ([f4566f8](https://github.com/angular/angular/commit/f4566f8))
18+
* **http:** Headers.append should append to the list ([a67c067](https://github.com/angular/angular/commit/a67c067))
19+
* **platform-browser-dynamic:** mark platformBrowserDynamic as stable API ([#12154](https://github.com/angular/angular/issues/12154)) ([bcef5ef](https://github.com/angular/angular/commit/bcef5ef))
20+
* **router:** improve error message ([#12102](https://github.com/angular/angular/issues/12102)) ([e06303a](https://github.com/angular/angular/commit/e06303a))
21+
* **router:** parent resolve should complete before merging resolved data ([1681e4f](https://github.com/angular/angular/commit/1681e4f)), closes [#12032](https://github.com/angular/angular/issues/12032)
22+
* **router:** wildcards routes should support lazy loading ([40b92dd](https://github.com/angular/angular/commit/40b92dd)), closes [#12024](https://github.com/angular/angular/issues/12024)
23+
* **upgrade:** allow compilerOptions in bootstrap ([#10575](https://github.com/angular/angular/issues/10575)) ([5effc33](https://github.com/angular/angular/commit/5effc33))
24+
25+
126
<a name="2.1.0-rc.0"></a>
227
# [2.1.0-rc.0](https://github.com/angular/angular/compare/2.1.0-beta.0...2.1.0-rc.0) (2016-10-05)
328

@@ -281,7 +306,7 @@ Note: 2.1.0-beta.0 release also contains all the changes present in the 2.0.1 re
281306
use `Type<any>` in place of `Type`.
282307

283308
We don't expect that any user applications use the `Type` type directly.
284-
309+
285310
* core: Previously inconsistently named APIs SanitizationService and DomSanitizationService were renamed to Sanitizer and DomSanitizer
286311

287312
* core: previously deprecated @Component.directives and @Component.pipes support was removed.
@@ -295,11 +320,11 @@ use `Type<any>` in place of `Type`.
295320
* core: deprecated ComponentResolver was removed. Please use ComponentFactoryResolver instead.
296321

297322
* core: animations defined using an at-symbol prefix that are not property bound are now invalid.
298-
323+
299324
```html
300325
<!-- this is now invalid -->
301326
<div @flip="flipState"></div>
302-
327+
303328
<!-- change that to -->
304329
<div [@flip]="flipState"></div>
305330
```
@@ -325,7 +350,7 @@ prefix using `animate-` must now be preixed using `bind-animate-`.
325350
```
326351
{provide: MyClass, useFactory: ...}
327352
```
328-
353+
329354
* core: previously deprecated NgZoneError has been removed
330355

331356
* core: Exceptions are no longer part of the public API. We don't expect that anyone should be referring to the Exception types.
@@ -337,7 +362,7 @@ prefix using `animate-` must now be preixed using `bind-animate-`.
337362
```
338363
ErrorHandler.handleError(error: any): void;
339364
```
340-
365+
341366
* core: deprecated DynamicComponentLoader was removed; see deprecation notice for migration instructions.
342367

343368
* core: deprecated SystemJsComponentResolver and SystemJsCmpFactoryResolver have been removed.
@@ -371,13 +396,13 @@ prefix using `animate-` must now be preixed using `bind-animate-`.
371396
* platform-browser-dynamic: `CACHED_TEMPLATE_PROVIDER` is now renamed to `RESOURCE_CACHE_PROVIDER`
372397

373398
Before:
374-
399+
375400
```js
376401
import {CACHED_TEMPLATE_PROVIDER} from '@angular/platform-browser-dynamic';
377402
```
378-
403+
379404
After:
380-
405+
381406
```js
382407
import {RESOURCE_CACHE_PROVIDER} from '@angular/platform-browser-dynamic';
383408
```
@@ -395,7 +420,7 @@ prefix using `animate-` must now be preixed using `bind-animate-`.
395420
* webworkers: web worker platform is now exported via separate packages.
396421

397422
Please use @angular/platform-webworker and @angular/platform-webworker-dynamic
398-
423+
399424

400425

401426
<a name="2.0.0-rc.5"></a>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-srcs",
3-
"version": "2.1.0-rc.0",
3+
"version": "2.1.0",
44
"private": true,
55
"branchPattern": "2.0.*",
66
"description": "Angular 2 - a web framework for modern web apps",

0 commit comments

Comments
 (0)