18.0.0-rc.0 (2024-06-10)
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';
<a name="18.0.0-beta.1"></a>