3.2.4 (2017-03-24)
- StoreDevtools: Eagerly inject initial state and reducers (c2abe11)
3.2.3 (2017-01-19)
3.2.2 (2016-11-04)
- bundles: Correctly alias ReplaySubject (1a65e6d)
- extension: Fix unsubscribing from the extension (#37) (f5d068d), closes #33
3.2.1 (2016-10-26)
- StoreDevtools: Prevent reducer undefined error (bb1e25d)
3.2.0 (2016-10-26)
- Extension: Get Chrome extension working correctly (d1abedd)
- State: Stop using a refcounted observable to contain state (d4a6382), closes #25
- Devtools: Enable instrumenting store conditionally if extension is present (a1b6dfc)
3.0.1 (2016-09-01)
- deps: Upgrade to latest Angular 2 and rxjs (50869c5)
3.0.0 (2016-08-26)
- With the introduction of NgModules, the process for instrumenting your store has changed
BEFORE:
import { instrumentStore } from '@ngrx/store-devtools';
bootstrap(App, [
instrumentStore(config)
]);
AFTER:
import { StoreDevtoolsModule } from '@ngrx/store-devtools';
@NgModule({
imports: [
StoreDevtoolsModule.instrumentStore(config)
]
})
export class AppModule { }
2.0.0-beta.1 (2016-07-01)
1.4.0 (2016-05-03)
1.3.3 (2016-03-17)
1.3.2 (2016-03-17)
- DevtoolsConfig: Use the PositionsType from the dock monitor to constrain the available positions (f1a1563)
- LogMonitor: do not suppress init action (78f46c0)
- devtools: Added config function to set default position, visibility and size (73cfefc)
- monitors: Added customizable dock monitor commands via inputs (5610e27)
1.3.1 (2016-03-12)
- Commander: Fixed event handling in the Commander component (ba355fb)
- LogMonitorButton: Fixed metadata generation bug with event handler (b5f69a7)
- StoreDevtoolsTest: Changed all calls to use devtool methods instead of raw action creators (f99657d)
- Devtools: Added unified Devtools component that wraps the DockMonitor and LogMonitor (58497f5)
- DockMonitor: Added dock monitor to wrap devtools. (d10fb7a)
- instrumentStore: Added shortcut to combineReducers if an object is passed in. Default to dock reducer (344c7b5)
1.3.0 (2016-03-09)
- Devtools: Filtered out all undefined states (0f2c4ff)
- linter: Corrected linting errors with store instrumentation (1d99bbc)
- package.json: Restore name to @ngrx/devtools (859491c)
- StoreDevtools: Fixed specs to correctly use liftedState instead of state (769a046)
- tsconfig: Corrected paths for log monitor (4d1e5d6)
- tsconfig: Include the correct scripts for the store devtools (0419aba)