Skip to content

Releases: redux-utilities/redux-actions

v0.10.0

08 Jun 20:19
Compare
Choose a tag to compare

Fixes

New features & enhancements

General

Symbol action types

24 Aug 20:16
Compare
Choose a tag to compare

Adds support for symbol action types. (Not necessarily recommended, since they're not serializable.)

Support meta field

13 Jul 21:59
Compare
Choose a tag to compare

Adds a third parameter to createAction() that creates a meta object. It receives the same arguments payload creator, but its result becomes the meta field of the resulting action.

createAction(TYPE, payloadCreator, metaCreator);

If metaCreator is undefined or not a function, the meta field is omitted.

Thanks @johanneslumpe for working on this