v2.14.0
Full support for ES2015 Maps/Sets
To handle these unserializable by JSON.stringify
data (and also dates, regexes, undefined, error objects, symbols and functions), set serialize
parameter:
const store = Redux.createStore(reducer, window.__REDUX_DEVTOOLS_EXTENSION__ && window.__REDUX_DEVTOOLS_EXTENSION__({
serialize: true
}));
Keep global Symbols
ES Symbols lose their identity after importing, persisting..., but at least global symbols (Symbol.for
) can be safely retained. Thanks to @Velenir for implementing this.
Fixes
- Fix conflicts with Webstorm's extension by not retrieving stored options on page load. Consider specifying options as arguments.
- Fix autoscrolling.