Skip to content

Latest commit

 

History

History
124 lines (73 loc) · 6.19 KB

CHANGELOG.md

File metadata and controls

124 lines (73 loc) · 6.19 KB

0.4.1 (2021-04-19)

Bug Fixes

  • enhance active route comparison to allow if/else restrictions (#87) (af8b7b7)

0.4.0 (2021-01-18)

Bug Fixes

  • add missing takeUntil operator (#73) (102f1b3)
  • apply nullable checks for async inputs (#74) (4b9dc22)
  • do not strip single slash in linkTo directive (#83) (33bb938), closes #71
  • do not use index for current route comparison (a9bc5be)
  • set hash from parsed URL correctly (405cb51)

Features

  • add back/forward api for router service(#78) (fdcb917), closes #19

0.3.1 (2020-12-28)

Features

  • router: replace path-to-regexp with internal matcher (#64) (d34dfc0), closes #58
  • add more demo applications (#68) (9ed17ec)

0.3.0 (2020-12-02)

Features

  • router: add ability to unregister a route (#60) (e8cff9b), closes #49
  • add deep comparison of params (#52) (1075b43)
  • sort routes based on path and matching priority (00564b4), closes #48
  • use deep compare for checking params (#57) (65ea7b6)

0.2.2 (2020-08-04)

Features

  • provide matched path in route component (#38) (da7daed)

0.2.1 (2020-07-23)

Bug Fixes

  • pass exact option when parsing route params (#36) (156f01e)
  • pass base to URL only when value is provided (#32) (3810e3b)

Features

  • allow Angular v10 as peer dependency (#31) (b0e67ba)
  • allow paths without leading slash (#34) (03ad384)
  • ng-add schematics implementation (#16) (54e728b), closes #9

0.2.0 (2020-07-21)

Bug Fixes

  • make route matching more explicit (#25) (3b8716b)

Features

BREAKING CHANGES

  • Removes usage of /** pattern for parent and wildcard routes

BEFORE:

<route path="/books/**"></route>

AFTER:

<route path="/books" [exact]="false"></route>

0.1.1 (2020-07-02)

Bug Fixes

  • clean up observables, updated docs (cba6db6)

Features

  • add Angular Getting Started application (331e825)
  • add NgRx example app (8f024e4)
  • add router lib (c2502f6)
  • add support for lazy loading NgModules (0d2aa76)
  • add tour of heroes app (588dbe6)

BREAKING CHANGES

  • The input for lazy loading has change from [loadComponent] to [load] to support components and NgModules

BEFORE:

<route path="/path" [loadComponent]="">

AFTER:

<route path="/path" [load]="">