Skip to content

Releases: odemolliens/react-native-logging-tools

1.3.0

03 Mar 13:31
6683485
Compare
Choose a tag to compare

BREAKING CHANGES

  • We are not anymore supporting Tealium versions lower than 2.0.2.

1.2.3 (2021-01-11)

11 Jan 16:05
Compare
Choose a tag to compare

News

  • adds a new param uriEncodedStackTrace to the list of key/values to log when there is a JS crash

1.2.2 (2020-08-25)

25 Aug 18:19
495036e
Compare
Choose a tag to compare

BugFixes

  • fix issue which appeared when react-native-flipper not used

1.2.1 (2020-08-16)

16 Aug 11:38
fbf8d1c
Compare
Choose a tag to compare

BugFixes

  • Fix small issue when app refreshed many times

1.2.0 (2020-08-08)

16 Aug 11:37
7cb9cc4
Compare
Choose a tag to compare

Can be plugged to Flipper with flipper-plugin-react-native-logging-tools to display all events sent to different service.

1.1.0 (2020-07-22)

22 Jul 07:44
b18bbf0
Compare
Choose a tag to compare

News
- Support Adobe and Tealium
- Can exclude service by message type, if we don't want to send each message type to each service (eg. network error..)
- Increase reactotron plugin's limit to 5

Bugfixes
- improve the support of typescript

1.0.2 (2020-07-11)

22 Jul 07:41
59b3aee
Compare
Choose a tag to compare

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