Skip to content

1.0.2 (2020-07-11)

Compare
Choose a tag to compare
@imranMnts imranMnts released this 22 Jul 07:41
59b3aee

BREAKING CHANGES

  • setupReactotron takes an object as a parameter and not only a string

  • Instead of setup reactotronRedux during the initialization to plug plugin eg redux, we will keep only reactotron's initialization and add plugins as an array and plug to reactotron on the library's side

    before:

    init({ config: { Reactotron, reactotronRedux, AsyncStorage } });
    setupReactotronWithRedux('app_name');

    now:

    init({ config: { Reactotron, AsyncStorage } });
    setupReactotron({ name: 'app_name' }, [reactotronRedux(), ...otherPlugins()]);

News

  • Can set reactotron's config as the user want
  • Can plug up to 3 additional plugins to reactotron

BugFixes

  • fix IDE integration
  • fix sensitiveData's status to optional