This repository has been archived by the owner on Jan 10, 2018. It is now read-only.
Releases: ngrx/store
Releases · ngrx/store
2.2.1 - fix for UMD bundle usage
v2.2.1 fix(packaging): ngrx/core fix for umd
2.2.0 release - ES modules, angular 2.0.0 compatibility
v2.2.0 packaging changes and ng 2.0.0 final
2.1.2 hotfix release for null initialState problem.
fixes an issue where angular's JiT compiler will generate null values where ngrx/store was expecting undefined.
2.1.1
Adds support for Angular2 RC5 and App Modules.
- BREAKING CHANGE: users should
import {StoreModule, Store} from '@ngrx/store'
and provide the store as follows:
import {StoreModule, Store} from '@ngrx/store'
import {NgModule} from '@angular/core'
import {BrowserModule} from '@angular/platform-browser'
@NgModule({
imports: [
BrowserModule,
StoreModule.provideStore(reducer, initialState)
]
})
v2.0.0
2.0.0