• 1.0.2 59b3aee2a0

    imranMnts released this 2020-07-11 10:17:27 +00:00 | 15 commits to develop since this release

    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
    Downloads