Skip to content

v2.8.5

Compare
Choose a tag to compare
@zalmoxisus zalmoxisus released this 26 Oct 11:49
· 273 commits to master since this release

New script to include in other extensions

In case you're using Redux Extension inside other Chrome extensions, you should include chrome-extension://lmhkpmbekcpmknklioeibfkpmmfibljd/js/redux-devtools-extension.js script. Using of the old inject.bundle.js is deprecated. See FAQ for more details. Big thanks to @jhen0409 for working on this!

Support for ES6 SYMBOL in states or actions

In v2.8.4 we introduced new serializeState and serializeAction parameters. Now if you set them to true, the extension will serialize the symbols value: { type: Symbol.for('DO_SOMETHING_ACTION') } will become { type: "Symbol(DO_SOMETHING_ACTION)" }.
See the release notes for an example of usage and details.

Log monitor's root objects are expanded now

Recently we collapsed action and state objects, however it's reverted now (#236).