19.0.0 (2024-12-17)
Bug Fixes
- eslint-plugin: support ESM modudule syntax (.mjs) (e2f35c8)
- signals: create deep signals for custom class instances (#4614) (4d34dc4), closes #4604
Features
BREAKING CHANGES
signals: - The computed
property in SignalStoreFeatureResult
type is renamed to props
.
The EntityComputed
and NamedEntityComputed
types in the entities
plugin are renamed to EntityProps
and NamedEntityProps
.
BEFORE:
import { computed, Signal } from '@angular/core';
import { signalStoreFeature, SignalStoreFeature, type, withComputed } from '@ngrx/signals';
import { EntityComputed } from '@ngrx/signals/entities';
export function withTotalEntities<Entity>(): SignalStoreFeature<{ state: {}; computed: EntityComputed<Entity>; methods: {} }, { state: {}; computed: { total: Signal<number> }; methods: {} }> {
return signalStoreFeature(
{ computed: type<EntityComputed<Entity>>() },
withComputed(({ entities }) => ({
total: computed(() => entities().length),
}))
);
}
AFTER:
import { computed, Signal } from '@angular/core';
import { signalStoreFeature, SignalStoreFeature, type, withComputed } from '@ngrx/signals';
import { EntityProps } from '@ngrx/signals/entities';
export function withTotalEntities<Entity>(): SignalStoreFeature<{ state: {}; props: EntityProps<Entity>; methods: {} }, { state: {}; props: { total: Signal<number> }; methods: {} }> {
return signalStoreFeature(
{ props: type<EntityProps<Entity>>() },
withComputed(({ entities }) => ({
total: computed(() => entities().length),
}))
);
}
<a name="19.0.0-beta.0"">
Features
- schematics: change standalone default to true for components (#4569) (c7d0ce6)
- signals: rename
rxMethod.unsubscribe
to destroy
(#4584) (57ad5c5)
- signals: throw error in dev mode on state mutation (#4526) (7a84209)
BREAKING CHANGES
- signals: The
signalState
/signalStore
state object is frozen in development mode.
If a mutable change occurs to the state object, an error will be thrown.
BEFORE:
const userState = signalState(initialState);
patchState(userState, (state) => {
state.user.firstName = 'mutable change';
return state;
});
AFTER:
const userState = signalState(initialState);
patchState(userState, (state) => {
state.user.firstName = 'mutable change';
return state;
});
- signals: The
unsubscribe
method from rxMethod
is renamed to destroy
.
BEFORE:
const logNumber = rxMethod<number>(tap(console.log));
const num1Ref = logNumber(interval(1_000));
const num2Ref = logNumber(interval(2_000));
setTimeout(() => num1Ref.unsubscribe(), 2_000);
setTimeout(() => logNumber.unsubscribe(), 5_000);
AFTER:
const logNumber = rxMethod<number>(tap(console.log));
const num1Ref = logNumber(interval(1_000));
const num2Ref = logNumber(interval(2_000));
setTimeout(() => num1Ref.destroy(), 2_000);
setTimeout(() => logNumber.destroy(), 5_000);
- schematics: The default setting for generating components using schematics is updated.
BEFORE:
The default setting for generating components using schematics does not use standalone components.
AFTER:
The default setting for generating components using schematics uses standalone components.
- The minimum required version of Angular has been updated.
BEFORE:
The minimum required version is Angular 18.x
AFTER:
The minimum required version is Angular 19.x
18.1.1 (2024-10-29)
Bug Fixes
- data: export HttpOptions (#4564) (4909627)
- router-store: use non-const enum to allow isolatedModules tsconfig option (#4554) (f993759)
18.1.0 (2024-10-08)
Bug Fixes
Features
18.0.2 (2024-07-31)
Bug Fixes
- eslint-plugin: do not report non-array returns in no-multiple-actions-in-effects (#4418) (92a68bc)
- operators: add @ngrx/operators to packageGroup for updates (#4472) (521ce7b), closes #4465
- signals: allow modifying entity id on update (#4404) (0106e93)
18.0.1 (2024-06-27)
Bug Fixes
- component-store: resolve issues in migration script to v18 (#4403) (a15d53e)
- effects: fix bugs in migration script to v18 (#4402) (6ae4723)
- eslint-plugin: only take return statement into account with no-multiple-actions-in-effects (#4410) (c9c646c), closes #4409
Features
- signals: rename signals to computed when defining custom features with input (#4395) (05f0940), closes #4391
- signals: replace
idKey
with selectId
when defining custom entity ID (#4396) (67a5a93), closes #4217 #4392
18.0.1 (2024-06-27)
18.0.0 (2024-06-13)
Bug Fixes
Bug Fixes
- router-store: include string[] as return type for selectQueryParam (#4369) (b0b43f7)
- signals: export DeepSignal (#4377) (fa26c5c)
Features
BREAKING CHANGES
- effects: The concatLatestFrom operator has been removed from @ngrx/effects in favor of the @ngrx/operators package.
BEFORE:
import { concatLatestFrom } from '@ngrx/effects';
AFTER:
import { concatLatestFrom } from '@ngrx/operators';
- component-store: The tapResponse operator has been removed from @ngrx/component-store in favor of the @ngrx/operators package.
BEFORE:
import { tapResponse } from '@ngrx/component-store';
AFTER:
import { tapResponse } from '@ngrx/operators';
Bug Fixes
- eslint-plugin: add as devDependency via ng add (#4343) (4fe7b7f)
- schematics: set correct default value type (#4307) (51034e6)
Features
BREAKING CHANGES
- The minimum required version of Angular has been updated
BEFORE:
The minimum required version of Angular is 17.x
AFTER:
The minimum required version of Angular is 18.x
- store: The Action and TypedAction interfaces are merged into one interface.
BEFORE:
There was a separation between the Action and TypedAction interfaces.
AFTER:
The Action interface accepts a generic type parameter that represents the payload type (defaults to string).
The TypedAction interface is removed.
17.2.0 (2024-04-11)
Bug Fixes
- effects: make createEffect work with TS 5.3 (#4296) (19c1f11)
- ngrx.io: set correct path for pwa icons (#4263) (703a9c7)
- schematics: correct module while generating a feature (#4289) (7ecffe8), closes #4281
- signals: make patchState work with TS 5.4 (#4294) (6b440ee)
Features
- component-store: deprecate
tapResponse
export (#4259) (a5958a0)
- effects: deprecate
concatLatestFrom
export (#4260) (79674b7)
17.1.1 (2024-02-21)
Bug Fixes
- signals: add
StateSignal
to the public API (#4247) (3d45e5a)
- signals: correctly infer the type of methods with generics (#4249) (70517ea)
- signals: run
rxMethod
outside of reactive context (#4224) (3a691d9)
- store-devtools: replace direct with indirect
eval
(#4216) (1df0eb5), closes #4213
- signals: avoid creating unnecessary objects in excludeKeys (#4240) (b90da9d)
- signals: avoid unecessary observable conversions in rxMethod (#4219) (fa45d92)
17.1.0 (2024-01-16)
Bug Fixes
- eslint-plugin: only report main pipe violations (#4169) (970514e)
- signals: run
onDestroy
outside of injection context (#4200) (e21df19)
Features
17.0.1 (2023-11-27)
Bug Fixes
- signals: allow using signalStore and signalState in TS libs (#4152) (ecc247c)
- signals: define deep signals as configurable properties (#4147) (890ca5b)
17.0.0 (2023-11-20)
Bug Fixes
- data: DefaultDataService getAll httpOptions fix + test (#4134) (213e4c9)
- signals: remove state checks for better DX (#4124) (5749543)
Features
- signals: provide ability to use interface as state type (#4133) (9c8304a)
Features
Bug Fixes
- entity: set correct return type for getSelectors signature with parent selector (#4074) (b3b571e)
- signals: do not create nested signals for STATE_SIGNAL property (#4062) (71a9d7f)
- signals: improve state type and add type tests (#4064) (10c93ed), closes #4065
Features
BREAKING CHANGES
- component: The LetModule is removed in favor of the standalone LetDirective.
BEFORE:
import { LetModule } from '@ngrx/component';
@NgModule({
imports: [
// ... other imports
LetModule,
],
})
export class MyFeatureModule {}
AFTER:
import { LetDirective } from '@ngrx/component';
@NgModule({
imports: [
// ... other imports
LetDirective,
],
})
export class MyFeatureModule {}
- component: The
PushModule
is deprecated in favor of the standalone PushPipe
.
BEFORE:
import { PushModule } from '@ngrx/component';
@NgModule({
imports: [
PushModule,
],
})
export class MyFeatureModule {}
AFTER:
import { Component } from '@angular/core';
import { PushPipe } from '@ngrx/component';
@Component({
standalone: true,
imports: [
PushPipe,
],
})
export class MyStandaloneComponent {}
- entity: Selectors returned by the
adapter.getSelectors
signature that accepts a parent selector are strongly typed.
BEFORE:
const {
selectIds,
selectEntities,
selectAll,
selectTotal,
} = adapter.getSelectors(selectBooksState);
AFTER:
const {
selectIds,
selectEntities,
selectAll,
selectTotal,
} = adapter.getSelectors(selectBooksState);
- The minimum required version of Angular has been updated
BEFORE:
The minimum required version of Angular is 16.x
AFTER:
The minimum required version of Angular is 17.x
16.3.0 (2023-10-03)
Bug Fixes
Features
16.2.0 (2023-08-07)
Bug Fixes
- data: make DataServiceError extend from Error (#3988) (0b98a65)
- effects: register functional effects from object without prototype (#3984) (1879cc9), closes #3972
- eslint-plugin: fix prefer-contact-latest-from rule to detect inject (#3946) (2efd805)
- eslint-plugin: prefix-selectors-with-select suggestion (#3959) (27f09df)
- eslint-plugin: support inject for no-typed-global-store rule (#3951) (d3e84d8)
- eslint-plugin: support inject for use-consistent-global-store-name rule (#3983) (caa74ff)
- store-devtools: resolve memory leak when devtools are destroyed (#3965) (644f0b6)
Features
- eslint-plugin: include docs URL in lint message (#3944) (a1576de)
- schematics: add entity generation as part of feature schematic (#3850) (19ebb0a)
- store-devtools: provide the ability to connect extension outside of Angular zone (#3970) (1ee80e5), closes #3839
16.1.0 (2023-07-06)
Bug Fixes
- eslint: fix inject function based injection not detecting store (#3936) (8a5884d), closes #3834
- eslint: updater-explicit-return-type not applied when inheritance (#3928) (41a5076)
Features
- component-store: added custom equal option in select (#3933) (c4b5cc5)
16.0.1 (2023-06-01)
Bug Fixes
- component: untrack subscription in ngrxPush pipe (#3918) (a1688e4)
- ngrx.io: preserve sidenav width for larger menu items (#3923) (ef73714)
16.0.0 (2023-05-09)
Bug Fixes
- component-store: use default equality function for selectSignal (#3884) (5843e7f)
- store: add Signal equal function for immutable object comparison (#3883) (634fdcb)
- store: move Angular Signal interop into State service (#3879) (8cb5795), closes #3869
- store-devtools: add state signal to StateObservable (#3889) (ad6e14a)
Features
- add ng add support for standalone config to NgRx packages (#3881) (58508e3)
- component: add migration for LetModule and PushModule (#3872) (5f07eda)
- component: make LetDirective and PushPipe standalone (#3826) (985d80c), closes #3804
- store: add support of standalone API for ng add store (#3874) (7aec84d)
Bug Fixes
- component-store: use default equality function for selectSignal (#3884) (5843e7f)
- store: add Signal equal function for immutable object comparison (#3883) (634fdcb)
- store: move Angular Signal interop into State service (#3879) (8cb5795), closes #3869
Features
- add ng add support for standalone config to NgRx packages (#3881) (58508e3)
- component: add migration for LetModule and PushModule (#3872) (5f07eda)
- component: make LetDirective and PushPipe standalone (#3826) (985d80c), closes #3804
- store: add support of standalone API for ng add store (#3874) (7aec84d)
Bug Fixes
- data: make non-optimistic add command entity partial (#3859) (93ee1db)
Features
- component-store: add selectSignal options (503e9d8)
- component-store: add selectSignal signature that combines provided signals (#3863) (07ba3fa)
- store: add selectSignal options (0a13c4d)
Bug Fixes
- data: allow 0 to be a valid key (#3830) (e50126d), closes #3828
- effects: run user provided effects defined as injection token (#3851) (cdaeeb6), closes #3848
- store: correctly infer action group events defined as empty object (#3833) (dc78447)
- store-devtools: correctly import state when feature is set to true (#3855) (0df3419), closes #3636
Features
- component-store: add selectSignal method for interop with Angular Signals (#3861) (195d5ac)
- component-store: add tapResponse signature with observer object (#3829) (3a5e5d8)
- effects: accept ObservableInput as concatLatestFrom argument (#3838) (34dd28c)
- router-store: add @nrwl/angular data persistence operators (#3841) (4482751), closes #3777
- router-store: remove deprecated getSelectors method (#3816) (351a75e), closes #3815
- schematics: replace
any
type with unknown
type (#3827) (0ea2933)
- schematics: Use createActionGroup in schematics (#3791) (f6ce20f)
- store: add createMockStore migration (#3810) (ded4240)
- store: add selectSignal method for interop with Angular Signals (#3856) (999dcb6)
- store: preserve the event name case with createActionGroup (#3832) (482fa5d)
- store: remove deprecated createFeature method (#3825) (fd8f347), closes #3814
- store: remove forbidden chars and empty str checks from createActionGroup (#3857) (e37c57b)
- convert entity and router selectors interfaces to types (#3853) (73eb55c)
- store: remove getMockStore in favor of createMockStore (#3835) (8d0ed8e)
- store: use strict projectors for createFeature selectors (#3799) (bafd121)
- update to Angular v16.0.0-next.6 release (#3831) (d7e03df)
BREAKING CHANGES
- store: The event name case is preserved when converting to the action name by using the
createActionGroup
function.
BEFORE:
All letters of the event name will be lowercase, except for the initial letters of words starting from the second word, which will be uppercase.
const authApiActions = createActionGroup({
source: 'Auth API',
events: {
'LogIn Success': emptyProps(),
'login failure': emptyProps(),
'Logout Success': emptyProps(),
logoutFailure: emptyProps(),
},
});
const { loginSuccess, loginFailure, logoutSuccess, logoutfailure } = authApiActions;
AFTER:
The initial letter of the first word of the event name will be lowercase, and the initial letters of the other words will be uppercase. The case of other letters in the event name will remain the same.
const { logInSuccess, loginFailure, logoutSuccess, logoutFailure } = authApiActions;
- store: The
createFeature
signature with root state is removed in favor of a signature without root state.
An automatic migration is added to remove this signature.
BEFORE:
interface AppState {
users: State;
}
export const usersFeature = createFeature<AppState>({
name: 'users',
reducer: createReducer(initialState ),
});
AFTER:
export const usersFeature = createFeature({
name: 'users',
reducer: createReducer(initialState ),
});
- router-store: The deprecated
getSelectors
function has been removed from the @ngrx/router-store
package.
BEFORE:
The @ngrx/router-store package exports the getSelectors
function.
AFTER:
The @ngrx/router-store package no longer exports the getSelectors
function. A migration has been provided to replace existing usage
- schematics: NgRx Schematics do not use
any
types to define actions, these are replaced with the unknown
type.
BEFORE:
Schematics used the any
type to declare action payload type.
AFTER:
Schematics use the unknown
type to declare action payload type.
- store: The
getMockStore
function is removed in favor of createMockStore
BEFORE:
import { getMockStore } from '@ngrx/store/testing';
const mockStore = getMockStore();
AFTER:
import { createMockStore } from '@ngrx/store/testing';
const mockStore = createMockStore();
- store: Projectors of selectors generated by createFeature are strongly typed.
BEFORE:
Projector function arguments of selectors generated by createFeature are not strongly typed:
const counterFeature = createFeature({
name: 'counter',
reducer: createReducer({ count: 0 }),
});
counterFeature.selectCount.projector;
AFTER:
Projector function arguments of selectors generated by createFeature are strongly typed:
const counterFeature = createFeature({
name: 'counter',
reducer: createReducer({ count: 0 }),
});
counterFeature.selectCount.projector;
15.4.0 (2023-03-16)
Bug Fixes
Features
15.3.0 (2023-02-13)
Bug Fixes
- store: support using factory selectors as extra selectors (#3767) (f4714c3)
Features
15.2.1 (2023-01-26)
15.2.0 (2023-01-26)
Features
15.1.0 (2022-12-21)
Bug Fixes
- component-store: revert throwError usages with factory for RxJS 6 compatibility (726dfb7)
- data: revert throwError usages with factory for RxJS 6 compatibility (a137b59), closes #3702
- eslint-plugin: remove @angular-devkit/schematics dependency (#3710) (f0ae915), closes #3709
- schematics: disable package json peer dep updates during build (#3692) (9cfc103), closes #3691
- store: support using
createActionGroup
with props typed as unions (#3713) (e75fa1a), closes #3712
Features
- router-store: add new selectRouteDataParam selector (#3673) (#3686) (81bc0d9)
- store: support using
createSelector
with selectors dictionary (#3703) (5c87dda), closes #3677
15.0.0 (2022-11-29)
Features
Features
- component: clear
LetDirective
view when replaced observable is in suspense state (#3671) (ec59c4b)
- component: remove $ prefix from LetViewContext property names (#3670) (b3b21e6)
BREAKING CHANGES
- component: The
LetDirective
view will be cleared when the replaced observable is in a suspense state. Also, the suspense
property is removed from the LetViewContext
because it would always be false
when the LetDirective
view is rendered. Instead of suspense
property, use the suspense template to handle the suspense state.
BEFORE:
The LetDirective
view will not be cleared when the replaced observable is in a suspense state and the suspense template is not passed:
@Component({
template: `
<!-- When button is clicked, the 'LetDirective' view won't be cleared. -->
<!-- Instead, the value of 'o' will be 'undefined' until the replaced -->
<!-- observable emits the first value (after 1 second). -->
<p *ngrxLet="obs$ as o">{{ o }}</p>
<button (click)="replaceObs()">Replace Observable</button>
`,
})
export class TestComponent {
obs$ = of(1);
replaceObs(): void {
this.obs$ = of(2).pipe(delay(1000));
}
}
AFTER:
The LetDirective
view will be cleared when the replaced observable is in a suspense state and the suspense template is not passed:
@Component({
template: `
<!-- When button is clicked, the 'LetDirective' view will be cleared. -->
<!-- The view will be created again when the replaced observable -->
<!-- emits the first value (after 1 second). -->
<p *ngrxLet="obs$ as o">{{ o }}</p>
<button (click)="replaceObs()">Replace Observable</button>
`,
})
export class TestComponent {
obs$ = of(1);
replaceObs(): void {
this.obs$ = of(2).pipe(delay(1000));
}
}
- component: The
$
prefix is removed from LetViewContext
property names.
BEFORE:
<ng-container *ngrxLet="obs$; $error as e; $complete as c"> ... </ng-container>
AFTER:
<ng-container *ngrxLet="obs$; error as e; complete as c"> ... </ng-container>
Features
- data: add initial standalone APIs (#3647) (aa7ed66), closes #3553
- data: add withEffects feature for provideEntityData (#3656) (a6959e8)
- effects: forRoot and forFeature accept spreaded array (#3638) (0eaa536)
- router-store: return resolved title via selectTitle (#3648) (cc04e2f), closes #3622
- schematics: add display block flag (e0d368d)
- schematics: add standalone flag (b0bd2ff)
- schematics: replace environments usage with isDevMode (#3645) (4f61b63), closes #3618
BREAKING CHANGES
- router-store: Property
title: string | undefined
is added to the MinimalActivatedRouteSnapshot
interface.
BEFORE:
The MinimalActivatedRouteSnapshot
interface doesn't contain the title
property.
AFTER:
The MinimalActivatedRouteSnapshot
interface contains the required title
property.
Features
BREAKING CHANGES
- component:
ReactiveComponentModule
is removed in favor of LetModule
and PushModule
.
BEFORE:
import { ReactiveComponentModule } from '@ngrx/component';
@NgModule({
imports: [
ReactiveComponentModule,
],
})
export class MyFeatureModule {}
AFTER:
import { LetModule, PushModule } from '@ngrx/component';
@NgModule({
imports: [
LetModule,
PushModule,
],
})
export class MyFeatureModule {}
- store: The projector method has become strict
BEFORE:
You could pass any arguments to the projector method
const selector = createSelector(
selectString, // returning a string
selectNumber, // returning a number
(s, n, prefix: string) => {
return prefix + s.repeat(n);
}
)
// you could pass any argument
selector.projector(1, 'a', true);
AFTER:
const selector = createSelector(
selectString, // returning a string
selectNumber, // returning a number
(s, n, prefix: string) => {
return prefix + s.repeat(n);
}
)
// this throws
selector.projector(1, 'a', true);
// this does not throw because the arguments have the correct type
selector.projector(1, 'a', 'prefix');
- store: The projector function on the selector is type-safe by default.
BEFORE:
The projector is not type-safe by default, allowing for potential mismatch types in the projector function.
const mySelector = createSelector(
() => 'one',
() => 2,
(one, two) => 3
);
mySelector.projector();
AFTER:
The projector is strict by default, but can be bypassed with an any
generic parameter.
const mySelector = createSelector(
() => 'one',
() => 2,
(one, two) => 3
);
mySelector.projector();
To retain previous behavior
const mySelector = createSelector(
() => 'one',
() => 2,
(one, two) => 3
)(mySelector.projector as any)();
- effects: The @Effect decorator is removed
BEFORE:
Defining an effect is done with @Effect
@Effect()
data$ = this.actions$.pipe();
AFTER:
Defining an effect is done with createEffect
data$ = createEffect(() => this.actions$.pipe());
- effects: The signature of
provideEffects
is changed to expect a
spreaded array of effects.
BEFORE:
provideEffects
expecteded the effects to be passed as an array.
provideEffects([MyEffect]);
provideEffects([MyEffect, MySecondEffect]);
AFTER:
provideEffects
expects the effects as a spreaded array as argument.
provideEffects(MyEffect);
provideEffects(MyEffect, MySecondEffect);
14.3.2 (2022-10-04)
Bug Fixes
- component: replace animationFrameScheduler with requestAnimationFrame (#3592) (0a4d2dd), closes #3591
- component-store: use asapScheduler to schedule lifecycle hooks check (#3580) (02431b4), closes #3573
- eslint-plugin: avoid-combining-selectors with arrays should warn (#3566) (4b0c6de)
- router-store: set undefined for unserializable route title (#3593) (8eb4001), closes #3495
- store: fix typing of on fn (#3577) (d054aa9), closes #3576
14.3.1 (2022-09-08)
Bug Fixes
14.3.0 (2022-08-25)
Features
14.2.0 (2022-08-18)
Bug Fixes
- component-store: make synchronous updater errors catchable (#3490) (1a906fd)
- component-store: move isInitialized check to queueScheduler context on state update (#3492) (53636e4), closes #2991
Features
- component-store: handle errors in next callback (#3533) (551c8eb)
14.1.0 (2022-08-09)
Bug Fixes
- eslint-plugin: allow sequential dispatches in a different block context (#3515) (faf446f), closes #3513
- eslint-plugin: Remove the md suffix from the docsUrl path (#3518) (71d4d4b)
- store: improve error for forbidden characters in createActionGroup (#3496) (398fbed)
Features
- component: add RenderScheduler to the public API (#3516) (4642919)
- component: replace markDirty with custom TickScheduler (#3488) (3fcd8af)
- component: do not schedule render for synchronous events (#3487) (bb9071c)
14.0.2 (2022-07-12)
Bug Fixes
- component: import operators from rxjs/operators (#3479) (20ef7a4)
- component-store: effect handles generics that extend upon a type (#3485) (9d2bda7), closes #3482
- data: add TSDoc annotations (#3483) (cbbc49f)
- eslint-plugin: fix configuration guide link (#3480) (8219b1d)
14.0.1 (2022-06-29)
Bug Fixes
- component-store: allow void callbacks in effect (#3466) (e6dedd6), closes #3462
- component-store: import operators from rxjs/operators (#3465) (f9ba513)
- schematics: add workingDirectory to schemas (#3473) (50ea6b3), closes #3469
- schematics: create schematicCollections if not exists (#3470) (011cbcc)
14.0.0 (2022-06-20)
Bug Fixes
- component: do not exclude falsy types from LetDirective's input type (#3460) (7028adb)
Code Refactoring
- router-store: change name for full router state serializer (#3430) (d443f50), closes #3416
Features
- component: add separate modules for PushPipe and LetDirective (#3449) (eacc4b4), closes #3341
- component: deprecate ReactiveComponentModule (#3451) (b4dd2c8)
- eslint-plugin: improve install flow (#3447) (8ddaf60)
- schematics: use schematicCollections instead of defaultCollection (#3441) (5abf828), closes #3383
BREAKING CHANGES
- router-store: The full router state serializer has been renamed.
BEFORE:
The full router state serializer is named DefaultRouterStateSerializer
AFTER:
The full router state serializer is named FullRouterStateSerializer
. A migration is provided to rename the export in affected projects.
Bug Fixes
- store: rename template literal to string literal for createActionGroup (#3426) (7d08db1)
Features
- component: reset state / trigger CD only if necessary (#3328) (f5b055b)
BREAKING CHANGES
- The context of
LetDirective
is strongly typed when null
or
undefined
is passed as input.
BEFORE:
<p *ngrxLet="null as n">{{ n }}</p>
<p *ngrxLet="undefined as u">{{ u }}</p>
- The type of
n
is any
.
- The type of
u
is any
.
AFTER:
<p *ngrxLet="null as n">{{ n }}</p>
<p *ngrxLet="undefined as u">{{ u }}</p>
Creating actions, reducers, and effects is possible without using the creator syntax is possible.
AFTER:
BEFORE:
Minimum version of Angular was 13.x
AFTER:
Minimum version of Angular is 14.x
- component: The native local rendering strategy is replaced by global
in zone-less mode for better performance.
BEFORE:
The change detection is triggered via changeDetectorRef.detectChanges
in zone-less mode.
AFTER:
The change detection is triggered via ɵmarkDirty
in zone-less mode.
- component: The
$error
property from LetDirective
's view context is
a thrown error or undefined
instead of true
/false
.
BEFORE:
<p *ngrxLet="obs$; $error as e">{{ e }}</p>
e
will be true
when obs$
emits error event.
e
will be false
when obs$
emits next/complete event.
AFTER:
<p *ngrxLet="obs$; $error as e">{{ e }}</p>
e
will be thrown error when obs$
emits error event.
e
will be undefined
when obs$
emits next/complete event.
13.1.0 (2022-03-28)
Bug Fixes
- component-store: memoization not working when passing selectors directly to select (#3356) (38bce88)
- entity: add default options to entity adapter when undefined is passed (#3287) (17fe494)
- store: add explicit overloads for createSelector (#3354) (2f82101), closes #3268
Features
- data: add ability to configure trailing slashes (#3357) (56aedfd)
- store-devtools: add REDUX_DEVTOOLS_EXTENSION injection token to public API (#3338) (b55b0e4)
13.0.2 (2021-12-07)
Bug Fixes
13.0.1 (2021-11-17)
Bug Fixes
- store: add migration for create selector generics (#3237) (5d97a11)
13.0.0 (2021-11-16)
Bug Fixes
Features
BREAKING CHANGES
- store: When manually specifying the generic arguments, you have to specify the selector's list of selector return values.
BEFORE:
createSelector<Story[], Story[], Story[][]>;
AFTER:
createSelector<Story[], [Story[]], Story[][]>;
- data: Now both the
getWithQuery
and getAll
methods are consistent and do set loaded
property to true on dispatching their success actions respectively.
BEFORE:
The getWithQuery
method would not set the loaded
property to true upon success
AFTER:
The getWithQuery
method sets the loaded
property to true upon success
Bug Fixes
- component: remove class-level generic from PushPipe (#3127) (548c72c), closes #3114
- store: infer initial store state properly with metareducers (#3102) (d003b85), closes #3007
- store: remove store config from forFeature signature with slice (#3218) (b1a64dd), closes #3216
build
Features
- effects: move createEffect migration to ng-update migration (#3074) (5974913)
- store: add createFeatureSelector migration (#3214) (62334f9)
- store: provide better TS errors for action creator props (#3060) (5ed3c3d), closes #2892
BREAKING CHANGES
- The minimum version required for Angular and RxJS has been updated
BEFORE:
Angular 12.x is the minimum version
RxJS 6.5.x is the minimum required version
AFTER:
Angular 13.0.0-RC.0 is the minimum version
RxJS 7.4.x is the minimum required version
- store: The
StoreConfig
argument is removed from the StoreModule.forFeature
signature with FeatureSlice
.
BEFORE:
The StoreModule.forFeature
signature with FeatureSlice
has StoreConfig
as the second input argument, but the configuration isn't registered if passed.
AFTER:
The StoreModule.forFeature
signature with FeatureSlice
no longer has StoreConfig
as the second input argument.
- store:
initialState
needs to match the interface of the store/feature.
BEFORE:
Missing properties were valid
StoreModule.forRoot(reducers, {
initialState: { notExisting: 3 },
metaReducers: [metaReducer],
});
AFTER:
A type error is produced for initialState that does not match the store/feature
StoreModule.forRoot(reducers, {
initialState: { notExisting: 3 },
metaReducers: [metaReducer],
});
- component: PushPipe no longer has a class-level generic type parameter.
BEFORE:
Use of PushPipe outside of component templates required a generic
AFTER:
Use of PushPipe outside of component templates no longer requires a generic
- store: Types for props outside an action creator is more strictly checked
BEFORE:
Usage of props
outside of an action creator with invalid types was allowed
AFTER:
Usage of props
outside of an action creator now breaks for invalid types
- effects: The create-effect-migration migration is removed
BEFORE:
The Effect decorator removal and migration are done manually through schematics.
AFTER:
The Effect decorator removal and migration are performed automatically on upgrade to version 13 of NgRx Effects.
12.5.1 (2021-10-25)
Bug Fixes
12.5.0 (2021-10-14)
Bug Fixes
- entity: set correct input argument types for removeMutably methods (#3148) (9611415)
- schematics: add missing method (#3157) (2a927a2)
- schematics: use prefix option in feature schematic (#3139) (5fa8890), closes #3116
Features
12.4.0 (2021-08-11)
Bug Fixes
- component: capture errors from observable when using
ngrxPush
pipe and ngrxLet
directive (23c846b), closes #3100
Features
- router-store: add createRouterSelector to select router data for default config (#3103) (507f58e)
12.3.0 (2021-07-22)
Bug Fixes
Features
- store: make reducers accessible from ReducerManager (#3064) (bf2bd1a)
12.2.0 (2021-06-29)
Bug Fixes
- component: avoid early destruction of view in ngrxLet which interfered with animations (#2890) (#3045) (7515e36)
- data: make options optional on add with partial (#3043) (1620df9)
Features
- component-store: accept error type in
tapResponse
(#3056) (61e1963)
12.1.0 (2021-06-09)
Bug Fixes
Features
12.0.0 (2021-05-12)
Features
- store: register eslint-plugin-ngrx with ng add (#3014) (5259890)
Bug Fixes
Bug Fixes
- component: include files in ng-add schematics (ad13c9c)
- component-store: include files in ng-add schematics (bfef622)
- data: include files in ng-add schematics (526edd9)
- effects: ng-add schematics will generate effects files properly (4389307)
- entity: include files in ng-add schematics (4d9f647)
- router-store: include files in ng-add schematics (eb71d5c)
- store: ng-add schematics will generate router files if minimal set to false (74a2671)
- store-devtools: include files in ng-add schematics (ac706de)
build
- update to Angular libraries to version 12 RC.0 (#3000) (4fb030e)
- update to Nx version 12.0.x and TypeScript 4.1.x (#2999) (cb258cb)
Features
BREAKING CHANGES
- Minimum versions of Angular and TypeScript have been updated
BEFORE:
Minimum of Angular version 11.x
Minimum of TypeScript 4.1.x
AFTER:
Minimum of Angular version 12.x
Minimum of TypeScript 4.2.x
- The minimum TypeScript version has been updated to 4.1.x
BEFORE:
The minimum TypeScript version is 4.0.x
AFTER:
The minimum TypeScript version is 4.1.x
11.1.1 (2021-04-20)
Bug Fixes
Features
11.1.0 (2021-03-31)
Bug Fixes
Features
- component-store: add ability for patchState to accept Observable (#2937) (8930e22), closes #2852
- schematics: add component store schematics (#2886) (f086f80), closes #2570
11.0.1 (2021-02-15)
Bug Fixes
11.0.0 (2021-02-09)
Bug Fixes
- component: remove ? from LetViewContext props to prevent 'possibly undefined' error in strict mode (#2876) (c3ac252)
- component: transform to Observable if Input is Promise (b611367)
- data: make entity param partial when is not optimistic (#2899) (bb70e6c), closes #2870
- data: type overloaded add for is optimistic true | undefined (#2906) (6d46ac4)
- push: fix return typing for observables to include undefined (#2907) (abcc599), closes #2888
- router-store: cast return type as RouterReducerState (#2887) (d489484)
Features
- schematics: speed up create effect migration (#2873) (2f5dcb4)
BREAKING CHANGES
ngrxPush typing doesn't consider undefined
when the input type is an observable
AFTER:
ngrxPush typing considers undefined
when the input type is an observable
Bug Fixes
- update Angular peer dependencies to version 11 (#2843) (f63d281), closes #2842
- component: add schematic assets to ng-package.json (9598527), closes #2819
- component-store: add schematic assets to ng-package.json (0e3b52d), closes #2819
- component-store: adjust updater to accept partials (#2765) (b54b9b6), closes #2754
- router-store: ingore slash when comparing routes (#2834) (cad3f60), closes #2829 #1781
- schematics: add schematics to devDependencies (#2784) (daf1889)
- store: add noop for all methods in MockReducerManager (#2777) (a489b48), closes #2776
- store: correct types for SelectorFactoryConfig (#2752) (aa9bf1a)
Code Refactoring
- use consistent naming of injection tokens across packages (#2737) (e02d0d4)
Features
- component-store: add patchState method (#2788) (ecedadb)
- component-store: add tapResponse operator (#2763) (d1873c9)
- component-store: allow more than 4 selects (#2841) (7c29320)
- effects: add support for provideMockActions outside of the TestBed (#2762) (c47114c)
- effects: allow usage of empty forRoot array multiple times (#2774) (5219ff5)
- entity: remove addAll (#2783) (93a4754)
- router-store: add selectParamFromRouterState selector (#2771) (3a1f359), closes #2758
- router-store: Add urlAfterRedirects (#2775) (14553f6)
- store: add object-style StoreModule.forFeature overload (#2821) (17571e5), closes #2809
- store: add support for provideMockStore outside of the TestBed (#2759) (1650582), closes #2745
- router-store: optimize selectQueryParams, selectQueryParam and selectFragment selectors (#2764) (918f184)
BREAKING CHANGES
- router-store: Router-store selectors for query params and fragment select from the root router state node. This could potentially break unit tests, but is functionally equivalent to the current behavior at runtime.
BEFORE:
selectQueryParams - returns query params from the last router state node
selectQueryParam - returns a query param from the last router state node
selectFragment - returns the fragment from the last router state node
AFTER:
selectQueryParams - returns query params from routerState.root
selectQueryParam - returns a query param from routerState.root
selectFragment - returns the fragment from routerState.root
- Angular peer dependency versions are bumped to latest major (11)
BEFORE:
Minimum Angular peer dependency version is ^10.0.0
AFTER:
Minimum Angular peer dependency version is ^11.0.0
- entity: To overwrite the entities, we previously used the
addAll
method but the method name was confusing.
BEFORE:
adapter.addAll(action.entities, state);
AFTER:
The new method name setAll
describes the intention better.
adapter.setAll(action.entities, state);
- refactor(data): use the setAll adapter method
- The initial state Injection Token for
@ngrx/component-store
has been renamed
BEFORE:
Injection Token is initialStateToken
AFTER:
Injection Token is INITIAL_STATE_TOKEN
10.0.1 (2020-10-07)
Bug Fixes
- component: add entry point for schematic (#2688) (d937275), closes #2683
- component-store: add entry point for schematic (#2687) (f8928e3), closes #2682
- schematics: prevent ng-add from rewriting other workspace cli options (#2731) (37354aa)
- store: prevent unexpected behavior of {} as a props type (#2728) (63510a8)
10.0.0 (2020-08-10)
Bug Fixes
- router-store: add safety check to schematic (#2632) (255e9e8)
Code Refactoring
Features
BREAKING CHANGES
- component-store: EffectReturnFn has been removed and the effect type is stricter and more predictable.
BEFORE:
If effect was const e = effect((o: Observable<string>) => ....) it was still possible to call e() without passing any strings
AFTER:
If effect was const e = effect((o: Observable<string>) => ....) its not allowed to call e() without passing any strings
Bug Fixes
- example-app: update snapshot (f2af688)
- schematics: fix unit tests for JSON with comments (155ec1c)
Features
- component: add ng-add and ng-update schematics (#2611) (3f2bea4)
- component-store: add config for debounce selectors (#2606) (ddf0271)
- component-store: add imperative reads (#2614) (2146774)
- component-store: add ng-add and ng-update schematics (#2598) (af7b2cc), closes #2569
schematics
BREAKING CHANGES
- The skipTest option has been renamed to skipTests
BEFORE:
ng generate container UsersPage --skipTest
AFTER:
ng generate container UsersPage --skipTests
Bug Fixes
- component: detect zone.js using instanceof comparison (#2547) (7128667)
- component: removed ivy checks as obsolete (#2579) (e239950)
- component-store: export EffectReturnFn interface (#2555) (f2a2212)
- data: mergeQuerySet uses mergeStrategy (#2430) (e1720b4), closes #2368
- entity: remove incorrect ComparerStr type (#2584) (4796c97)
- schematics: add comma before devtools for empty imports (#2542) (f2d4ebc)
Chores
- update Angular dependencies to latest v10 RC (#2573) (ed28449)
Features
- component-store: add support for selectors (#2539) (47e7ba3)
- component-store: add support for side effects (#2544) (f892cc8)
- component-store: make library compatible with ViewEngine (#2580) (ba0818e)
- router-store: add route fragment selector (#2543) (aba7368)
- component-store: push updates to queueScheduler and single selectors to asapSchedulers (#2586) (58073ab)
BREAKING CHANGES
- entity: The compare function is used in two places, neither of which expect it to be able to return a string:
The first caller is the Array prototype sort function, and there it "should return a negative, zero, or positive value, depending on the arguments".
The second caller does a numerical comparison with the result.
Even though an id can be a string, the result of a comparison shouldn't be.
BEFORE:
The sortComparer types allow for a string to be returned
AFTER:
The sortComparer types only allow a number to be returned
Angular v9 are minimum dependencies
AFTER:
Angular v10 are minimum dependencies
9.2.0 (2020-05-28)
Bug Fixes
- router-store: selects should return selectors (#2517) (831e1e4), closes #2516
- schematics: components should inject the store without generic (#2512) (4f7dcdc)
- schematics: use skipTests flag consistently, deprecate skipTest option (#2522) (83033d7), closes #2521
- store: remove circular dependency for mock import (#2540) (4892fa2)
Features
- component: add ngrxPush migration (#2452) (0775093), closes #2450
- component-store: add initial setup (#2519) (a2657ac)
- component-store: initialization + updater/setState (#2528) (3545df2)
- effects: catch action creators being returned in effect without being called (#2536) (100970b)
- store: add ngrxMockEnvironment function to control output during testing (#2513) (da1a0c0), closes #2363
- store: add runtime check for action type uniqueness (#2520) (2972980)
9.1.2 (2020-05-06)
9.1.1 (2020-05-05)
Bug Fixes
- router-store: selectors should return MemoizedSelector (#2492) (39a4b91)
- schematics: use Angular default properties when not defined (#2507) (7cd0624), closes #1036
- store: ignore Ivy in runtime checks (#2491) (46d752f), closes #2404
9.1.0 (2020-04-07)
Bug Fixes
Features
- component: add ngrxPush pipe and ngrxLet directive to @ngrx/component package (#2046) (464073d)
- effects: add user provided effects to EffectsModule.forFeature (#2231) (59ce3e2), closes #2232
- schematics: export reducer directly when Ivy is enabled (#2440) (b68fa67)
9.0.0 (2020-03-09)
Features
Bug Fixes
- data: correct AppEntityServices example in ngrx data doc page (#2413) (711ba0e), closes #2280
- example: fix a typo selectShowSidenav (#2414) (c9ebb06)
Features
Bug Fixes
- docs: replace duplicate link (#2399) (d4502b4)
- effects: use source instance for ngrxOnRunEffects to retain context (#2401) (79c830c)
Features
Bug Fixes
- data: Angular 9 style ModuleWithProvider (#2356) (#2357) (182f140)
- data: change type of filter observable (#2349) (94f3ef1), closes #2337
- data: EntityDataModuleWithoutEffect ModuleWithProviders (#2366) (234ce84)
- data: make mergeServerUpserts change state immutably (#2374) (#2389) (b3a49c1)
- data: make undoMany remove tracking changes in changeState (#2346) (#2352) (637b2c7)
- data: use ng_package for bundling instead of pkg_npm (9a935b1)
- effects: dispatch OnInitEffects action after registration (#2386) (daf1e64), closes #2373
- store: provide the same instance of MockStore (#2381) (827f336), closes #2362
Features
- effects: limit retries to 10 by default (#2376) (88124a7), closes #2303
- store: add strictActionWithinNgZone runtime check (#2364) (4cae255), closes #2339
- store: testing - clean up mock store and remove static property (#2361) (ee2c114)
Bug Fixes
- data: allow additional selectors in entitySelectors$ (#2332) (900bf75)
- effects: dispatch init action once (#2164) (a528320), closes #2106
- effects: fix specs for ng-add tests (#2314) (98d6606)
- schematics: migrate spec to skipTest to be in line with Angular CLI (#2253) (714ae5f), closes #2242
- store: add not allowed check to action creator config (#2313) (f6336d5)
- store: allow union of types in props (#2301) (33241cb)
- store: replace Creator with ActionCreator on createAction (#2299) (fe6bfa7)
Chores
Code Refactoring
Features
- component: initial setup (#2257) (b8a769a)
- docs: add presskit page (#2296) (9ac1165), closes #2293
- effects: add migration for breaking change that renames effects error handler config key (#2335) (93b4081)
- effects: make resubscription handler overridable (#2295) (3a9ad63), closes #2294
- entity: deprecate addAll and rename it to setAll (#2348) (27f5059), closes #2330
- router: enabling MinimalRouterStateSerializer by default (#2326) (ba37ad8), closes #2225
- router-store: add migration to add the default serializer (#2291) (b742a8c)
- schematics: update creators to the default (6149753)
- store: add default generic type to Store and MockStore (#2325) (09daeb9)
- store: ignore actions from NgRx libraries in runtime checks (#2351) (0dabfc4)
- update to Angular 9-rc.13 (#2345) (d7fdf7f)
- store: add clearResult to reset a mock selector (#2270) (803295b), closes #2244
- store: compile time errors when action creators being passed to dispatch without () (#2306) (98b74ad)
- store: enable immutability checks by default (#2266) (1758d34), closes #2217
- store: testing - expose MockStore provider (#2331) (ef5cd5f), closes #2328
BREAKING CHANGES
- router: The MinimalRouterStateSerializer is enabled by default.
BEFORE:
If no router state serializer is provided through the configuration of router store, the DefaultRouterStateSerializer is used.
AFTER:
If no router state serializer is provided through the configuration of router store, the MinimalRouterStateSerializer is used.
- effects:
resubscribeOnError
renamed to useEffectsErrorHandler
in createEffect
metadata
BEFORE:
class MyEffects {
effect$ = createEffect(() => stream$, {
resubscribeOnError: true,
});
}
AFTER:
class MyEffects {
effect$ = createEffect(() => stream$, {
useEffectsErrorHandler: true,
});
}
When the effect class was registered, the init action would be dispatched.
If the effect was provided in multiple lazy loaded modules, the init action would be dispatched for every module.
AFTER:
The init action is only dispatched once
The init action is now dispatched based on the identifier of the effect (via ngrxOnIdentifyEffects)
- schematics: To be inline with the Angular CLI, we migrated the
--spec
to --skipTest
.
By default skipTest is false, this way you will always be provided with *.spec.ts files
BEFORE:
ng generate action User --spec
AFTER:
ng generate action User
Using mockSelector.setResult(undefined)
resulted in clearing the
return value.
AFTER:
Using mockSelector.setResult(undefined)
will set the return value of
the selector to undefined
.
To reset the mock selector, use mockSelector.clearResult()
.
- schematics: To be inline with the Angular CLI, the
styleExt
option has been changed to style
.
BEFORE:
"@schematics/angular:component": {
"inlineStyle": true,
"prefix": "aio",
"styleext": "scss"
}
...
AFTER:
"@schematics/angular:component": {
"inlineStyle": true,
"prefix": "aio",
"style": "scss"
}
....
- store: Immutability checks are enabled by default.
BEFORE:
Immutability checks are opt-in.
AFTER:
If state or action is mutated then there will be a run time exception thrown.
- schematics: With this change by default the minimal setup for
@ngrx/store
will be generated.
BEFORE:
@NgModule({
declarations: [
AppComponent,
],
imports: [
BrowserModule,
StoreModule.forRoot(reducers, {
metaReducers,
runtimeChecks: {
strictStateImmutability: true,
strictActionImmutability: true
}
}),
.....
],
providers: [],
bootstrap: [AppComponent]
})
AFTER:
@NgModule({
declarations: [
AppComponent,
],
imports: [
BrowserModule,
StoreModule.forRoot({})
....
],
providers: [],
bootstrap: [AppComponent]
})
The create functions weren't the default to create actions, reducers and effects
AFTER:
The create functions are the default to create actions (createAction, reducers (createReducer) and effects (createEffect)
To fallback to the previous generators, use
sh
ng generate reducer ReducerName --creators=false
- Libraries will depend on Angular version 9
8.6.0 (2019-12-18)
Features
- router-store: add action creator for root router actions (#2272) (f17589f), closes #2206
8.5.2 (2019-11-21)
Bug Fixes
- effects: add EffectsRootModule and EffectsFeatureModule to public API (#2273) (abe1f6b)
- store: added noop for addFeature in MockReducerManager (#2265) (c42e444), closes #2263
- store-devtools: escaping the safelist and blocklist strings (#2259) (e888977), closes #2228
8.5.1 (2019-11-12)
Bug Fixes
8.5.0 (2019-11-07)
Bug Fixes
Features
- data: add entity config in app module declaration for ng-add (#2133) (6ca3056)
- effects: createEffect returns specific type for dispatch false (#2195) (f70600f)
- effects: improve types for ofType with action creators (#2175) (cf02dd2)
- schematics: add message prompts for individual schematics (#2143) (fcb01e2)
- schematics: add selector schematics (#2160) (78817c7), closes #2140
- store: add On interface to public api (#2157) (1b4ba1a)
8.4.0 (2019-10-09)
Bug Fixes
- schematics: fixed the schematics/action spec template (#2092) (ed3b1f9), closes #2082
- store: improve consistency of memoized selector result when projection fails (#2101) (c63941c), closes #2100
Features
- effects: throw error when forRoot() is used more than once (b46748c)
- schematics: add createEffect migration schematic (#2136) (9eb1bd5)
- store: add refreshState method to mock store (#2148) (30e876f), closes #2121
- store: allow multiple on handlers for the same action in createReducer(#2103) (9a70262), closes #1956
- store: cleanup selector after a test (2964e2b)
- store: throw error when forRoot() is used more than once (4304865)
8.3.0 (2019-08-29)
Bug Fixes
- data: use correct guard when handling optimistic update (#2060) (34c0420), closes #2059
- store: add DefaultProjectorFn to public API (#2090) (2d37b48)
- store: should not run schematics when not using named imports (#2095) (7cadbc0), closes #2093
Features
- store: add verbose error message for undefined feature state in development mode (#2078) (6946e2e), closes #1897
8.2.0 (2019-07-31)
Bug Fixes
Features
- docs: enable search functionality (#2020) (3cc4f3d)
- router-store: add selectQueryParam and selectRouteParam (#2014) (57fd3d7)
- schematics: add option to use MockStore in container tests (#2029) (6905d52), closes #2028
- store: add USER_RUNTIME_CHECKS public token (#2006) (fa8da34), closes #1973
8.1.0 (2019-07-09)
Bug Fixes
- data: allow ChangeSetItemFactory to update entities with number ids (#1995) (f11c7b2), closes #1988
- data: search for replacements in all files when using ng-add (#1971) (30ce2c6)
- store: add immutability check for IE compatibility (#1997) (11c0864), closes #1991
- store: fix typo in runtime checks injection token description (#1975) (125d950), closes #1972
Features
- effects: add support for minimal setup option for ng-add (e839568)
- effects: export EffectConfig and add docs (6a4bbcf)
- schematics: add support for minimal setup option for store and effects (cede393)
- schematics: enable immutability checks for root store by default (#1983) (2b8178d), closes #1950
- store: add support for minimal setup option for ng-add (12202a7)
8.0.1 (2019-06-10)
Bug Fixes
- store: prevent passing of action creator function to store dispatch and effects (#1914) (78153cb), closes #1906
8.0.0 (2019-06-06)
Features
- fine tune schematics to only commit changes (#1925) (5fcdd3b)
Bug Fixes
- router-store: remove circular dependency in serializers (#1904) (0407c5b), closes #1902
Features
Bug Fixes
- update signature for createSelectorFactory and createSelector to return a MemoizedSelector (#1883) (8b31da7)
- store: adjust mock store to handle selectors with props (#1878) (a7ded00), closes #1864 #1873
Features
- effects: resubscribe to effects on error (#1881) (71137e5)
- example: add examples of effects not based on the Actions stream (#1845) (3454e70), closes #1830
- router-store: add routerState config option (#1847) (d874cfc), closes #1834
- router-store: add selectors for router state (#1874) (21c67cc), closes #1854
- store: split immutibility checks in state and action checks (#1894) (c59c211)
Reverts
BREAKING CHANGES
- effects: Prior to introduction of automatic resubscriptions on errors, all effects had effectively {resubscribeOnError: false} behavior. For the rare cases when this is still wanted please add {resubscribeOnError: false} to the effect metadata.
BEFORE:
login$ = createEffect(() =>
this.actions$.pipe(
ofType(LoginPageActions.login),
mapToAction(
(action) => this.authService.login(action.credentials).pipe(map((user) => AuthApiActions.loginSuccess({ user }))),
(error) => AuthApiActions.loginFailure({ error })
)
)
);
AFTER:
login$ = createEffect(
() =>
this.actions$.pipe(
ofType(LoginPageActions.login),
mapToAction(
(action) => this.authService.login(action.credentials).pipe(map((user) => AuthApiActions.loginSuccess({ user }))),
(error) => AuthApiActions.loginFailure({ error })
)
),
{ resubscribeOnError: false }
);
- The return type of the createSelectorFactory and createSelector is now a MemoizedSelector instead of a Selector
Bug Fixes
- data: update the package name for replacement to ngrx-data (#1805) (00c00e0), closes #1802
- example: resolve circular dependency (#1833) (1fbd59c)
Features
- effects: add mapToAction operator (#1822) (1ff986f), closes #1224
- store: add option to mock selectors in MockStoreConfig (#1836) (070228c), closes #1827
- store: expand createReducer type signature to support up to ten action creators (#1803) (63e4926)
- store: warn when same action is registered (#1801) (ecda5f7), closes #1758
Reverts
Features
Bug Fixes
- effects: add the export of EffectMetadata (#1720) (214316f)
- example: handle possible undefined results from Dictionary (#1745) (861b0cb), closes #1735
- schematics: check for empty name when using store schematic for feature states (#1659) (#1666) (3b9b890)
- store: add the missing bracket in immutability meta-reducer (#1721) (56f8a59)
- Store: selector with only a projector (#1579) (da1ec80), closes #1558
- StoreDevTools: rename action list filters (#1589) (5581826), closes #1557
Code Refactoring
Features
BREAKING CHANGES
- entity: Dictionary could be producing undefined but previous typings were not explicit about it.
- Store: Internal functions and tokens are removed from the public API
- router-store: usage of forRoot is now required for StoreRouterConnectingModule
BEFORE:
@NgModule({
imports: [StoreRouterConnectingModule],
})
export class AppModule {}
AFTER:
@NgModule({
imports: [StoreRouterConnectingModule.forRoot()],
})
export class AppModule {}
- Store: Selectors with only a projector function aren't valid anymore.
This change will make the usage more consistent.
BEFORE:
const getTodosById = createSelector((state: TodoAppSchema, id: number) => state.todos.find((p) => p.id === id));
AFTER:
const getTodosById = createSelector(
(state: TodoAppSchema) => state.todos,
(todos: Todo[], id: number) => todos.find((p) => p.id === id)
);
- StoreDevTools:
actionsWhitelist
is renamed to actionsSafelist
actionsBlacklist
is renamed to actionsBlocklist
BEFORE:
StoreDevtoolsModule.instrument({
actionsWhitelist: ['...'],
actionsBlacklist: ['...'],
});
AFTER:
StoreDevtoolsModule.instrument({
actionsSafelist: ['...'],
actionsBlocklist: ['...'],
});
7.4.0 (2019-03-29)
Bug Fixes
Features
7.3.0 (2019-02-27)
Bug Fixes
- schematics: type actions and avoid endless loop in effect schematic (#1576) (5fbcb3c), closes #1573
- store: deprecate signature for selector with only a projector (#1580) (e86c5f6)
Features
- schematics: Add ng-add support with prompt for making our schematics default (#1552) (01ff157)
7.2.0 (2019-01-29)
Bug Fixes
- Entity: add schematics to bazel build (88d0ad5)
- RouterStore: add schematics to bazel build (7465af9)
- StoreDevTools: out of bounds when actions are filtered (#1532) (d532979), closes #1522
Features
- schematics: add api success/failure effects/actions to ng generate feature (#1530) (e17a787)
- schematics: bump platformVersion to ^7.0.0 per issue #1489 (#1527) (a71aa71)
7.1.0 (2019-01-21)
Bug Fixes
- store: call metareducer with the user's config initial state (#1498) (2aabe0f), closes #1464
- store: don't call the projector function if there are no selectors and props (#1515) (e0ad3c3), closes #1501
Features
7.0.0 (2018-12-20)
Features
- Effects: add OnInitEffects interface to dispatch an action on initialization (e921cd9)
- RouterStore: make the router store key selector generic (a30a514), closes #1457
- schematics: add project flag support to specify apps or libs (#1477) (af39fd2), closes #1455
Reverts
- Effects: dispatch init feature effects action on init #1305 (e9cc9ae)
Features
- effects: add OnIdentifyEffects interface to register multiple effect instances (#1448) (b553ce7)
- store-devtools: catch and log redux devtools errors (#1450) (4ed16cd)
Bug Fixes
- docs-infra: ARIA roles used must conform to valid values (8a4b2de)
- docs-infra: elements must have sufficient color contrast (c5dfaef)
- docs-infra: html element must have a lang attribute (32256de)
- docs-infra: Images must have alternate text (8241f99)
- docs-infra: notification must have sufficient color contrast (ac24cc3)
- example: close side nav when escape key is pressed (#1244) (b3fc5dd), closes #1172
- router-store: Added new imports to index.ts, codestyle (293f960)
- router-store: allow compilation with strictFunctionTypes (#1385) (0e38673), closes #1344
- router-store: Avoiding @ngrx/effects dependency inside tests (11d3b9f)
- router-store: handle internal navigation error, dispatch cancel/error action with previous state (#1294) (5300e7d)
- schematics: correct spec description in reducer template (#1269) (b7ab4f8)
- schematics: fix effects code generated by schematics:feature (#1357) (458e2b4)
- store: add typing to allow props with store.select (#1387) (a9e7cbd)
- store: memoize selector arguments (#1393) (7cc9702), closes #1389
- store: remove deprecation from Store.select (#1382) (626784e)
Code Refactoring
Features
- update angular dependencies to V7 (e6048bd), closes #1340
- effects: add smarter type inference for ofType operator. (#1183) (8d56a6f)
- effects: add support for effects of different instances of same class (#1249) (518e561), closes #1246
- effects: dispatch feature effects action on init (#1305) (15a4b58), closes #683
- entity: add support for predicate to removeMany (#900) (d7daa2f)
- entity: add support for predicate to updateMany (#907) (4e4c50f)
- example: add logout confirmation (#1287) (ba8d300), closes #1271
- router-store: Add custom serializer to config object (5c814a9), closes #1262
- router-store: Add support for serializers with injected values (959cfac)
- router-store: config option to dispatch ROUTER_NAVIGATION later (fe71ffb), closes #1263
- router-store: New router Actions ROUTER_REQUEST and ROUTER_NAVIGATED (9f731c3), closes #1010 #1263
- router-store: serialize routeConfig inside the default serializer (#1384) (18a16d4)
- router-store: update stateKey definition to take a string or selector (4ad9a94), closes #1300
- store: add testing package (#1027) (ab56aac), closes #915
- store: dispatch one update action when features are added or removed (#1240) (0b90f91)
- Store: export SelectorWithProps and MemoizedSelectorWithProps (#1341) (df8fc60)
- store-devtools: add support for persist, lock, pause (#955) (93fcf56), closes #853 #919
- store-devtools: use different action when recomputing state history (#1353) (1448a0e), closes #1255
- StoreDevtools: implement actionsBlacklist/Whitelist & predicate (#970) (7ee46d2), closes #938
BREAKING CHANGES
- router-store: The default router serializer now returns a
null
value for
routeConfig
when routeConfig
doesn't exist on the
ActivatedRouteSnapshot
instead of an empty object.
BEFORE:
{
"routeConfig": {}
}
AFTER:
{
"routeConfig": null
}
- effects: Removes .ofType method on Actions. Instead use the provided 'ofType'
rxjs operator.
BEFORE:
this.actions.ofType('INCREMENT');
AFTER:
import { ofType } from '@ngrx/store';
...
this.action.pipe(ofType('INCREMENT'))
- RouterStore: Normalize router store actions to be consistent with the other modules
BEFORE:
- ROUTER_REQUEST
- ROUTER_NAVIGATION
- ROUTER_CANCEL
- ROUTER_ERROR
- ROUTER_NAVIGATED
AFTER
If you still need this, pass a provider like this:
{
provide: ROUTER_CONFIG,
useFactory: _createRouterConfig // you function
}
- routerstore: The default state key is changed from routerReducer to router
- store: BEFORE:
{type: '@ngrx/store/update-reducers', feature: 'feature1'}
{type: '@ngrx/store/update-reducers', feature: 'feature2'}
AFTER:
{type: '@ngrx/store/update-reducers', features: ['feature1',
'feature2']}
6.1.0 (2018-08-02)
Bug Fixes
- effects: Add deprecation notice for ofType instance operator (830c8fa)
- Effects: Added defaults for ng-add schematic (9d36016)
- example: adjust styles to display spinner correctly (#1203) (4a0b580)
- example: remove custom router state serializer (#1129) (389cd78)
- schematics: correct a type of action class generated (#1140) (bbb7e8c)
- schematics: exclude environment imports for libraries (#1213) (541de02), closes #1205 #1197
- schematics: Remove peer dependencies on Angular DevKit (#1222) (fd3da16), closes #1206
- Schematics: correct resolution of environments path for module (#1094) (d24ed10), closes #1090
- store: Add deprecation notice for select instance operator (232ca7a)
- store: Compare results in addition to arguments change in memoizer (#1175) (99e1313)
- Store: bootstrap store with partial initial state (#1163) (11bd465), closes #906 #909
- Store: Fix import bug with ng-add and added defaults (ff7dc72)
Features
- effects: stringify action when reporting as invalid (#1219) (73d32eb)
- entity: log a warning message when selectId returns undefined in dev mode (#1169) (8f05f1f), closes #1133
- Entity: expose Dictionary as part of the public API (#1118) (2a267b6), closes #865
- schematics: display provided path when displaying an error (#1208) (91cc6ed), closes #1200
- schematics: use ofType operator function instead of Actions#ofType (#1154) (cb58ff1)
- store: add an overload to createFeatureSelector to provide better type checking (#1171) (03db76f), closes #1136
- store: provide props to createSelector projector function (#1210) (b1f9b34)
- Store: createSelector allow props in selector (53832a1)
- Store: createSelector with only a props selector (35a4848)
- StoreDevtools: Add ng-add support (be28d8d)
- StoreDevtools: Allow custom serializer options (#1121) (55a0488)
- Effects: remove path filters in ng-add (5318913)
- Schematics: remove path filters in effects schematics (6d3f5a1)
- Schematics: remove path filters in reducer schematics (055f6ef)
- Schematics: remove path filters in store schematics (762cf2e)
- Store: remove path filters in ng-add (ec6adb5)
- StoreDevtools: remove path filters in ng-add (3ba463f)
6.0.1 (2018-05-23)
6.0.0 (2018-05-23)
Bug Fixes
- Schematics: remove ts extension when importing reducer in container (#1061) (d1ed9e5), closes #1056
- Schematics: Update parsed path logic to split path and name (a1e9530), closes #1064
- Store: Resolve environment path when generating a new store (#1071) (599cfb6)
Features
- implement ng add for store and effects packages (db94db7)
Bug Fixes
Bug Fixes
- build: Fix UMD global names (#1005) (413efd4), closes #1004
- RouterStore: Reset dispatch-tracking booleans after navigation end (#968) (48305aa)
- Schematics: Add check for app/lib to project helper function (5942885)
- Schematics: Add smart default to blueprint schemas (cdd247e)
- Schematics: Remove aliases for state and stateInterface options (f4520a2)
- Schematics: Update upsert actions for entity blueprint (#1042) (0d1d309), closes #1039
- Schematics: Upgrade schematics to new CLI structure (b99d9ff)
- Store: Fix type annotations for select methods (#953) (4d74bd2)
- StoreDevtools: Refresh devtools when extension is started (#1017) (c6e33d9), closes #508
- Update minimum node version to 8.9.0 (#989) (0baaad8)
Features
BREAKING CHANGES
- Schematics: The action blueprint has been updated to be less generic, with associated reducer and effects updated for the feature blueprint
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;
- Schematics: Aliases for
state
and stateInterface
were removed due to conflicts with component aliases without reasonable alternatives.
- Schematics: Minimum dependency for @ngrx/schematics has changed:
@angular-devkit/core: ^0.5.0
@angular-devkit/schematics: ^0.5.0
Bug Fixes
Bug Fixes
- Entity: Change EntityAdapter upsertOne/upsertMany to accept an entity (a0f45ff)
- RouterStore: Allow strict mode with router reducer (#903) (f17a032)
- RouterStore: change the default serializer to work around cycles in RouterStateSnapshot (7917a27)
- RouterStore: Replace RouterStateSnapshot with SerializedRouterStateSnapshot (bd415a1)
- StoreDevtools: pass timestamp to actions (df2411f)
- StoreDevtools: report errors to ErrorHandler instead of console (32df3f0)
- Add support for Angular 6 and RxJS 6 (d1286d2)
Features
BREAKING CHANGES
- StoreDevtools: Errors in reducers are no longer hidden from ErrorHandler by
StoreDevtools
BEFORE:
Errors in reducers are caught by StoreDevtools and logged to the console
AFTER:
Errors in reducers are reported to ErrorHandler
- Schematcis: NgRx Schematics now has a minimum version dependency on @angular-devkit/core
and @angular-devkit/schematics of v0.4.0.
- RouterStore: Default router state is serialized to a shape that removes cycles
BEFORE:
Full RouterStateSnapshot is returned
AFTER:
Router state snapshot is returned as a SerializedRouterStateSnapshot with cyclical dependencies removed
Entity: The signature of the upsertOne/upsertMany functions in the EntityAdapter
has been changed to accept a fully qualified entity instead of an update
object that implements the Update<T> interface.
Before:
entityAdapter.upsertOne(
{
id: 'Entity ID',
changes: { id: 'Entity ID', name: 'Entity Name' },
},
state
);
After:
entityAdapter.upsertOne(
{
id: 'Entity ID',
name: 'Entity Name',
},
state
);
NgRx now has a minimum version requirement on Angular 6 and RxJS 6.
5.2.0 (2018-03-07)
Bug Fixes
- Schematics: Correct usage of upsert actions for entity blueprint (#821) (1ffb5a9)
- Store: only default to initialValue when store value is undefined (#886) (51a1547)
- StoreDevtools: Fix bug when exporting/importing state history (#855) (a5dcdb1)
- StoreDevtools: Recompute state history when reducers are updated (#844) (10debcc)
Features
- Entity: Add 'selectId' and 'sortComparer' to state adapter (#889) (69a62f2)
- Store: Added feature name to Update Reducers action (730361e)
5.1.0 (2018-02-13)
Bug Fixes
- Devtools: Ensure Store is loaded eagerly (#801) (ecf1ebf), closes #624 #741
- Effects: Make ofType operator strictFunctionTypes safe (#789) (c8560e4), closes #753
- Entity: Avoid for..in iteration in sorted state adapter (#805) (4192645)
- Entity: Do not add Array.prototype properties to store (#782) (d537758), closes #781
- Entity: Properly iterate over array in upsert (#802) (779d689)
- Schematics: Add store import to container blueprint (#763) (a140fa9), closes #760
- Schematics: Remove extra braces from constructor for container blueprint (#791) (945bf40), closes #778
- Schematics: Use correct paths for nested and grouped feature blueprint (#756) (c219770)
- StoreDevtools: Add internal support for ActionSanitizer and StateSanitizer (#795) (a7de2a6)
- StoreDevtools: Do not send full liftedState for application actions (#790) (c11504f)
Features
- Entity: Add upsertOne and upsertMany functions to entity adapters (#780) (f871540), closes #421
- Schematics: Add group option to entity blueprint (#792) (0429276), closes #779
- Schematics: Add upsert methods to entity blueprint (#809) (7acdc79), closes #592
5.0.1 (2018-01-25)
Bug Fixes
- Effects: Provide instance from actions to ofType lettable operator (#751) (33d48e7), closes #739
5.0.0 (2018-01-22)
Bug Fixes
- Effects: Ensure Store modules are loaded eagerly (#658) (0a3398d), closes #642
- Effects: Remove toPayload utility function (#738) (b390ef5)
- Entity: updateOne/updateMany should not change ids state on existing entity (#581) (b989e4b), closes #571
- RouterStore: Fix usage of config object if provided (#575) (4125914)
- RouterStore: Match RouterAction type parameters (#562) (980a653)
- Schematics: Add group folder after feature name folder (#737) (317fb94)
- Schematics: Add handling of flat option to entity blueprint (fb8d2c6)
- Schematics: Distinguish between root and feature effect arrays when registering (#718) (95ff6c8)
- Schematics: Don't add state import if not provided (#697) (e5c2aed)
- Schematics: Make variable naming consistent for entity blueprint (#716) (765b15a)
- Store: Compose provided metareducers for a feature reducer (#704) (1454620), closes #701
- StoreDevtools: Only recompute current state when reducers are updated (#570) (247ae1a), closes #229 #487
- typo: update login error to use correct css font color property (41723fc)
Features
- Effects: Add lettable ofType operator (d5e1814)
- ErrorHandler: Use the Angular ErrorHandler for reporting errors (#667) (8f297d1), closes #626
- material: Upgrade @angular/material to v 2.0.0-beta.12 (#482) (aedf20e), closes #448
- Schematics: Add alias for container, store and action blueprints (#685) (dc64ac9)
- Schematics: Add alias for reducer blueprint (#684) (ea98fb7)
- Schematics: Add effect to registered effects array (#717) (f1082fe)
- Schematics: Add option to group feature blueprints in respective folders (#736) (b82c35d)
- Schematics: Introduce @ngrx/schematics (#631) (1837dba), closes #53
- Store: Add lettable select operator (77eed24)
- Store: Add support for generating custom createSelector functions (#734) (cb0d185), closes #478 #724
- StoreDevtools: Add option to configure extension in log-only mode (#712) (1ecd658), closes #643 #374
- StoreDevtools: Add support for custom instance name (#517) (00be3d1), closes #463
- StoreDevtools: Add support for extension sanitizers (#544) (6ed92b0), closes #494
- StoreDevtools: Add support for jumping to a specific action (#703) (b9f6442), closes #681
BREAKING CHANGES
Effects: The utility function toPayload
, deprecated in @ngrx/effects v4.0, has been removed.
Before:
import { toPayload } from '@ngrx/effects';
actions$.ofType('SOME_ACTION').map(toPayload);
After:
actions$.ofType('SOME_ACTION').map((action: SomeActionWithPayload) => action.payload);
ErrorHandler: The ErrorReporter has been replaced with ErrorHandler
from angular/core.
BEFORE:
Errors were reported to the ngrx/effects ErrorReporter. The
ErrorReporter would log to the console by default.
AFTER:
Errors are now reported to the @angular/core ErrorHandler.
- Store: Updates minimum version of RxJS dependency.
BEFORE:
Minimum peer dependency of RxJS ^5.0.0
AFTER:
Minimum peer dependency of RxJS ^5.5.0
- Effects: Updates minimum version of RxJS dependency.
BEFORE:
Minimum peer dependency of RxJS ^5.0.0
AFTER:
Minimum peer dependency of RxJS ^5.5.0
4.1.1 (2017-11-07)
Bug Fixes
Features
- Codegen: Add base code and build for @ngrx/codegen (#534) (2a22211)
- RouterStore: Add configurable option for router reducer name (#417) (ab7de5c), closes #410
4.1.0 (2017-10-19)
Bug Fixes
- Build: Fix build with space in path (#331) (257fc9d)
- combineSelectors: Remove default parameter from function signature for Closure (ae7d5e1)
- decorator: add ExportDecoratedItems jsdoc for g3 (#456) (2b0e0cf)
- Effects: Simplify decorator handling for Closure compatibility (ad30d40)
- Entity: Change type for EntityState to interface (#454) (d5640ec), closes #458
- Example: Add missing import for catch operator (#409) (193e8b3)
- RouterStore: Fix cancelled navigation with async guard (fixes #354) (#355) (920c0ba), closes #201
- RouterStore: Stringify error from navigation error event (#357) (0528d2d), closes #356
- Store: Fix typing for feature to accept InjectionToken (#375) (38b2f95)
- Store: Refactor parameter initialization in combineReducers for Closure (5c60cba)
- Store: Set initial value for state action pair to object (#480) (100a8ef), closes #477
Features
- createSelector: Expose projector function on selectors to improve testability (56cb21f), closes #290
- Effects: Add getEffectsMetadata() helper for verifying metadata (628b865), closes #491
- Effects: Add root effects init action (#473) (838ba17), closes #246
- Entity: Add default selectId function for EntityAdapter (#405) (2afb792)
- Entity: Add support for string or number type for ID (#441) (46d6f2f)
- Entity: Enable creating entity selectors without composing a state selector (#490) (aae4064)
- Entity: Rename 'sort' to 'sortComparer' (274554b), closes #370
- Store: createSelector with an array of selectors (#340) (2f6a035), closes #192
4.0.5 (2017-08-18)
Bug Fixes
- Effects: Do not complete effects if one source errors or completes (#297) (54747cf), closes #232
- Entity: Return a referentially equal state if state did not change (fbd6a66)
- Entity: Simplify target index finder for sorted entities (335d255)
4.0.4 (2017-08-17)
Bug Fixes
- Effects: Use factory provide for console (#288) (bf7f70c), closes #276
- RouterStore: Add generic type to RouterReducerState (#292) (6da3ec5), closes #289
- RouterStore: Only serialize snapshot in preactivation hook (#287) (bbb7c99), closes #286
4.0.3 (2017-08-16)
Bug Fixes
- Effects: Deprecate toPayload utility function (#266) (1cbb2c9)
- Effects: Ensure StoreModule is loaded before effects (#230) (065d33e), closes #184 #219
- Effects: Export EffectsNotification interface (#231) (2b1a076)
- Store: Add type signature for metareducer (#270) (57633d2), closes #264 #170
- Store: Set initial state for feature modules (#235) (4aec80c), closes #206 #233
- Store: Update usage of compose for reducer factory (#252) (683013c), closes #247
- Store: Use existing reducers when providing reducers without an InjectionToken (#254) (c409252), closes #250 #116
- Store: Use injector to get reducers provided via InjectionTokens (#259) (bd968fa), closes #189
Features
4.0.2 (2017-08-02)
Bug Fixes
- createSelector: memoize projector function (#228) (e2f1e57), closes #226
- docs: update angular-cli variable (eeb7d5d)
- Docs: update effects description (#164) (c77b2d9)
- Effects: Wrap testing source in an Actions observable (#121) (bfdb83b), closes #117
- RouterStore: Add support for cancellation with CanLoad guard (#223) (2c006e8), closes #213
- Store: Remove auto-memoization of selector functions (90899f7), closes #118
Features
- Effects: Add generic type to the "ofType" operator (55c13b2)
- Platform: Introduce @ngrx/entity (#207) (9bdfd70)
- Store: Add injection token option for feature modules (#153) (7f77693), closes #116 #141 #147
- Store: Added initial state function support for features. Added more tests (#85) (5e5d7dd)
4.0.1 (2017-07-18)
Bug Fixes
- effects: allow downleveled annotations (#98) (875b326), closes #93
- effects: make correct export path for testing module (#96) (a5aad22), closes #94
4.0.0 (2017-07-18)
Bug Fixes
- build: Fixed deployment of latest master as commit (#18) (5d0ecf9)
- build: Get tests running for each project (c4a1054)
- build: Limit concurrency for lerna bootstrap (7e7a7d8)
- Devtools: Removed SHOULD_INSTRUMENT token used to eagerly inject providers (#57) (b90df34)
- Effects: Start child effects after running root effects (#43) (931adb1)
- Effects: Use Actions generic type for the return of the ofType operator (d176a11)
- Example: Fix Book State interface parent (#90) (6982952)
- example-app: Suppress StoreDevtoolsConfig compiler warning (8804156)
- omit: Strengthen the type checking of the omit utility function (3982038)
- router-store: NavigationCancel and NavigationError creates a cycle when used with routerReducer (a085730), closes #68
- Store: Exported initial state tokens (#65) (4b27b6d)
- Store: pass all required arguments to projector (#74) (9b82b3a)
- Store: Remove parameter destructuring for strict mode (#33) (#77) (c9d6a45)
- Store: Removed readonly from type (#72) (68274c9)
- StoreDevtools: Type InjectionToken for AOT compilation (e21d688)
Code Refactoring
- Effects: Simplified AP, added better error reporting and effects stream control (015107f)
Features
- build: Updated build pipeline for modules (68bd9df)
- Effects: Ensure effects are only subscribed to once (089abdc)
- Effects: Introduce new Effects testing module (#70) (7dbb571)
- router-store: Added action types (#47) (1f67cb3), closes #44
- store: Add 'createSelector' and 'createFeatureSelector' utils (#10) (41758b1)
- Store: Allow initial state function for AoT compatibility (#59) (1a166ec), closes #51
- Store: Allow parent modules to provide reducers with tokens (#36) (069b12f), closes #34
- Store: Simplify API for adding meta-reducers (#87) (d2295c7)
BREAKING CHANGES
- Effects: Effects API for registering effects has been updated to allow for multiple classes to be provided.
BEFORE:
@NgModule({
imports: [EffectsModule.run(SourceA), EffectsModule.run(SourceB)],
})
export class AppModule {}
AFTER:
@NgModule({
imports: [EffectsModule.forRoot([SourceA, SourceB, SourceC])],
})
export class AppModule {}
@NgModule({
imports: [EffectsModule.forFeature([FeatureSourceA, FeatureSourceB, FeatureSourceC])],
})
export class SomeFeatureModule {}