mixpanel-react-native 3.0.7 → 3.0.9
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/CHANGELOG.md +24 -0
- package/MixpanelReactNative.podspec +1 -1
- package/Samples/ContextAPIMixpanel/android/gradle/wrapper/gradle-wrapper.properties +2 -1
- package/Samples/MixpanelDemo/android/gradle/wrapper/gradle-wrapper.properties +2 -1
- package/Samples/SimpleMixpanel/package-lock.json +15642 -0
- package/Samples/SimpleMixpanel/package.json +5 -2
- package/Samples/SimpleMixpanel/patches/react-native+0.73.0.patch +14 -0
- package/Samples/SimpleMixpanel/yarn.lock +1527 -1147
- package/__tests__/main.test.js +1 -1
- package/android/build.gradle +1 -1
- package/javascript/mixpanel-network.js +1 -1
- package/javascript/mixpanel-queue.js +10 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
#
|
|
2
2
|
|
|
3
|
+
## [v3.0.9](https://github.com/mixpanel/mixpanel-react-native/tree/v3.0.9) (2025-04-11)
|
|
4
|
+
|
|
5
|
+
### Enhancements
|
|
6
|
+
|
|
7
|
+
- Bump native SDKs, Swift 4.4.0 and Android 8.0.3 [\#285](https://github.com/mixpanel/mixpanel-react-native/pull/285)
|
|
8
|
+
|
|
9
|
+
### Fixes
|
|
10
|
+
|
|
11
|
+
- fix: custom storage [\#282](https://github.com/mixpanel/mixpanel-react-native/pull/282)
|
|
12
|
+
|
|
13
|
+
#
|
|
14
|
+
|
|
15
|
+
## [v3.0.8](https://github.com/mixpanel/mixpanel-react-native/tree/v3.0.8) (2024-11-21)
|
|
16
|
+
|
|
17
|
+
### Fixes
|
|
18
|
+
|
|
19
|
+
- encodeURIComponent body JSON data [\#277](https://github.com/mixpanel/mixpanel-react-native/pull/277)
|
|
20
|
+
|
|
21
|
+
#
|
|
22
|
+
|
|
3
23
|
## [v3.0.7](https://github.com/mixpanel/mixpanel-react-native/tree/v3.0.7) (2024-09-26)
|
|
4
24
|
|
|
5
25
|
### Fixes
|
|
@@ -470,5 +490,9 @@ This major release removes all remaining calls to Mixpanel's `/decide` API endpo
|
|
|
470
490
|
|
|
471
491
|
|
|
472
492
|
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
|
|
473
497
|
|
|
474
498
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
#Fri Apr 11 14:26:54 PDT 2025
|
|
1
2
|
distributionBase=GRADLE_USER_HOME
|
|
2
3
|
distributionPath=wrapper/dists
|
|
3
|
-
distributionUrl=https\://services.gradle.org/distributions/gradle-
|
|
4
|
+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
|
|
4
5
|
zipStoreBase=GRADLE_USER_HOME
|
|
5
6
|
zipStorePath=wrapper/dists
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
+
#Fri Apr 11 14:27:25 PDT 2025
|
|
1
2
|
distributionBase=GRADLE_USER_HOME
|
|
2
3
|
distributionPath=wrapper/dists
|
|
3
|
-
distributionUrl=https\://services.gradle.org/distributions/gradle-
|
|
4
|
+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
|
|
4
5
|
zipStoreBase=GRADLE_USER_HOME
|
|
5
6
|
zipStorePath=wrapper/dists
|