0.4.1 (2021-04-19)
0.4.0 (2021-01-18)
- 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)
0.3.1 (2020-12-28)
- router: replace path-to-regexp with internal matcher (#64) (d34dfc0), closes #58
- add more demo applications (#68) (9ed17ec)
0.3.0 (2020-12-02)
- 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)
0.2.1 (2020-07-23)
- pass
exact
option when parsing route params (#36) (156f01e) - pass base to URL only when value is provided (#32) (3810e3b)
- 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)
- router: add support for relative paths (#14) (ceb4d80), closes #2 #17
- add sponsor button to repo (4c5acd4)
- 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)
- clean up observables, updated docs (cba6db6)
- 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)
- 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]="">