mixpanel-react-native 1.3.5 → 1.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/release.yml +4 -4
- package/CHANGELOG.md +34 -0
- package/MixpanelReactNative.podspec +1 -1
- package/Samples/ContextAPIMixpanel/yarn.lock +1 -1
- package/Samples/MixpanelDemo/yarn.lock +1 -1
- package/Samples/SimpleMixpanel/App.js +1 -1
- package/Samples/SimpleMixpanel/yarn.lock +1464 -1405
- package/__tests__/index.test.js +1 -1
- package/android/src/main/java/com/mixpanel/reactnative/MixpanelReactNativeModule.java +3 -3
- package/docs/Mixpanel.html +1 -1
- package/docs/MixpanelGroup.html +1 -1
- package/docs/People.html +1 -1
- package/docs/index.html +1 -1
- package/docs/index.js.html +1 -1
- package/ios/MixpanelReactNative.swift +3 -3
- package/package.json +24 -25
- package/release.py +3 -3
|
@@ -25,8 +25,8 @@ jobs:
|
|
|
25
25
|
enhancementLabel: '### Enhancements'
|
|
26
26
|
stripGeneratorNotice: true
|
|
27
27
|
bugsLabel: '### Fixes'
|
|
28
|
-
issues:
|
|
29
|
-
issuesWoLabels:
|
|
28
|
+
issues: false
|
|
29
|
+
issuesWoLabels: false
|
|
30
30
|
pullRequests: true
|
|
31
31
|
prWoLabels: true
|
|
32
32
|
author: false
|
|
@@ -56,8 +56,8 @@ jobs:
|
|
|
56
56
|
enhancementLabel: '### Enhancements'
|
|
57
57
|
stripGeneratorNotice: true
|
|
58
58
|
bugsLabel: '### Fixes'
|
|
59
|
-
issues:
|
|
60
|
-
issuesWoLabels:
|
|
59
|
+
issues: false
|
|
60
|
+
issuesWoLabels: false
|
|
61
61
|
pullRequests: true
|
|
62
62
|
prWoLabels: true
|
|
63
63
|
author: false
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
#
|
|
2
2
|
|
|
3
|
+
## [v1.3.6](https://github.com/mixpanel/mixpanel-react-native/tree/v1.3.6) (2022-01-13)
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
|
|
7
|
+
- Fix common mobile events not showing 'react-native' as property value for 'Mixpanel Library' [\#122](https://github.com/mixpanel/mixpanel-react-native/pull/122)
|
|
8
|
+
|
|
9
|
+
#
|
|
10
|
+
|
|
11
|
+
## [v1.3.5](https://github.com/mixpanel/mixpanel-react-native/tree/v1.3.5) (2022-01-04)
|
|
12
|
+
|
|
13
|
+
**Closed issues:**
|
|
14
|
+
|
|
15
|
+
- iOS app crashes when `optOutTrackingDefault` is set - `Assertion failed: You have to call initialize\(token:\) before calling the main instance, or define a new main instance if removing the main one` [\#114](https://github.com/mixpanel/mixpanel-react-native/issues/114)
|
|
16
|
+
- Cannot get users properties? [\#113](https://github.com/mixpanel/mixpanel-react-native/issues/113)
|
|
17
|
+
- Users shows undefined Email of tracked user [\#112](https://github.com/mixpanel/mixpanel-react-native/issues/112)
|
|
18
|
+
- FirstAppOpen event not triggered from iOS [\#111](https://github.com/mixpanel/mixpanel-react-native/issues/111)
|
|
19
|
+
- Set user properties [\#107](https://github.com/mixpanel/mixpanel-react-native/issues/107)
|
|
20
|
+
- Events missing on web dashboard. [\#106](https://github.com/mixpanel/mixpanel-react-native/issues/106)
|
|
21
|
+
- Feature Request: functionality to get promise on mixpanel.track\(\) [\#105](https://github.com/mixpanel/mixpanel-react-native/issues/105)
|
|
22
|
+
- "TS2554: Expected 1 arguments, but got 0." error when implementing Samples/ContextAPIMixpanel/Analytics.js [\#86](https://github.com/mixpanel/mixpanel-react-native/issues/86)
|
|
23
|
+
|
|
24
|
+
**Merged pull requests:**
|
|
25
|
+
|
|
26
|
+
- nested dictionary should be a valid type in iOS [\#119](https://github.com/mixpanel/mixpanel-react-native/pull/119)
|
|
27
|
+
- fix setGroup array properties [\#118](https://github.com/mixpanel/mixpanel-react-native/pull/118)
|
|
28
|
+
- bump SDk dependencies [\#116](https://github.com/mixpanel/mixpanel-react-native/pull/116)
|
|
29
|
+
- Fix Expo SDK 44 build error [\#115](https://github.com/mixpanel/mixpanel-react-native/pull/115)
|
|
30
|
+
|
|
31
|
+
#
|
|
32
|
+
|
|
3
33
|
## [v1.3.4](https://github.com/mixpanel/mixpanel-react-native/tree/v1.3.4) (2021-09-25)
|
|
4
34
|
|
|
5
35
|
**Closed issues:**
|
|
@@ -116,3 +146,7 @@
|
|
|
116
146
|
|
|
117
147
|
|
|
118
148
|
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
|
|
@@ -2,7 +2,7 @@ import React, { Component } from 'react';
|
|
|
2
2
|
import { Button, SafeAreaView } from "react-native";
|
|
3
3
|
import { Mixpanel } from 'mixpanel-react-native';
|
|
4
4
|
|
|
5
|
-
const mixpanel = new Mixpanel("
|
|
5
|
+
const mixpanel = new Mixpanel("Your Project Token");
|
|
6
6
|
mixpanel.init();
|
|
7
7
|
|
|
8
8
|
// *************************************
|