This repository has been archived by the owner on Dec 6, 2023. It is now read-only.
Releases: infinitered/reactotron-react-native
Releases · infinitered/reactotron-react-native
v5.0.3
v5.0.2
v5.0.1
v5.0.0
5.0.0 (2020-03-26)
Features
- Add ability for Reactotron to communicate with Flipper
BREAKING CHANGES
The way communication is handled has changed with this release to add the ability to communicate with both Reactotron standalone and Reactotron in Flipper. The only API change is if you intend to use Reactotron in Flipper. If you do here are the steps that you need to take:
- Install at least this version of
reactotron-react-native
- Install
react-native-flipper
- Have Flipper configured in your app (
react-native
template does this starting in 0.62.0) pod install
within theios
folder of your project- Add the following to your standard reactotron config:
import ReactotronFlipper from 'reactotron-react-native/dist/flipper';
{...}
Reactotron.configure({
createSocket: path => new ReactotronFlipper(path), // You can have the other options but this one at a minimum is required.
});
v5.0.0-beta.4
v5.0.0-beta.3
5.0.0-beta.3 (2020-03-01)
Bug Fixes
- Don't try and send via flipper if flipper isn't connected (fa568af)
v5.0.0-beta.2
5.0.0-beta.2 (2020-02-29)
Bug Fixes
- Resolve issue sending messages in FlipperConnection manager (acafc90)
v5.0.0-beta.1
5.0.0-beta.1 (2020-02-29)
Features
- Trying to get beta build working again. (a22be88)
BREAKING CHANGES
- We are changing out how we communicate with both standalone Reactotron and adding the ability to communicate to Flipper. No API changes unless you want to use Flipper