Skip to content

Releases: redux-utilities/reduce-reducers

v1.0.4

05 May 11:12
Compare
Choose a tag to compare

Fixed

  • export type definition correctly

v1.0.3

05 May 00:17
Compare
Choose a tag to compare

Fixed

  • index.d.ts default export typo (#31)

v1.0.2

02 May 12:20
Compare
Choose a tag to compare

Fixed

  • typing: initialState can be optional (#29)

v1.0.1

26 Mar 15:25
Compare
Choose a tag to compare

Fixed

  • include index.d.ts in npm package

v1.0.0

26 Mar 10:01
Compare
Choose a tag to compare

BREAKING CHANGES

  • Change order of arguments (#27)
    • initialState is now the first argument instead of the last to support TypeScript:
      - reduceReducers(reducerA, reducerB, initialState);
      + reduceReducers(initialState, reducerA, reducerB);

Added

  • TypeScript support
    • Upgrading to this version should automatically make TypeScript aware of the type definition.

v0.4.3

20 Jul 08:54
Compare
Choose a tag to compare
  • Fix typeof call to return a proper value (3d5f1ce)

v0.4.2

19 Jul 23:59
Compare
Choose a tag to compare
  • pass initial state when state is undefined and value defined (12dc762)

v0.4.1

19 Jul 23:06
Compare
Choose a tag to compare
  • initialState should be optional (f7f9b7d)

v0.4.0

19 Jul 11:27
Compare
Choose a tag to compare

v0.3.0

01 May 14:42
Compare
Choose a tag to compare
  • build and publish with es module (9cc6acf)