This repository has been archived by the owner on Sep 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 230
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update changelog and pubspecs to prep for 5.1 release.
Closes #1634 PiperOrigin-RevId: 216413288
- Loading branch information
Showing
12 changed files
with
26 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
## 5.1.0 | ||
|
||
### New features | ||
|
||
* Added support for generic components and directives. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name: angular | ||
version: 5.0.0 | ||
version: 5.1.0 | ||
author: Dart Team <[email protected]> | ||
description: Fast and productive web framework | ||
homepage: https://webdev.dartlang.org/angular | ||
|
@@ -20,8 +20,8 @@ dependencies: | |
analyzer: ^0.33.0 | ||
|
||
# It is extremely important these two dependencies stay pinned to current. | ||
angular_ast: 0.5.6 | ||
angular_compiler: 0.4.0 | ||
angular_ast: 0.5.7 | ||
angular_compiler: 0.4.1 | ||
########################################################################## | ||
|
||
build: '>=0.12.7 <2.0.0' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: angular_ast | |
author: Dart Team <[email protected]> | ||
homepage: https://github.com/dart-lang/angular | ||
description: Parser and utilities for AngularDart templates | ||
version: 0.5.6 | ||
version: 0.5.7 | ||
|
||
environment: | ||
sdk: ">=2.1.0-dev.5.0 <3.0.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: angular_compiler | |
author: Dart Team <[email protected]> | ||
homepage: https://github.com/dart-lang/angular | ||
description: Compiler for AngularDart. | ||
version: 0.4.0 | ||
version: 0.4.1 | ||
|
||
environment: | ||
sdk: ">=2.1.0-dev.5.0 <3.0.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
## 2.1.0 | ||
|
||
### New Features | ||
|
||
* `PatternValidator` now has a `pattern` input. This allows the `pattern` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,17 +2,17 @@ name: angular_forms | |
author: Dart Team <[email protected]> | ||
homepage: https://github.com/dart-lang/angular | ||
description: Forms framework for AngularDart. | ||
version: 2.0.0 | ||
version: 2.1.0 | ||
|
||
environment: | ||
sdk: ">=2.1.0-dev.5.0 <3.0.0" | ||
|
||
dependencies: | ||
angular: ^5.0.0 | ||
angular: ^5.1.0 | ||
meta: ^1.1.4 | ||
|
||
dev_dependencies: | ||
angular_test: ^2.0.0 | ||
angular_test: ^2.1.0 | ||
build_runner: ^1.0.0 | ||
build_test: ^0.10.2+5 | ||
build_web_compilers: ^0.4.0+4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
## 2.0.0-alpha+20 | ||
|
||
### Bug fixes | ||
|
||
* Fixed a discrepancy between the href rendered by `RouterLinkDirective`, and | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,20 +2,20 @@ name: angular_router | |
author: Dart Team <[email protected]> | ||
homepage: https://github.com/dart-lang/angular | ||
description: Router for AngularDart. | ||
version: 2.0.0-alpha+19 | ||
version: 2.0.0-alpha+20 | ||
|
||
environment: | ||
sdk: ">=2.1.0-dev.5.0 <3.0.0" | ||
|
||
dependencies: | ||
angular: ^5.0.0 | ||
angular: ^5.1.0 | ||
collection: ^1.14.5 | ||
js: ^0.6.0 | ||
meta: ^1.1.4 | ||
|
||
dev_dependencies: | ||
async: ^2.0.3 | ||
angular_test: ^2.0.0 | ||
angular_test: ^2.1.0 | ||
build_runner: ^1.0.0 | ||
build_test: ^0.10.2+5 | ||
build_web_compilers: ^0.4.0+4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,13 +2,13 @@ name: angular_test | |
author: Dart Team <[email protected]> | ||
homepage: https://github.com/dart-lang/angular | ||
description: Testing runner and library for AngularDart | ||
version: 2.0.0 | ||
version: 2.1.0 | ||
|
||
environment: | ||
sdk: ">=2.1.0-dev.5.0 <3.0.0" | ||
|
||
dependencies: | ||
angular: ^5.0.0 | ||
angular: ^5.1.0 | ||
meta: ^1.1.4 | ||
|
||
dev_dependencies: | ||
|