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

6.0.0-alpha

Compare
Choose a tag to compare
@alorenzen alorenzen released this 07 May 01:55
· 615 commits to master since this release

angular

6.0.0-alpha

Breaking changes

  • 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 >>> combinators are no longer supported in style sheets
    of components with style encapsulation enabled. The special ::ng-deep
    pseudo-element should be used in their stead to pierce style encapsulation
    when necessary.

  • ChangeDetectorRef.checkNoChanges() has been removed from the public API.

Deprecations

  • Deprecated ChangeDetectorRef.detach() and ChangeDetectorRef.reattach().
    Components that rely on these methods should use changeDetection: ChangeDetectionStrategy.OnPush instead.

angular_test

2.3.1

  • Maintenance release to support Angular 6.0-alpha.

angular_forms

2.1.3

  • Maintenance release to support Angular 6.0-alpha.

angular_router

2.0.0-alpha+23

Bug fixes

  • Navigation requests triggered by popstate events that redirect back to the
    active route will now correctly update the browser location to match the
    active route. Prior to this fix, the browser location would be left in the
    state changed by the popstate event.

  • The history stack prior to the current entry is now preserved when
    preventing a navigation triggered by the back button. Previously, preventing
    such a navigation would erase the previous history entry, causing subsequent
    history manipulations to have unexpected results.

angular_analyzer_plugin

1.0.0-alpha

  • The Angular analyzer plugin has moved into the core angular repo, and will be
    developed by the Angular team going forward.

angular_compiler

0.4.4

  • Maintenance release to support the newest version of analyzer.

angular_ast

0.5.10

  • New ThrowingTemplateAstVisitor which throws by default in each visit
    method.