Skip to content
This repository was archived by the owner on Sep 16, 2022. It is now read-only.

Commit 0176f2f

Browse files
committed
Update pubspec and CHANGELOGS for +15 release.
PiperOrigin-RevId: 200726488
1 parent ed7fb0f commit 0176f2f

File tree

12 files changed

+31
-14
lines changed

12 files changed

+31
-14
lines changed

angular/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 5.0.0-alpha+15
2+
13
### Breaking changes
24

35
* The compilation mode `--debug` (sparingly used externally) is now no longer
@@ -66,6 +68,9 @@
6668
would cause a stack overflow. We don't support generic type arguments yet
6769
(the reified type is always `dynamic`), but the compiler no longer crashes.
6870
71+
* Fixed a bug where `Iterable.retype` being removed from the SDK caused the
72+
compiler to crash on the newest Dart2 -dev SDKs. We now use `.cast` instead.
73+
6974
## 5.0.0-alpha+14
7075
7176
### New features

angular/pubspec.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: angular
2-
version: 5.0.0-alpha+14
2+
version: 5.0.0-alpha+15
33
author: Dart Team <[email protected]>
44
description: Fast and productive web framework
55
homepage: https://webdev.dartlang.org/angular
@@ -20,15 +20,15 @@ dependencies:
2020
analyzer: '>=0.31.0+1 <0.33.0'
2121

2222
# It is extremely important these two dependencies stay pinned to current.
23-
angular_ast: 0.5.3+2
24-
angular_compiler: 0.4.0-alpha+14
23+
angular_ast: 0.5.3+3
24+
angular_compiler: 0.4.0-alpha+15
2525
##########################################################################
2626

2727
build: ^0.12.5
2828
build_config: '>=0.2.6 <0.4.0' # Runtime dependency with no import
2929
code_builder: '^3.0.1'
3030
csslib: ^0.14.4
31-
path: ^1.5.1
31+
path: ^1.6.1
3232
source_gen: ^0.8.0
3333
source_span: ^1.4.0
3434
tuple: ^1.0.1

angular_ast/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.5.3+3
2+
3+
* Maintenance release for `-dev.60`.
4+
15
## 0.5.3+2
26

37
* Maintenance release for `-dev.56`.

angular_ast/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: angular_ast
22
author: Dart Team <[email protected]>
33
homepage: https://github.com/dart-lang/angular
44
description: Parser and utilities for AngularDart templates
5-
version: 0.5.3+2
5+
version: 0.5.3+3
66

77
environment:
88
sdk: ">=2.0.0-dev.60.0 <2.0.0"

angular_compiler/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 0.4.0-alpha+15
2+
13
* `CompilerFlags` no longer parses and supports the `'debug'` option and
24
`genDebugInfo` is always `false`, and is deprecated pending removal in a
35
future version.

angular_compiler/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: angular_compiler
22
author: Dart Team <[email protected]>
33
homepage: https://github.com/dart-lang/angular
44
description: Compiler for AngularDart.
5-
version: 0.4.0-alpha+14
5+
version: 0.4.0-alpha+15
66

77
environment:
88
sdk: ">=2.0.0-dev.60.0 <2.0.0"

angular_forms/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 2.0.0-alpha+7
2+
13
### New Features
24

35
* `reset` method added to `AbstractControl` and `AbstractControlDirective`.

angular_forms/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ name: angular_forms
22
author: Dart Team <[email protected]>
33
homepage: https://github.com/dart-lang/angular
44
description: Forms framework for AngularDart.
5-
version: 2.0.0-alpha+6
5+
version: 2.0.0-alpha+7
66

77
environment:
88
sdk: ">=2.0.0-dev.60.0 <2.0.0"
99

1010
dependencies:
11-
angular: 5.0.0-alpha+14
11+
angular: 5.0.0-alpha+15
1212
meta: ^1.1.4
1313

1414
dev_dependencies:
15-
angular_test: ^2.0.0-alpha+12
15+
angular_test: ^2.0.0-alpha+13
1616
build_runner: ^0.8.0
1717
build_test: ^0.10.1+1
1818
build_web_compilers: ^0.4.0

angular_router/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 2.0.0-alpha+14
2+
13
### Bug fixes
24

35
* Preserves `NavigationParams` on redirection.

angular_router/pubspec.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@ name: angular_router
22
author: Dart Team <[email protected]>
33
homepage: https://github.com/dart-lang/angular
44
description: Router for AngularDart.
5-
version: 2.0.0-alpha+13
5+
version: 2.0.0-alpha+14
66

77
environment:
88
sdk: ">=2.0.0-dev.60.0 <2.0.0"
99

1010
dependencies:
11-
angular: 5.0.0-alpha+14
11+
angular: 5.0.0-alpha+15
1212
collection: ^1.14.5
1313
js: ^0.6.0
1414
meta: ^1.1.2
1515

1616
dev_dependencies:
1717
async: ^2.0.3
18-
angular_test: ^2.0.0-alpha+12
18+
angular_test: ^2.0.0-alpha+13
1919
build_runner: ^0.8.0
2020
build_test: ^0.10.1+1
2121
build_web_compilers: ^0.4.0

0 commit comments

Comments
 (0)