Skip to content
This repository has been archived by the owner on Jul 27, 2018. It is now read-only.

Latest commit

 

History

History
182 lines (89 loc) · 5.95 KB

CHANGELOG.md

File metadata and controls

182 lines (89 loc) · 5.95 KB

3.2.4 (2017-03-24)

Bug Fixes

  • StoreDevtools: Eagerly inject initial state and reducers (c2abe11)

3.2.3 (2017-01-19)

Bug Fixes

  • devtools: Fixed AOT bug when providing devtools config options (#52) (d21ab15)

3.2.2 (2016-11-04)

Bug Fixes

  • bundles: Correctly alias ReplaySubject (1a65e6d)
  • extension: Fix unsubscribing from the extension (#37) (f5d068d), closes #33

3.2.1 (2016-10-26)

Bug Fixes

  • StoreDevtools: Prevent reducer undefined error (bb1e25d)

3.2.0 (2016-10-26)

Bug Fixes

  • Extension: Get Chrome extension working correctly (d1abedd)
  • State: Stop using a refcounted observable to contain state (d4a6382), closes #25

Features

  • Devtools: Enable instrumenting store conditionally if extension is present (a1b6dfc)

3.0.1 (2016-09-01)

Bug Fixes

  • deps: Upgrade to latest Angular 2 and rxjs (50869c5)

3.0.0 (2016-08-26)

Bug Fixes

  • extension: Allow universal rendering (#23) (dcd640c)

Chores

BREAKING CHANGES

  • 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)

Bug Fixes

  • DevtoolsConfig: Use the PositionsType from the dock monitor to constrain the available positions (f1a1563)
  • LogMonitor: do not suppress init action (78f46c0)

Features

  • 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)

Bug Fixes

  • 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)

Features

  • 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)

Bug Fixes

  • 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)

Features

  • LogMonitor: Added initial implementation of a LogMonitor component (ac6f24d)
  • StoreDevtools: Solidifed devtools API to be a complete service (5f293f2)