3.0.1 (2016-09-01)
- deps: Upgrade to latest Angular 2 RC and rxjs beta (0595eba)
3.0.0 (2016-08-26)
- With the introduction of NgModules, setting up StoreLogMonitor has changed.
Before:
import { instrumentStore } from '@ngrx/store-devtools';
import { useLogMonitor, StoreLogMonitorComponent } from '@ngrx/store-log-monitor';
@Component({
providers: [
instrumentStore({ monitor: useLogMonitor() })
],
directives: [
StoreLogMonitorComponent
]
})
export class AppComponent { }
After:
import { StoreDevtoolsModule } from '@ngrx/store-devtools';
import { StoreLogMonitorModule, useLogMonitor } from '@ngrx/store-log-monitor';
@NgModule({
imports: [
StoreDevtoolsModule.instrumentStore({ monitor: useLogMonitor() }),
StoreLogMonitorModule
]
})
export class AppModule { }
2.0.0-beta.1 (2016-07-02)
1.3.2 (2016-03-17)
- Commander: Fixed event handling in the Commander component (ba355fb)
- DevtoolsConfig: Use the PositionsType from the dock monitor to constrain the available positions (f1a1563)
- LogMonitor: do not suppress init action (78f46c0)
- 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 config function to set default position, visibility and size (73cfefc)
- 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)
- monitors: Added customizable dock monitor commands via inputs (5610e27)
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)