Skip to content

v2.14.0

Compare
Choose a tag to compare
@zalmoxisus zalmoxisus released this 23 Feb 14:39
· 136 commits to master since this release

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.