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

5.0.0-alpha+13

Choose a tag to compare

@matanlurey matanlurey released this 24 May 23:46
· 1607 commits to master since this release

angular

5.0.0-alpha+13

Breaking changes

  • A directive with Visibility.local may 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
    @Directive or @Component annotation. This can be easily migrated to use
    @HostBinding or @HostListener.

  • Pins angular_ast and angular_compiler to avoid future versioning issues.

angular_ast

0.5.3+1

  • Fixed source span range of AttributeAst which 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 platformStrategy field of Location to locationStrategy,
    since it's of type LocationStrategy.

angular_test

2.0.0-alpha+11

  • Fixed a bug where a WillNeverStabilizeError was thrown whenever there was
    a non-zero length Timer being executed. This was due to a bug in how the
    NgStabilizer was executing - constantly calling the update function
    instead of calling it once and waiting for stabilization.

  • Fixed a bug where stabilizers are considered stable even when some of them
    are not.