Release angular-v6.0.0
Unclaimed project
Are you a maintainer of angular? Claim this project to take control of your public changelog and roadmap.
Release angular-v6.0.0
ComponentRef.update(). This method should be used to apply changes
to a component and then trigger change detection. Before this, change
detection and lifecycles would not always follow Angular's specifications
when imperatively loading a component, especialy for those using the OnPush
change detection strategy....build_config.The OnChanges lifecycle has been completely removed. Use AfterChanges
instead.
ExceptionHandler is no longer exported via angular/di.dart. Import this
symbol via angular/angular.dart instead.
Directives no longer support extending, implementing, or mixing in
ComponentState.
The /deep/ and `>...
The template compiler issues a warning if a component that does not project content has children. Previously, these nodes were created and never attached. Now the nodes are not created at all.
Specialized interpolation functions for Strings.
Optimization: Removes toString() calls of interpolated strings bound to properti...