This repository was archived by the owner on Sep 16, 2022. It is now read-only.
5.0.0-alpha+13
·
1607 commits
to master
since this release
angular
5.0.0-alpha+13
Breaking changes
-
A directive with
Visibility.localmay now be injected by another directive
on the same host element, or by a descendant within the same view. -
Removed support for (deprecated)
host: const { ... }syntax in a
@Directiveor@Componentannotation. This can be easily migrated to use
@HostBindingor@HostListener. -
Pins
angular_astandangular_compilerto avoid future versioning issues.
angular_ast
0.5.3+1
- Fixed source span range of
AttributeAstwhich would extend past EOF when
recovering from a value with an unclosed quote.
angular_compiler
0.4.0-alpha+13
- Maintenance release.
- The minimum SDK version is now
sdk: ">=2.0.0-dev.55.0 <2.0.0".
angular_forms
2.0.0-alpha+5
- Maintenance release.
- The minimum SDK version is now
sdk: ">=2.0.0-dev.55.0 <2.0.0".
angular_router
2.0.0-alpha+12
Breaking changes
- Renamed the
platformStrategyfield ofLocationtolocationStrategy,
since it's of typeLocationStrategy.
angular_test
2.0.0-alpha+11
-
Fixed a bug where a
WillNeverStabilizeErrorwas thrown whenever there was
a non-zero lengthTimerbeing executed. This was due to a bug in how the
NgStabilizerwas executing - constantly calling theupdatefunction
instead of calling it once and waiting for stabilization. -
Fixed a bug where stabilizers are considered stable even when some of them
are not.