@ngrx/router-store
Advanced tools
Changelog
7.0.0 (2018-12-20)
<a name="7.0.0-beta.1"></a>
Changelog
7.0.0-beta.0 (2018-11-03)
null
value for
routeConfig
when routeConfig
doesn't exist on the
ActivatedRouteSnapshot
instead of an empty object.BEFORE:
{
"routeConfig": {}
}
AFTER:
{
"routeConfig": null
}
BEFORE:
this.actions.ofType('INCREMENT');
AFTER:
import { ofType } from '@ngrx/store';
...
this.action.pipe(ofType('INCREMENT'))
BEFORE:
AFTER
If you still need this, pass a provider like this: { provide: ROUTER_CONFIG, useFactory: _createRouterConfig // you function }
{type: '@ngrx/store/update-reducers', feature: 'feature1'}
{type: '@ngrx/store/update-reducers', feature: 'feature2'}
AFTER:
{type: '@ngrx/store/update-reducers', features: ['feature1',
'feature2']}
<a name="6.1.0"></a>
Changelog
6.1.0 (2018-08-02)
<a name="6.0.1"></a>
Changelog
6.0.0 (2018-05-23)
<a name="6.0.0-beta.3"></a>
Changelog
Changelog
6.0.0-beta.2 (2018-05-11)
BEFORE:
export enum UserActionTypes { UserAction = '[User] Action' }
export class User implements Action { readonly type = UserActionTypes.UserAction; }
export type UserActions = User;
AFTER:
export enum UserActionTypes { LoadUsers = '[User] Load Users' }
export class LoadUsers implements Action { readonly type = UserActionTypes.LoadUsers; }
export type UserActions = LoadUsers;
state
and stateInterface
were removed due to conflicts with component aliases without reasonable alternatives.@angular-devkit/core: ^0.5.0 @angular-devkit/schematics: ^0.5.0
<a name="6.0.0-beta.1"></a>