Skip to content
This repository has been archived by the owner on Dec 6, 2023. It is now read-only.

Releases: infinitered/reactotron-redux

v3.1.3

25 Mar 00:05
Compare
Choose a tag to compare

3.1.3 (2020-03-25)

Bug Fixes

  • Solve if a subscription doesn't have values (adaf06f)

v3.1.2

19 Sep 02:46
Compare
Choose a tag to compare

3.1.2 (2019-09-19)

Bug Fixes

  • Add a new API for how to register the redux store to fix an issue with dispatching from reactotron into the middleware. (bdd8702)

The idea of the API change (to be documented before full release):

Current:

const store = createStore(
  rootReducer,
  compose(
    middleware,
    Reactotron.createEnhancer()
  )
)

New:

const store = createStore(
  rootReducer,
  compose(
    middleware,
    Reactotron.createEnhancer(true)
  )
)
Reactotron.setReduxStore(store)

v3.1.2-beta.1

25 Aug 02:03
Compare
Choose a tag to compare
v3.1.2-beta.1 Pre-release
Pre-release

3.1.2-beta.1 (2019-08-25)

Bug Fixes

  • Add a new API for how to register the redux store to fix an issue with dispatching from reactotron into the middleware. (bdd8702)

The idea of the API change (to be documented before full release):

Current:

const store = createStore(
  rootReducer,
  compose(
    middleware,
    Reactotron.createEnhancer()
  )
)

New:

const store = createStore(
  rootReducer,
  compose(
    middleware,
    Reactotron.createEnhancer(true)
  )
)
Reactotron.setReduxStore(store)

v3.1.1

03 Jun 00:50
Compare
Choose a tag to compare

3.1.1 (2019-06-03)

Bug Fixes

  • Except and isActionImportant are working again. (2e58000)

v3.1.0

03 Mar 02:02
Compare
Choose a tag to compare

3.1.0 (2019-03-03)

Features

  • Improve TypeScript typings

v3.1.0-beta.3

03 Mar 01:48
Compare
Choose a tag to compare
v3.1.0-beta.3 Pre-release
Pre-release

3.1.0-beta.3 (2019-03-03)

Bug Fixes

v3.1.0-beta.2

03 Mar 01:07
Compare
Choose a tag to compare
v3.1.0-beta.2 Pre-release
Pre-release

3.1.0-beta.2 (2019-03-03)

Bug Fixes

v3.1.0-beta.1

02 Mar 19:23
Compare
Choose a tag to compare
v3.1.0-beta.1 Pre-release
Pre-release

3.1.0-beta.1 (2019-03-02)

Features

  • Update the way the types work (d4d973d)

v3.0.0

02 Mar 01:34
Compare
Choose a tag to compare

3.0.0 (2019-03-02)

Bug Fixes

  • Don't try and send subscriptions if we don't have a store. (7219574)

Features

  • Rewrite library over to Typescript (e24d332)

BREAKING CHANGES

  • This rewrites the library over to TypeScript and updates the API used for hooking up reactotron to redux. In doing the rewrite the way you wire up the store changed. Please see https://github.com/infinitered/reactotron/blob/master/docs/plugin-redux.md for updated instructions. The change is minimal and should only require changing from calling createStore on Reactotron to passing the result of a call to createEnhancer() off Reactotron.

v3.0.0-beta.3

27 Feb 03:00
Compare
Choose a tag to compare
v3.0.0-beta.3 Pre-release
Pre-release

3.0.0-beta.3 (2019-02-27)

Bug Fixes

  • Don't try and send subscriptions if we don't have a store. (7219574)