@react-native-firebase/analytics 23.6.0 → 23.8.0
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/dist/commonjs/index.js +38 -0
- package/dist/commonjs/index.js.map +1 -0
- package/dist/commonjs/modular.js +613 -0
- package/dist/commonjs/modular.js.map +1 -0
- package/dist/commonjs/namespaced.js +441 -0
- package/dist/commonjs/namespaced.js.map +1 -0
- package/dist/commonjs/package.json +1 -0
- package/dist/commonjs/struct.js +54 -0
- package/dist/commonjs/struct.js.map +1 -0
- package/dist/commonjs/structs.js +214 -0
- package/dist/commonjs/structs.js.map +1 -0
- package/dist/commonjs/types/analytics.js +79 -0
- package/dist/commonjs/types/analytics.js.map +1 -0
- package/dist/commonjs/types/web.js +2 -0
- package/dist/commonjs/types/web.js.map +1 -0
- package/dist/commonjs/version.js +9 -0
- package/dist/commonjs/version.js.map +1 -0
- package/dist/commonjs/web/RNFBAnalyticsModule.android.js +9 -0
- package/dist/commonjs/web/RNFBAnalyticsModule.android.js.map +1 -0
- package/dist/commonjs/web/RNFBAnalyticsModule.ios.js +9 -0
- package/dist/commonjs/web/RNFBAnalyticsModule.ios.js.map +1 -0
- package/dist/commonjs/web/RNFBAnalyticsModule.js +119 -0
- package/dist/commonjs/web/RNFBAnalyticsModule.js.map +1 -0
- package/dist/commonjs/web/api.js +294 -0
- package/dist/commonjs/web/api.js.map +1 -0
- package/{ios/RNFBAnalytics/RNFBAnalyticsModule.h → dist/module/index.js} +10 -6
- package/dist/module/index.js.map +1 -0
- package/{lib/modular/index.js → dist/module/modular.js} +43 -161
- package/dist/module/modular.js.map +1 -0
- package/dist/module/namespaced.js +438 -0
- package/dist/module/namespaced.js.map +1 -0
- package/dist/module/package.json +1 -0
- package/{lib → dist/module}/struct.js +12 -14
- package/dist/module/struct.js.map +1 -0
- package/dist/module/structs.js +210 -0
- package/dist/module/structs.js.map +1 -0
- package/dist/module/types/analytics.js +75 -0
- package/dist/module/types/analytics.js.map +1 -0
- package/dist/module/types/web.js +2 -0
- package/dist/module/types/web.js.map +1 -0
- package/dist/module/version.js +5 -0
- package/dist/module/version.js.map +1 -0
- package/dist/module/web/RNFBAnalyticsModule.android.js +6 -0
- package/dist/module/web/RNFBAnalyticsModule.android.js.map +1 -0
- package/dist/module/web/RNFBAnalyticsModule.ios.js +6 -0
- package/dist/module/web/RNFBAnalyticsModule.ios.js.map +1 -0
- package/{lib → dist/module}/web/RNFBAnalyticsModule.js +17 -21
- package/dist/module/web/RNFBAnalyticsModule.js.map +1 -0
- package/{lib → dist/module}/web/api.js +34 -77
- package/dist/module/web/api.js.map +1 -0
- package/dist/typescript/commonjs/lib/index.d.ts +5 -0
- package/dist/typescript/commonjs/lib/index.d.ts.map +1 -0
- package/dist/typescript/commonjs/lib/modular.d.ts +476 -0
- package/dist/typescript/commonjs/lib/modular.d.ts.map +1 -0
- package/dist/typescript/commonjs/lib/namespaced.d.ts +12 -0
- package/dist/typescript/commonjs/lib/namespaced.d.ts.map +1 -0
- package/dist/typescript/commonjs/lib/struct.d.ts +3 -0
- package/dist/typescript/commonjs/lib/struct.d.ts.map +1 -0
- package/dist/typescript/commonjs/lib/structs.d.ts +1155 -0
- package/dist/typescript/commonjs/lib/structs.d.ts.map +1 -0
- package/dist/typescript/commonjs/lib/types/analytics.d.ts +944 -0
- package/dist/typescript/commonjs/lib/types/analytics.d.ts.map +1 -0
- package/dist/typescript/commonjs/lib/types/web.d.ts +36 -0
- package/dist/typescript/commonjs/lib/types/web.d.ts.map +1 -0
- package/dist/typescript/commonjs/lib/version.d.ts +2 -0
- package/dist/typescript/commonjs/lib/version.d.ts.map +1 -0
- package/dist/typescript/commonjs/lib/web/RNFBAnalyticsModule.android.d.ts +3 -0
- package/dist/typescript/commonjs/lib/web/RNFBAnalyticsModule.android.d.ts.map +1 -0
- package/dist/typescript/commonjs/lib/web/RNFBAnalyticsModule.d.ts +9 -0
- package/dist/typescript/commonjs/lib/web/RNFBAnalyticsModule.d.ts.map +1 -0
- package/dist/typescript/commonjs/lib/web/RNFBAnalyticsModule.ios.d.ts +3 -0
- package/dist/typescript/commonjs/lib/web/RNFBAnalyticsModule.ios.d.ts.map +1 -0
- package/dist/typescript/commonjs/lib/web/api.d.ts +37 -0
- package/dist/typescript/commonjs/lib/web/api.d.ts.map +1 -0
- package/dist/typescript/commonjs/package.json +1 -0
- package/dist/typescript/module/lib/index.d.ts +5 -0
- package/dist/typescript/module/lib/index.d.ts.map +1 -0
- package/dist/typescript/module/lib/modular.d.ts +476 -0
- package/dist/typescript/module/lib/modular.d.ts.map +1 -0
- package/dist/typescript/module/lib/namespaced.d.ts +12 -0
- package/dist/typescript/module/lib/namespaced.d.ts.map +1 -0
- package/dist/typescript/module/lib/struct.d.ts +3 -0
- package/dist/typescript/module/lib/struct.d.ts.map +1 -0
- package/dist/typescript/module/lib/structs.d.ts +1155 -0
- package/dist/typescript/module/lib/structs.d.ts.map +1 -0
- package/dist/typescript/module/lib/types/analytics.d.ts +944 -0
- package/dist/typescript/module/lib/types/analytics.d.ts.map +1 -0
- package/dist/typescript/module/lib/types/web.d.ts +36 -0
- package/dist/typescript/module/lib/types/web.d.ts.map +1 -0
- package/dist/typescript/module/lib/version.d.ts +2 -0
- package/dist/typescript/module/lib/version.d.ts.map +1 -0
- package/dist/typescript/module/lib/web/RNFBAnalyticsModule.android.d.ts +3 -0
- package/dist/typescript/module/lib/web/RNFBAnalyticsModule.android.d.ts.map +1 -0
- package/dist/typescript/module/lib/web/RNFBAnalyticsModule.d.ts +9 -0
- package/dist/typescript/module/lib/web/RNFBAnalyticsModule.d.ts.map +1 -0
- package/dist/typescript/module/lib/web/RNFBAnalyticsModule.ios.d.ts +3 -0
- package/dist/typescript/module/lib/web/RNFBAnalyticsModule.ios.d.ts.map +1 -0
- package/dist/typescript/module/lib/web/api.d.ts +37 -0
- package/dist/typescript/module/lib/web/api.d.ts.map +1 -0
- package/dist/typescript/module/package.json +1 -0
- package/lib/index.ts +73 -0
- package/lib/modular.ts +1026 -0
- package/lib/{index.js → namespaced.ts} +145 -72
- package/lib/struct.ts +61 -0
- package/lib/{structs.js → structs.ts} +3 -3
- package/lib/types/analytics.ts +1078 -0
- package/lib/types/web.ts +56 -0
- package/lib/version.ts +2 -0
- package/lib/web/RNFBAnalyticsModule.android.ts +3 -0
- package/lib/web/RNFBAnalyticsModule.ios.ts +3 -0
- package/lib/web/RNFBAnalyticsModule.ts +135 -0
- package/lib/web/api.ts +366 -0
- package/package.json +61 -7
- package/CHANGELOG.md +0 -1081
- package/RNFBAnalytics.podspec +0 -71
- package/android/.editorconfig +0 -10
- package/android/build.gradle +0 -177
- package/android/lint.xml +0 -5
- package/android/settings.gradle +0 -1
- package/android/src/main/AndroidManifest.xml +0 -21
- package/android/src/main/java/io/invertase/firebase/analytics/UniversalFirebaseAnalyticsModule.java +0 -141
- package/android/src/reactnative/AndroidManifest.xml +0 -2
- package/android/src/reactnative/java/io/invertase/firebase/analytics/ReactNativeFirebaseAnalyticsModule.java +0 -213
- package/android/src/reactnative/java/io/invertase/firebase/analytics/ReactNativeFirebaseAnalyticsPackage.java +0 -41
- package/ios/RNFBAnalytics/RNFBAnalyticsModule.m +0 -268
- package/ios/RNFBAnalytics.xcodeproj/project.pbxproj +0 -349
- package/ios/RNFBAnalytics.xcodeproj/xcshareddata/IDETemplateMacros.plist +0 -24
- package/lib/index.d.ts +0 -1903
- package/lib/modular/index.d.ts +0 -1267
- package/lib/version.js +0 -2
- package/lib/web/RNFBAnalyticsModule.android.js +0 -2
- package/lib/web/RNFBAnalyticsModule.ios.js +0 -2
package/CHANGELOG.md
DELETED
|
@@ -1,1081 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
## [23.6.0](https://github.com/invertase/react-native-firebase/compare/v23.5.0...v23.6.0) (2025-12-08)
|
|
7
|
-
|
|
8
|
-
### Performance Improvements
|
|
9
|
-
|
|
10
|
-
- **analytics:** skip validateStruct in release mode ([#8716](https://github.com/invertase/react-native-firebase/issues/8716)) ([2b7bbb1](https://github.com/invertase/react-native-firebase/commit/2b7bbb1a4d7d53dca289fcd24eb7010a82fe0eae))
|
|
11
|
-
|
|
12
|
-
## [23.5.0](https://github.com/invertase/react-native-firebase/compare/v23.4.1...v23.5.0) (2025-10-30)
|
|
13
|
-
|
|
14
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
15
|
-
|
|
16
|
-
## [23.4.1](https://github.com/invertase/react-native-firebase/compare/v23.4.0...v23.4.1) (2025-10-14)
|
|
17
|
-
|
|
18
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
19
|
-
|
|
20
|
-
## [23.4.0](https://github.com/invertase/react-native-firebase/compare/v23.3.1...v23.4.0) (2025-09-24)
|
|
21
|
-
|
|
22
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
23
|
-
|
|
24
|
-
## [23.3.1](https://github.com/invertase/react-native-firebase/compare/v23.3.0...v23.3.1) (2025-09-08)
|
|
25
|
-
|
|
26
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
27
|
-
|
|
28
|
-
## [23.3.0](https://github.com/invertase/react-native-firebase/compare/v23.2.2...v23.3.0) (2025-09-04)
|
|
29
|
-
|
|
30
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
31
|
-
|
|
32
|
-
## [23.2.2](https://github.com/invertase/react-native-firebase/compare/v23.2.1...v23.2.2) (2025-09-03)
|
|
33
|
-
|
|
34
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
35
|
-
|
|
36
|
-
## [23.2.1](https://github.com/invertase/react-native-firebase/compare/v23.2.0...v23.2.1) (2025-09-01)
|
|
37
|
-
|
|
38
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
39
|
-
|
|
40
|
-
## [23.2.0](https://github.com/invertase/react-native-firebase/compare/v23.1.2...v23.2.0) (2025-08-29)
|
|
41
|
-
|
|
42
|
-
### Bug Fixes
|
|
43
|
-
|
|
44
|
-
- **analytics, ios:** reject getSessionId call if id is zero ([9d2a393](https://github.com/invertase/react-native-firebase/commit/9d2a393e1bcbb3fe9b577abc6892115acd2f78e1))
|
|
45
|
-
|
|
46
|
-
## [23.1.2](https://github.com/invertase/react-native-firebase/compare/v23.1.1...v23.1.2) (2025-08-25)
|
|
47
|
-
|
|
48
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
49
|
-
|
|
50
|
-
## [23.1.1](https://github.com/invertase/react-native-firebase/compare/v23.1.0...v23.1.1) (2025-08-22)
|
|
51
|
-
|
|
52
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
53
|
-
|
|
54
|
-
## [23.1.0](https://github.com/invertase/react-native-firebase/compare/v23.0.1...v23.1.0) (2025-08-19)
|
|
55
|
-
|
|
56
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
57
|
-
|
|
58
|
-
## [23.0.1](https://github.com/invertase/react-native-firebase/compare/v23.0.0...v23.0.1) (2025-08-12)
|
|
59
|
-
|
|
60
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
61
|
-
|
|
62
|
-
## [23.0.0](https://github.com/invertase/react-native-firebase/compare/v22.4.0...v23.0.0) (2025-08-07)
|
|
63
|
-
|
|
64
|
-
### ⚠ BREAKING CHANGES
|
|
65
|
-
|
|
66
|
-
- new minimums: iOS 15+, Xcode 16.2+
|
|
67
|
-
|
|
68
|
-
### Features
|
|
69
|
-
|
|
70
|
-
- bump firebase-ios-sdk to `12.0.0` ([e3d6d22](https://github.com/invertase/react-native-firebase/commit/e3d6d222f0a83f6a3f6ea6975401e4b03cc4421a))
|
|
71
|
-
|
|
72
|
-
## [22.4.0](https://github.com/invertase/react-native-firebase/compare/v22.3.0...v22.4.0) (2025-07-10)
|
|
73
|
-
|
|
74
|
-
### Bug Fixes
|
|
75
|
-
|
|
76
|
-
- **analytics, ios:** `FirebaseAnalytics/Core` is always needed ([a5a0d80](https://github.com/invertase/react-native-firebase/commit/a5a0d80c887b21b0d55a079348e59f6ac6b76c98))
|
|
77
|
-
|
|
78
|
-
## [22.3.0](https://github.com/invertase/react-native-firebase/compare/v22.2.1...v22.3.0) (2025-07-08)
|
|
79
|
-
|
|
80
|
-
### Bug Fixes
|
|
81
|
-
|
|
82
|
-
- **app, ios:** adopt firebase-ios-sdk 11.15.0 ([28471dc](https://github.com/invertase/react-native-firebase/commit/28471dcc4948851106bc3be2e614dd59c358c403)), closes [/firebase.google.com/support/faq#analytics-odm2](https://github.com/invertase//firebase.google.com/support/faq/issues/analytics-odm2)
|
|
83
|
-
|
|
84
|
-
## [22.2.1](https://github.com/invertase/react-native-firebase/compare/v22.2.0...v22.2.1) (2025-06-10)
|
|
85
|
-
|
|
86
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
87
|
-
|
|
88
|
-
## [22.2.0](https://github.com/invertase/react-native-firebase/compare/v22.1.0...v22.2.0) (2025-05-12)
|
|
89
|
-
|
|
90
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
91
|
-
|
|
92
|
-
## [22.1.0](https://github.com/invertase/react-native-firebase/compare/v22.0.0...v22.1.0) (2025-04-30)
|
|
93
|
-
|
|
94
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
95
|
-
|
|
96
|
-
## [22.0.0](https://github.com/invertase/react-native-firebase/compare/v21.14.0...v22.0.0) (2025-04-25)
|
|
97
|
-
|
|
98
|
-
### Bug Fixes
|
|
99
|
-
|
|
100
|
-
- **analytics:** Type defs ([#8363](https://github.com/invertase/react-native-firebase/issues/8363)) ([74efc84](https://github.com/invertase/react-native-firebase/commit/74efc848e3ecda47b5c7cdf79e5e72370cd10b7d))
|
|
101
|
-
- **android:** use `=` assignment vs deprecated space-assignment ([39c2ecb](https://github.com/invertase/react-native-firebase/commit/39c2ecb0069a8a5a65b04fb7f86ccecf83273868))
|
|
102
|
-
- enable provenance signing during publish ([4535f0d](https://github.com/invertase/react-native-firebase/commit/4535f0d5756c89aeb8f8e772348c71d8176348be))
|
|
103
|
-
|
|
104
|
-
## [21.14.0](https://github.com/invertase/react-native-firebase/compare/v21.13.0...v21.14.0) (2025-04-14)
|
|
105
|
-
|
|
106
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
107
|
-
|
|
108
|
-
## [21.13.0](https://github.com/invertase/react-native-firebase/compare/v21.12.3...v21.13.0) (2025-03-31)
|
|
109
|
-
|
|
110
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
111
|
-
|
|
112
|
-
## [21.12.3](https://github.com/invertase/react-native-firebase/compare/v21.12.2...v21.12.3) (2025-03-26)
|
|
113
|
-
|
|
114
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
115
|
-
|
|
116
|
-
## [21.12.2](https://github.com/invertase/react-native-firebase/compare/v21.12.1...v21.12.2) (2025-03-23)
|
|
117
|
-
|
|
118
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
119
|
-
|
|
120
|
-
## [21.12.1](https://github.com/invertase/react-native-firebase/compare/v21.12.0...v21.12.1) (2025-03-22)
|
|
121
|
-
|
|
122
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
123
|
-
|
|
124
|
-
## [21.12.0](https://github.com/invertase/react-native-firebase/compare/v21.11.0...v21.12.0) (2025-03-03)
|
|
125
|
-
|
|
126
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
127
|
-
|
|
128
|
-
## [21.11.0](https://github.com/invertase/react-native-firebase/compare/v21.10.1...v21.11.0) (2025-02-20)
|
|
129
|
-
|
|
130
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
131
|
-
|
|
132
|
-
## [21.10.1](https://github.com/invertase/react-native-firebase/compare/v21.10.0...v21.10.1) (2025-02-18)
|
|
133
|
-
|
|
134
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
135
|
-
|
|
136
|
-
## [21.10.0](https://github.com/invertase/react-native-firebase/compare/v21.9.0...v21.10.0) (2025-02-11)
|
|
137
|
-
|
|
138
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
139
|
-
|
|
140
|
-
## [21.9.0](https://github.com/invertase/react-native-firebase/compare/v21.8.0...v21.9.0) (2025-02-11)
|
|
141
|
-
|
|
142
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
143
|
-
|
|
144
|
-
## [21.8.0](https://github.com/invertase/react-native-firebase/compare/v21.7.4...v21.8.0) (2025-02-10)
|
|
145
|
-
|
|
146
|
-
### Bug Fixes
|
|
147
|
-
|
|
148
|
-
- do not ship unit tests in released packages ([e71dadf](https://github.com/invertase/react-native-firebase/commit/e71dadfc1c0cad2e89c94100913af31ddf7d9c91))
|
|
149
|
-
|
|
150
|
-
## [21.7.4](https://github.com/invertase/react-native-firebase/compare/v21.7.3...v21.7.4) (2025-02-08)
|
|
151
|
-
|
|
152
|
-
### Bug Fixes
|
|
153
|
-
|
|
154
|
-
- the init calls for modular should use modular getApp() ([79da98b](https://github.com/invertase/react-native-firebase/commit/79da98bf4ecf7860db61b2813b87673f1cd0adfd))
|
|
155
|
-
|
|
156
|
-
## [21.7.3](https://github.com/invertase/react-native-firebase/compare/v21.7.2...v21.7.3) (2025-02-08)
|
|
157
|
-
|
|
158
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
159
|
-
|
|
160
|
-
## [21.7.2](https://github.com/invertase/react-native-firebase/compare/v21.7.1...v21.7.2) (2025-02-05)
|
|
161
|
-
|
|
162
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
163
|
-
|
|
164
|
-
## [21.7.1](https://github.com/invertase/react-native-firebase/compare/v21.7.0...v21.7.1) (2025-01-20)
|
|
165
|
-
|
|
166
|
-
### Bug Fixes
|
|
167
|
-
|
|
168
|
-
- **analytics,web:** use no-cors mode vs no-cors header for web analytics ([#8238](https://github.com/invertase/react-native-firebase/issues/8238)) ([17e8e49](https://github.com/invertase/react-native-firebase/commit/17e8e498d0cae2212e127f2e7faccebf8de3f64b))
|
|
169
|
-
|
|
170
|
-
## [21.7.0](https://github.com/invertase/react-native-firebase/compare/v21.6.2...v21.7.0) (2025-01-16)
|
|
171
|
-
|
|
172
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
173
|
-
|
|
174
|
-
## [21.6.2](https://github.com/invertase/react-native-firebase/compare/v21.6.1...v21.6.2) (2025-01-02)
|
|
175
|
-
|
|
176
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
177
|
-
|
|
178
|
-
## [21.6.1](https://github.com/invertase/react-native-firebase/compare/v21.6.0...v21.6.1) (2024-11-25)
|
|
179
|
-
|
|
180
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
181
|
-
|
|
182
|
-
## [21.6.0](https://github.com/invertase/react-native-firebase/compare/v21.5.0...v21.6.0) (2024-11-20)
|
|
183
|
-
|
|
184
|
-
### Bug Fixes
|
|
185
|
-
|
|
186
|
-
- **analytics:** update superstruct dependency / forward-port to new API ([#8153](https://github.com/invertase/react-native-firebase/issues/8153)) ([6db1fb4](https://github.com/invertase/react-native-firebase/commit/6db1fb471e62e2c7e434719f2616c76349f345be))
|
|
187
|
-
|
|
188
|
-
## [21.5.0](https://github.com/invertase/react-native-firebase/compare/v21.4.1...v21.5.0) (2024-11-16)
|
|
189
|
-
|
|
190
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
191
|
-
|
|
192
|
-
## [21.4.1](https://github.com/invertase/react-native-firebase/compare/v21.4.0...v21.4.1) (2024-11-13)
|
|
193
|
-
|
|
194
|
-
### Reverts
|
|
195
|
-
|
|
196
|
-
- Revert "fix(ios, sdk): constrain transitive dependencies more tightly" ([1ff247c](https://github.com/invertase/react-native-firebase/commit/1ff247cd73804efbd52eb9490f68087685de814c))
|
|
197
|
-
|
|
198
|
-
## [21.4.0](https://github.com/invertase/react-native-firebase/compare/v21.3.0...v21.4.0) (2024-11-07)
|
|
199
|
-
|
|
200
|
-
### Features
|
|
201
|
-
|
|
202
|
-
- enable tvOS installation on all package with upstream support ([e8e5f7f](https://github.com/invertase/react-native-firebase/commit/e8e5f7f9aab9a58aabf9a7b0cd756584240dbc48))
|
|
203
|
-
|
|
204
|
-
## [21.3.0](https://github.com/invertase/react-native-firebase/compare/v21.2.0...v21.3.0) (2024-10-31)
|
|
205
|
-
|
|
206
|
-
### Features
|
|
207
|
-
|
|
208
|
-
- **analytics:** allow custom event parameters for Item in events ([d55e891](https://github.com/invertase/react-native-firebase/commit/d55e891064d7343788526f688d303dd01c2484c4))
|
|
209
|
-
|
|
210
|
-
## [21.2.0](https://github.com/invertase/react-native-firebase/compare/v21.1.1...v21.2.0) (2024-10-22)
|
|
211
|
-
|
|
212
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
213
|
-
|
|
214
|
-
## [21.1.1](https://github.com/invertase/react-native-firebase/compare/v21.1.0...v21.1.1) (2024-10-22)
|
|
215
|
-
|
|
216
|
-
### Bug Fixes
|
|
217
|
-
|
|
218
|
-
- **ios, sdk:** constrain transitive dependencies more tightly ([d03ab42](https://github.com/invertase/react-native-firebase/commit/d03ab42a163a17268bac344ccd135dc18849e1be))
|
|
219
|
-
|
|
220
|
-
## [21.1.0](https://github.com/invertase/react-native-firebase/compare/v21.0.0...v21.1.0) (2024-10-21)
|
|
221
|
-
|
|
222
|
-
### Bug Fixes
|
|
223
|
-
|
|
224
|
-
- **analytics:** typo in type declarations ([#8011](https://github.com/invertase/react-native-firebase/issues/8011)) ([5fde231](https://github.com/invertase/react-native-firebase/commit/5fde23113978569a5d6ad3531f37a617aa30a590))
|
|
225
|
-
|
|
226
|
-
## [21.0.0](https://github.com/invertase/react-native-firebase/compare/v20.5.0...v21.0.0) (2024-09-26)
|
|
227
|
-
|
|
228
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
229
|
-
|
|
230
|
-
## [20.5.0](https://github.com/invertase/react-native-firebase/compare/v20.4.0...v20.5.0) (2024-09-11)
|
|
231
|
-
|
|
232
|
-
### Features
|
|
233
|
-
|
|
234
|
-
- **analytics:** initiate on device measurement with sha256-hashed values ([#7963](https://github.com/invertase/react-native-firebase/issues/7963)) ([5ce51e1](https://github.com/invertase/react-native-firebase/commit/5ce51e1b8b225bb509b4a0d444f42fa4c5f3effc))
|
|
235
|
-
|
|
236
|
-
## [20.4.0](https://github.com/invertase/react-native-firebase/compare/v20.3.0...v20.4.0) (2024-08-13)
|
|
237
|
-
|
|
238
|
-
### Bug Fixes
|
|
239
|
-
|
|
240
|
-
- **analytics:** update the typing for Item ([#7919](https://github.com/invertase/react-native-firebase/issues/7919)) ([c2c4576](https://github.com/invertase/react-native-firebase/commit/c2c457608c865f6d25e4b9b6689cbc00721de194))
|
|
241
|
-
|
|
242
|
-
## [20.3.0](https://github.com/invertase/react-native-firebase/compare/v20.2.1...v20.3.0) (2024-07-19)
|
|
243
|
-
|
|
244
|
-
### Bug Fixes
|
|
245
|
-
|
|
246
|
-
- **analytics,other:** persist analytics client id where possible ([94a8198](https://github.com/invertase/react-native-firebase/commit/94a8198e9d4f5a689bcc9ec879e5d4bec83acd66))
|
|
247
|
-
|
|
248
|
-
## [20.2.1](https://github.com/invertase/react-native-firebase/compare/v20.2.0...v20.2.1) (2024-07-17)
|
|
249
|
-
|
|
250
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
251
|
-
|
|
252
|
-
## [20.2.0](https://github.com/invertase/react-native-firebase/compare/v20.1.0...v20.2.0) (2024-07-15)
|
|
253
|
-
|
|
254
|
-
### Features
|
|
255
|
-
|
|
256
|
-
- **other:** Add analytics support ([#7899](https://github.com/invertase/react-native-firebase/issues/7899)) ([cbdf9ec](https://github.com/invertase/react-native-firebase/commit/cbdf9ec78452a73751d1afeca428842898f63134))
|
|
257
|
-
|
|
258
|
-
## [20.1.0](https://github.com/invertase/react-native-firebase/compare/v20.0.0...v20.1.0) (2024-06-04)
|
|
259
|
-
|
|
260
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
261
|
-
|
|
262
|
-
## [20.0.0](https://github.com/invertase/react-native-firebase/compare/v19.3.0...v20.0.0) (2024-05-20)
|
|
263
|
-
|
|
264
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
265
|
-
|
|
266
|
-
## [19.3.0](https://github.com/invertase/react-native-firebase/compare/v19.2.2...v19.3.0) (2024-05-20)
|
|
267
|
-
|
|
268
|
-
### Features
|
|
269
|
-
|
|
270
|
-
- **analytics:** allow custom event parameters for begin_checkout and purchase events ([#7760](https://github.com/invertase/react-native-firebase/issues/7760)) ([424b9d9](https://github.com/invertase/react-native-firebase/commit/424b9d9c15921268ba3cc96a3e154fe2ee18c345))
|
|
271
|
-
|
|
272
|
-
## [19.2.2](https://github.com/invertase/react-native-firebase/compare/v19.2.1...v19.2.2) (2024-04-13)
|
|
273
|
-
|
|
274
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
275
|
-
|
|
276
|
-
## [19.2.1](https://github.com/invertase/react-native-firebase/compare/v19.2.0...v19.2.1) (2024-04-12)
|
|
277
|
-
|
|
278
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
279
|
-
|
|
280
|
-
## [19.2.0](https://github.com/invertase/react-native-firebase/compare/v19.1.2...v19.2.0) (2024-04-10)
|
|
281
|
-
|
|
282
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
283
|
-
|
|
284
|
-
## [19.1.2](https://github.com/invertase/react-native-firebase/compare/v19.1.1...v19.1.2) (2024-04-03)
|
|
285
|
-
|
|
286
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
287
|
-
|
|
288
|
-
## [19.1.1](https://github.com/invertase/react-native-firebase/compare/v19.1.0...v19.1.1) (2024-03-26)
|
|
289
|
-
|
|
290
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
291
|
-
|
|
292
|
-
## [19.1.0](https://github.com/invertase/react-native-firebase/compare/v19.0.1...v19.1.0) (2024-03-23)
|
|
293
|
-
|
|
294
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
295
|
-
|
|
296
|
-
## [19.0.1](https://github.com/invertase/react-native-firebase/compare/v19.0.0...v19.0.1) (2024-03-07)
|
|
297
|
-
|
|
298
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
299
|
-
|
|
300
|
-
## [19.0.0](https://github.com/invertase/react-native-firebase/compare/v18.9.0...v19.0.0) (2024-02-26)
|
|
301
|
-
|
|
302
|
-
### Features
|
|
303
|
-
|
|
304
|
-
- **analytics, ios:** add Podfile toggle to optionally link AdSupport ([e4db9bb](https://github.com/invertase/react-native-firebase/commit/e4db9bbf0266de658ae3991568f5e04f1fcf7fc7))
|
|
305
|
-
|
|
306
|
-
## [18.9.0](https://github.com/invertase/react-native-firebase/compare/v18.8.0...v18.9.0) (2024-02-21)
|
|
307
|
-
|
|
308
|
-
### Features
|
|
309
|
-
|
|
310
|
-
- **analytics:** add setConsent implementation ([#7629](https://github.com/invertase/react-native-firebase/issues/7629)) ([7816985](https://github.com/invertase/react-native-firebase/commit/78169854f16a2715f5d2657ab08f54d5a4b05281))
|
|
311
|
-
|
|
312
|
-
## [18.8.0](https://github.com/invertase/react-native-firebase/compare/v18.7.3...v18.8.0) (2024-01-25)
|
|
313
|
-
|
|
314
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
315
|
-
|
|
316
|
-
## [18.7.3](https://github.com/invertase/react-native-firebase/compare/v18.7.2...v18.7.3) (2023-12-13)
|
|
317
|
-
|
|
318
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
319
|
-
|
|
320
|
-
## [18.7.2](https://github.com/invertase/react-native-firebase/compare/v18.7.1...v18.7.2) (2023-12-08)
|
|
321
|
-
|
|
322
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
323
|
-
|
|
324
|
-
## [18.7.1](https://github.com/invertase/react-native-firebase/compare/v18.7.0...v18.7.1) (2023-11-29)
|
|
325
|
-
|
|
326
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
327
|
-
|
|
328
|
-
## [18.7.0](https://github.com/invertase/react-native-firebase/compare/v18.6.2...v18.7.0) (2023-11-28)
|
|
329
|
-
|
|
330
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
331
|
-
|
|
332
|
-
## [18.6.2](https://github.com/invertase/react-native-firebase/compare/v18.6.1...v18.6.2) (2023-11-23)
|
|
333
|
-
|
|
334
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
335
|
-
|
|
336
|
-
## [18.6.1](https://github.com/invertase/react-native-firebase/compare/v18.6.0...v18.6.1) (2023-11-01)
|
|
337
|
-
|
|
338
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
339
|
-
|
|
340
|
-
## [18.6.0](https://github.com/invertase/react-native-firebase/compare/v18.5.0...v18.6.0) (2023-10-26)
|
|
341
|
-
|
|
342
|
-
### Bug Fixes
|
|
343
|
-
|
|
344
|
-
- **android:** required compatibility for Gradle 8 in android modules ([b52d0ce](https://github.com/invertase/react-native-firebase/commit/b52d0ce6723c077190618641ce0f33ced9fd4090))
|
|
345
|
-
|
|
346
|
-
## [18.5.0](https://github.com/invertase/react-native-firebase/compare/v18.4.0...v18.5.0) (2023-09-22)
|
|
347
|
-
|
|
348
|
-
### Features
|
|
349
|
-
|
|
350
|
-
- **ios:** add initiateOnDeviceConversionMeasurementWithPhoneNumber ([80ac07e](https://github.com/invertase/react-native-firebase/commit/80ac07e207bad7f31a4805edb26e350f892fc5bf))
|
|
351
|
-
|
|
352
|
-
## [18.4.0](https://github.com/invertase/react-native-firebase/compare/v18.3.2...v18.4.0) (2023-09-11)
|
|
353
|
-
|
|
354
|
-
### Features
|
|
355
|
-
|
|
356
|
-
- **analytics:** Add types to modular package ([#7109](https://github.com/invertase/react-native-firebase/issues/7109)) ([b6f64bf](https://github.com/invertase/react-native-firebase/commit/b6f64bf8813ceedd220d3e16eec850e4cbc9d53b))
|
|
357
|
-
|
|
358
|
-
## [18.3.2](https://github.com/invertase/react-native-firebase/compare/v18.3.1...v18.3.2) (2023-09-02)
|
|
359
|
-
|
|
360
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
361
|
-
|
|
362
|
-
## [18.3.1](https://github.com/invertase/react-native-firebase/compare/v18.3.0...v18.3.1) (2023-08-23)
|
|
363
|
-
|
|
364
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
365
|
-
|
|
366
|
-
## [18.3.0](https://github.com/invertase/react-native-firebase/compare/v18.2.0...v18.3.0) (2023-07-19)
|
|
367
|
-
|
|
368
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
369
|
-
|
|
370
|
-
## [18.2.0](https://github.com/invertase/react-native-firebase/compare/v18.1.0...v18.2.0) (2023-07-13)
|
|
371
|
-
|
|
372
|
-
### Features
|
|
373
|
-
|
|
374
|
-
- **analytics, ios:** implement setSessionTimeoutDuration for ios ([b3ce13f](https://github.com/invertase/react-native-firebase/commit/b3ce13ff5f7922e4a253aa58377e5c3c436e74f0))
|
|
375
|
-
- **analytics:** implement getSessionId ([566470c](https://github.com/invertase/react-native-firebase/commit/566470cfc0e919a46c0a119835187257bf046df7))
|
|
376
|
-
|
|
377
|
-
## [18.1.0](https://github.com/invertase/react-native-firebase/compare/v18.0.0...v18.1.0) (2023-06-22)
|
|
378
|
-
|
|
379
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
380
|
-
|
|
381
|
-
## [18.0.0](https://github.com/invertase/react-native-firebase/compare/v17.5.0...v18.0.0) (2023-06-05)
|
|
382
|
-
|
|
383
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
384
|
-
|
|
385
|
-
## [17.5.0](https://github.com/invertase/react-native-firebase/compare/v17.4.3...v17.5.0) (2023-05-11)
|
|
386
|
-
|
|
387
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
388
|
-
|
|
389
|
-
### [17.4.3](https://github.com/invertase/react-native-firebase/compare/v17.4.2...v17.4.3) (2023-04-26)
|
|
390
|
-
|
|
391
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
392
|
-
|
|
393
|
-
### [17.4.2](https://github.com/invertase/react-native-firebase/compare/v17.4.1...v17.4.2) (2023-04-05)
|
|
394
|
-
|
|
395
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
396
|
-
|
|
397
|
-
### [17.4.1](https://github.com/invertase/react-native-firebase/compare/v17.4.0...v17.4.1) (2023-04-01)
|
|
398
|
-
|
|
399
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
400
|
-
|
|
401
|
-
## [17.4.0](https://github.com/invertase/react-native-firebase/compare/v17.3.2...v17.4.0) (2023-03-25)
|
|
402
|
-
|
|
403
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
404
|
-
|
|
405
|
-
### [17.3.2](https://github.com/invertase/react-native-firebase/compare/v17.3.1...v17.3.2) (2023-03-05)
|
|
406
|
-
|
|
407
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
408
|
-
|
|
409
|
-
### [17.3.1](https://github.com/invertase/react-native-firebase/compare/v17.3.0...v17.3.1) (2023-02-23)
|
|
410
|
-
|
|
411
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
412
|
-
|
|
413
|
-
## [17.3.0](https://github.com/invertase/react-native-firebase/compare/v17.2.0...v17.3.0) (2023-02-15)
|
|
414
|
-
|
|
415
|
-
### Features
|
|
416
|
-
|
|
417
|
-
- **analytics:** Expose modular API that matches the Firebase web JS SDK v9 API ([#6816](https://github.com/invertase/react-native-firebase/issues/6816)) ([a42551a](https://github.com/invertase/react-native-firebase/commit/a42551aadb98ba6fdd18dde627b436e667d0a014))
|
|
418
|
-
|
|
419
|
-
## [17.2.0](https://github.com/invertase/react-native-firebase/compare/v17.1.0...v17.2.0) (2023-02-15)
|
|
420
|
-
|
|
421
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
422
|
-
|
|
423
|
-
## [17.1.0](https://github.com/invertase/react-native-firebase/compare/v17.0.0...v17.1.0) (2023-02-09)
|
|
424
|
-
|
|
425
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
426
|
-
|
|
427
|
-
## [17.0.0](https://github.com/invertase/react-native-firebase/compare/v16.7.0...v17.0.0) (2023-02-02)
|
|
428
|
-
|
|
429
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
430
|
-
|
|
431
|
-
## [16.7.0](https://github.com/invertase/react-native-firebase/compare/v16.6.0...v16.7.0) (2023-01-28)
|
|
432
|
-
|
|
433
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
434
|
-
|
|
435
|
-
## [16.6.0](https://github.com/invertase/react-native-firebase/compare/v16.5.2...v16.6.0) (2023-01-27)
|
|
436
|
-
|
|
437
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
438
|
-
|
|
439
|
-
### [16.5.2](https://github.com/invertase/react-native-firebase/compare/v16.5.1...v16.5.2) (2023-01-23)
|
|
440
|
-
|
|
441
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
442
|
-
|
|
443
|
-
### [16.5.1](https://github.com/invertase/react-native-firebase/compare/v16.5.0...v16.5.1) (2023-01-20)
|
|
444
|
-
|
|
445
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
446
|
-
|
|
447
|
-
## [16.5.0](https://github.com/invertase/react-native-firebase/compare/v16.4.6...v16.5.0) (2022-12-16)
|
|
448
|
-
|
|
449
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
450
|
-
|
|
451
|
-
### [16.4.6](https://github.com/invertase/react-native-firebase/compare/v16.4.5...v16.4.6) (2022-11-18)
|
|
452
|
-
|
|
453
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
454
|
-
|
|
455
|
-
### [16.4.5](https://github.com/invertase/react-native-firebase/compare/v16.4.4...v16.4.5) (2022-11-16)
|
|
456
|
-
|
|
457
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
458
|
-
|
|
459
|
-
### [16.4.4](https://github.com/invertase/react-native-firebase/compare/v16.4.3...v16.4.4) (2022-11-14)
|
|
460
|
-
|
|
461
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
462
|
-
|
|
463
|
-
### [16.4.3](https://github.com/invertase/react-native-firebase/compare/v16.4.2...v16.4.3) (2022-11-06)
|
|
464
|
-
|
|
465
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
466
|
-
|
|
467
|
-
### [16.4.2](https://github.com/invertase/react-native-firebase/compare/v16.4.1...v16.4.2) (2022-11-04)
|
|
468
|
-
|
|
469
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
470
|
-
|
|
471
|
-
### [16.4.1](https://github.com/invertase/react-native-firebase/compare/v16.4.0...v16.4.1) (2022-11-02)
|
|
472
|
-
|
|
473
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
474
|
-
|
|
475
|
-
## [16.4.0](https://github.com/invertase/react-native-firebase/compare/v16.3.1...v16.4.0) (2022-10-30)
|
|
476
|
-
|
|
477
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
478
|
-
|
|
479
|
-
### [16.3.1](https://github.com/invertase/react-native-firebase/compare/v16.3.0...v16.3.1) (2022-10-28)
|
|
480
|
-
|
|
481
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
482
|
-
|
|
483
|
-
## [16.3.0](https://github.com/invertase/react-native-firebase/compare/v16.2.0...v16.3.0) (2022-10-26)
|
|
484
|
-
|
|
485
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
486
|
-
|
|
487
|
-
## [16.2.0](https://github.com/invertase/react-native-firebase/compare/v16.1.1...v16.2.0) (2022-10-23)
|
|
488
|
-
|
|
489
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
490
|
-
|
|
491
|
-
### [16.1.1](https://github.com/invertase/react-native-firebase/compare/v16.1.0...v16.1.1) (2022-10-21)
|
|
492
|
-
|
|
493
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
494
|
-
|
|
495
|
-
## [16.1.0](https://github.com/invertase/react-native-firebase/compare/v16.0.0...v16.1.0) (2022-10-20)
|
|
496
|
-
|
|
497
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
498
|
-
|
|
499
|
-
## [16.0.0](https://github.com/invertase/react-native-firebase/compare/v15.7.1...v16.0.0) (2022-10-19)
|
|
500
|
-
|
|
501
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
502
|
-
|
|
503
|
-
## [15.7.1](https://github.com/invertase/react-native-firebase/compare/v15.7.0...v15.7.1) (2022-10-19)
|
|
504
|
-
|
|
505
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
506
|
-
|
|
507
|
-
# [15.7.0](https://github.com/invertase/react-native-firebase/compare/v15.6.0...v15.7.0) (2022-10-01)
|
|
508
|
-
|
|
509
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
510
|
-
|
|
511
|
-
# [15.6.0](https://github.com/invertase/react-native-firebase/compare/v15.5.0...v15.6.0) (2022-09-17)
|
|
512
|
-
|
|
513
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
514
|
-
|
|
515
|
-
# [15.5.0](https://github.com/invertase/react-native-firebase/compare/v15.4.0...v15.5.0) (2022-09-16)
|
|
516
|
-
|
|
517
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
518
|
-
|
|
519
|
-
# [15.4.0](https://github.com/invertase/react-native-firebase/compare/v15.3.0...v15.4.0) (2022-08-27)
|
|
520
|
-
|
|
521
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
522
|
-
|
|
523
|
-
# [15.3.0](https://github.com/invertase/react-native-firebase/compare/v15.2.0...v15.3.0) (2022-08-07)
|
|
524
|
-
|
|
525
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
526
|
-
|
|
527
|
-
# [15.2.0](https://github.com/invertase/react-native-firebase/compare/v15.1.1...v15.2.0) (2022-07-21)
|
|
528
|
-
|
|
529
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
530
|
-
|
|
531
|
-
## [15.1.1](https://github.com/invertase/react-native-firebase/compare/v15.1.0...v15.1.1) (2022-06-28)
|
|
532
|
-
|
|
533
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
534
|
-
|
|
535
|
-
# [15.1.0](https://github.com/invertase/react-native-firebase/compare/v15.0.0...v15.1.0) (2022-06-28)
|
|
536
|
-
|
|
537
|
-
### Features
|
|
538
|
-
|
|
539
|
-
- **analytics, ios:** implement on-device conversion ([a1df996](https://github.com/invertase/react-native-firebase/commit/a1df996b36f2b5eb68c6443c49c5185437573fba)), closes [/firebase.google.com/support/release-notes/ios#analytics_1](https://github.com//firebase.google.com/support/release-notes/ios/issues/analytics_1) [#6321](https://github.com/invertase/react-native-firebase/issues/6321)
|
|
540
|
-
|
|
541
|
-
# [15.0.0](https://github.com/invertase/react-native-firebase/compare/v14.11.1...v15.0.0) (2022-06-20)
|
|
542
|
-
|
|
543
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
544
|
-
|
|
545
|
-
## [14.11.1](https://github.com/invertase/react-native-firebase/compare/v14.11.0...v14.11.1) (2022-06-17)
|
|
546
|
-
|
|
547
|
-
### Bug Fixes
|
|
548
|
-
|
|
549
|
-
- **analytics:** allow manual tracking of ad_impression ([931468a](https://github.com/invertase/react-native-firebase/commit/931468ac2380b8a3449456f941caaa7ca8902d5a)), closes [#6307](https://github.com/invertase/react-native-firebase/issues/6307) [#6312](https://github.com/invertase/react-native-firebase/issues/6312)
|
|
550
|
-
|
|
551
|
-
# [14.11.0](https://github.com/invertase/react-native-firebase/compare/v14.10.1...v14.11.0) (2022-05-27)
|
|
552
|
-
|
|
553
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
554
|
-
|
|
555
|
-
## [14.10.1](https://github.com/invertase/react-native-firebase/compare/v14.10.0...v14.10.1) (2022-05-26)
|
|
556
|
-
|
|
557
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
558
|
-
|
|
559
|
-
# [14.10.0](https://github.com/invertase/react-native-firebase/compare/v14.9.4...v14.10.0) (2022-05-26)
|
|
560
|
-
|
|
561
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
562
|
-
|
|
563
|
-
## [14.9.4](https://github.com/invertase/react-native-firebase/compare/v14.9.3...v14.9.4) (2022-05-14)
|
|
564
|
-
|
|
565
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
566
|
-
|
|
567
|
-
## [14.9.3](https://github.com/invertase/react-native-firebase/compare/v14.9.2...v14.9.3) (2022-05-10)
|
|
568
|
-
|
|
569
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
570
|
-
|
|
571
|
-
## [14.9.2](https://github.com/invertase/react-native-firebase/compare/v14.9.1...v14.9.2) (2022-05-10)
|
|
572
|
-
|
|
573
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
574
|
-
|
|
575
|
-
## [14.9.1](https://github.com/invertase/react-native-firebase/compare/v14.9.0...v14.9.1) (2022-04-28)
|
|
576
|
-
|
|
577
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
578
|
-
|
|
579
|
-
# [14.9.0](https://github.com/invertase/react-native-firebase/compare/v14.8.1...v14.9.0) (2022-04-27)
|
|
580
|
-
|
|
581
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
582
|
-
|
|
583
|
-
## [14.8.1](https://github.com/invertase/react-native-firebase/compare/v14.8.0...v14.8.1) (2022-04-25)
|
|
584
|
-
|
|
585
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
586
|
-
|
|
587
|
-
# [14.8.0](https://github.com/invertase/react-native-firebase/compare/v14.7.0...v14.8.0) (2022-04-19)
|
|
588
|
-
|
|
589
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
590
|
-
|
|
591
|
-
# [14.7.0](https://github.com/invertase/react-native-firebase/compare/v14.6.0...v14.7.0) (2022-03-23)
|
|
592
|
-
|
|
593
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
594
|
-
|
|
595
|
-
# [14.6.0](https://github.com/invertase/react-native-firebase/compare/v14.5.1...v14.6.0) (2022-03-23)
|
|
596
|
-
|
|
597
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
598
|
-
|
|
599
|
-
## [14.5.1](https://github.com/invertase/react-native-firebase/compare/v14.5.0...v14.5.1) (2022-03-05)
|
|
600
|
-
|
|
601
|
-
### Bug Fixes
|
|
602
|
-
|
|
603
|
-
- **analytics, ios:** handle RNFirebaseAnalyticsWithoutAdIdSupport == false Podfile case correctly ([#6078](https://github.com/invertase/react-native-firebase/issues/6078)) ([ca82e54](https://github.com/invertase/react-native-firebase/commit/ca82e544255f122478c1de5945138a60118e90d0))
|
|
604
|
-
|
|
605
|
-
# [14.5.0](https://github.com/invertase/react-native-firebase/compare/v14.4.0...v14.5.0) (2022-02-15)
|
|
606
|
-
|
|
607
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
608
|
-
|
|
609
|
-
# [14.4.0](https://github.com/invertase/react-native-firebase/compare/v14.3.3...v14.4.0) (2022-02-13)
|
|
610
|
-
|
|
611
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
612
|
-
|
|
613
|
-
## [14.3.3](https://github.com/invertase/react-native-firebase/compare/v14.3.2...v14.3.3) (2022-02-12)
|
|
614
|
-
|
|
615
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
616
|
-
|
|
617
|
-
## [14.3.2](https://github.com/invertase/react-native-firebase/compare/v14.3.1...v14.3.2) (2022-02-10)
|
|
618
|
-
|
|
619
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
620
|
-
|
|
621
|
-
## [14.3.1](https://github.com/invertase/react-native-firebase/compare/v14.3.0...v14.3.1) (2022-02-07)
|
|
622
|
-
|
|
623
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
624
|
-
|
|
625
|
-
# [14.3.0](https://github.com/invertase/react-native-firebase/compare/v14.2.4...v14.3.0) (2022-01-26)
|
|
626
|
-
|
|
627
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
628
|
-
|
|
629
|
-
## [14.2.4](https://github.com/invertase/react-native-firebase/compare/v14.2.3...v14.2.4) (2022-01-24)
|
|
630
|
-
|
|
631
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
632
|
-
|
|
633
|
-
## [14.2.3](https://github.com/invertase/react-native-firebase/compare/v14.2.2...v14.2.3) (2022-01-20)
|
|
634
|
-
|
|
635
|
-
### Bug Fixes
|
|
636
|
-
|
|
637
|
-
- **analytics, ios:** Convert NSNull values to nil in order to correctly remove user properties ([dbc79c3](https://github.com/invertase/react-native-firebase/commit/dbc79c31810bf9bea4c3a782432c9b5625ad3d5f)), closes [#4931](https://github.com/invertase/react-native-firebase/issues/4931)
|
|
638
|
-
|
|
639
|
-
## [14.2.2](https://github.com/invertase/react-native-firebase/compare/v14.2.1...v14.2.2) (2022-01-06)
|
|
640
|
-
|
|
641
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
642
|
-
|
|
643
|
-
## [14.2.1](https://github.com/invertase/react-native-firebase/compare/v14.2.0...v14.2.1) (2021-12-31)
|
|
644
|
-
|
|
645
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
646
|
-
|
|
647
|
-
# [14.2.0](https://github.com/invertase/react-native-firebase/compare/v14.1.0...v14.2.0) (2021-12-31)
|
|
648
|
-
|
|
649
|
-
### Bug Fixes
|
|
650
|
-
|
|
651
|
-
- **analytics:** correct native types for extend_session parameter ([#5973](https://github.com/invertase/react-native-firebase/issues/5973)) ([23fdf61](https://github.com/invertase/react-native-firebase/commit/23fdf61a613c6cde6d5f3c807a7b13274fa3ab5a))
|
|
652
|
-
|
|
653
|
-
# [14.1.0](https://github.com/invertase/react-native-firebase/compare/v14.0.1...v14.1.0) (2021-12-18)
|
|
654
|
-
|
|
655
|
-
### Features
|
|
656
|
-
|
|
657
|
-
- **analytics, config:** expose automatic screenview reporting toggle ([#5948](https://github.com/invertase/react-native-firebase/issues/5948)) ([8836c01](https://github.com/invertase/react-native-firebase/commit/8836c01dcfa2f478f973a1a54253509c3368d963))
|
|
658
|
-
|
|
659
|
-
## [14.0.1](https://github.com/invertase/react-native-firebase/compare/v14.0.0...v14.0.1) (2021-12-15)
|
|
660
|
-
|
|
661
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
662
|
-
|
|
663
|
-
# [14.0.0](https://github.com/invertase/react-native-firebase/compare/v13.1.1...v14.0.0) (2021-12-14)
|
|
664
|
-
|
|
665
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
666
|
-
|
|
667
|
-
## [13.1.1](https://github.com/invertase/react-native-firebase/compare/v13.1.0...v13.1.1) (2021-12-14)
|
|
668
|
-
|
|
669
|
-
### Bug Fixes
|
|
670
|
-
|
|
671
|
-
- **deps:** AGP7.0.4, firebase-android-sdk 29.0.2, javascript deps ([55d0a36](https://github.com/invertase/react-native-firebase/commit/55d0a36a0addc54e347f26bb8ee88bb38b0fa4a6))
|
|
672
|
-
|
|
673
|
-
# [13.1.0](https://github.com/invertase/react-native-firebase/compare/v13.0.1...v13.1.0) (2021-12-02)
|
|
674
|
-
|
|
675
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
676
|
-
|
|
677
|
-
## [13.0.1](https://github.com/invertase/react-native-firebase/compare/v13.0.0...v13.0.1) (2021-11-05)
|
|
678
|
-
|
|
679
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
680
|
-
|
|
681
|
-
# [13.0.0](https://github.com/invertase/react-native-firebase/compare/v12.9.3...v13.0.0) (2021-10-31)
|
|
682
|
-
|
|
683
|
-
### Bug Fixes
|
|
684
|
-
|
|
685
|
-
- **analytics:** allow custom event parameters for screen_view events ([#5811](https://github.com/invertase/react-native-firebase/issues/5811)) ([02e888e](https://github.com/invertase/react-native-firebase/commit/02e888e782f2b0243f0324f63018ea8b27a68abc)), closes [#4594](https://github.com/invertase/react-native-firebase/issues/4594)
|
|
686
|
-
- rename default branch to main ([25e1d3d](https://github.com/invertase/react-native-firebase/commit/25e1d3d5a1a8311588938dc9d8fdf71d11cd9963))
|
|
687
|
-
|
|
688
|
-
- fix(analytics)!: add missing reserved event names (#5630) ([2c1958e](https://github.com/invertase/react-native-firebase/commit/2c1958e7eec13afe47d7d46a4bf003258e4c0c26)), closes [#5630](https://github.com/invertase/react-native-firebase/issues/5630)
|
|
689
|
-
|
|
690
|
-
### BREAKING CHANGES
|
|
691
|
-
|
|
692
|
-
- some reserved words that were accepted before will throw exceptions now that the list is complete - do not use reserved words for analytics events
|
|
693
|
-
|
|
694
|
-
## [12.9.3](https://github.com/invertase/react-native-firebase/compare/v12.9.2...v12.9.3) (2021-10-22)
|
|
695
|
-
|
|
696
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
697
|
-
|
|
698
|
-
## [12.9.2](https://github.com/invertase/react-native-firebase/compare/v12.9.1...v12.9.2) (2021-10-17)
|
|
699
|
-
|
|
700
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
701
|
-
|
|
702
|
-
## [12.9.1](https://github.com/invertase/react-native-firebase/compare/v12.9.0...v12.9.1) (2021-10-10)
|
|
703
|
-
|
|
704
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
705
|
-
|
|
706
|
-
# [12.9.0](https://github.com/invertase/react-native-firebase/compare/v12.8.0...v12.9.0) (2021-10-03)
|
|
707
|
-
|
|
708
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
709
|
-
|
|
710
|
-
# [12.8.0](https://github.com/invertase/react-native-firebase/compare/v12.7.5...v12.8.0) (2021-09-14)
|
|
711
|
-
|
|
712
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
713
|
-
|
|
714
|
-
## [12.7.5](https://github.com/invertase/react-native-firebase/compare/v12.7.4...v12.7.5) (2021-09-04)
|
|
715
|
-
|
|
716
|
-
### Bug Fixes
|
|
717
|
-
|
|
718
|
-
- **analytics:** allow more than 25 event parameters ([5dde564](https://github.com/invertase/react-native-firebase/commit/5dde56414caf3b79a5b6c4b1c61485789d7b564b))
|
|
719
|
-
|
|
720
|
-
## [12.7.4](https://github.com/invertase/react-native-firebase/compare/v12.7.3...v12.7.4) (2021-08-31)
|
|
721
|
-
|
|
722
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
723
|
-
|
|
724
|
-
## [12.7.3](https://github.com/invertase/react-native-firebase/compare/v12.7.2...v12.7.3) (2021-08-24)
|
|
725
|
-
|
|
726
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
727
|
-
|
|
728
|
-
## [12.7.2](https://github.com/invertase/react-native-firebase/compare/v12.7.1...v12.7.2) (2021-08-21)
|
|
729
|
-
|
|
730
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
731
|
-
|
|
732
|
-
## [12.7.1](https://github.com/invertase/react-native-firebase/compare/v12.7.0...v12.7.1) (2021-08-20)
|
|
733
|
-
|
|
734
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
735
|
-
|
|
736
|
-
# [12.7.0](https://github.com/invertase/react-native-firebase/compare/v12.6.1...v12.7.0) (2021-08-19)
|
|
737
|
-
|
|
738
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
739
|
-
|
|
740
|
-
## [12.6.1](https://github.com/invertase/react-native-firebase/compare/v12.6.0...v12.6.1) (2021-08-17)
|
|
741
|
-
|
|
742
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
743
|
-
|
|
744
|
-
# [12.6.0](https://github.com/invertase/react-native-firebase/compare/v12.5.0...v12.6.0) (2021-08-16)
|
|
745
|
-
|
|
746
|
-
### Features
|
|
747
|
-
|
|
748
|
-
- **analytics, config:** expose all the native data collection toggles ([f5eaffb](https://github.com/invertase/react-native-firebase/commit/f5eaffbfaf7e165b205692dd5b1b16e87b09d5a2))
|
|
749
|
-
- **app, config:** implement app_data_collection_default_enabled firebase.json key ([1e47d45](https://github.com/invertase/react-native-firebase/commit/1e47d455aa3a99b4ad6e08caf491be3df63a7f55))
|
|
750
|
-
|
|
751
|
-
# [12.5.0](https://github.com/invertase/react-native-firebase/compare/v12.4.0...v12.5.0) (2021-08-12)
|
|
752
|
-
|
|
753
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
754
|
-
|
|
755
|
-
# [12.4.0](https://github.com/invertase/react-native-firebase/compare/v12.3.0...v12.4.0) (2021-07-29)
|
|
756
|
-
|
|
757
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
758
|
-
|
|
759
|
-
# [12.3.0](https://github.com/invertase/react-native-firebase/compare/v12.2.0...v12.3.0) (2021-07-21)
|
|
760
|
-
|
|
761
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
762
|
-
|
|
763
|
-
# [12.2.0](https://github.com/invertase/react-native-firebase/compare/v12.1.0...v12.2.0) (2021-07-16)
|
|
764
|
-
|
|
765
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
766
|
-
|
|
767
|
-
# [12.1.0](https://github.com/invertase/react-native-firebase/compare/v12.0.0...v12.1.0) (2021-06-11)
|
|
768
|
-
|
|
769
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
770
|
-
|
|
771
|
-
# [12.0.0](https://github.com/invertase/react-native-firebase/compare/v11.5.0...v12.0.0) (2021-05-19)
|
|
772
|
-
|
|
773
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
774
|
-
|
|
775
|
-
# [11.5.0](https://github.com/invertase/react-native-firebase/compare/v11.4.1...v11.5.0) (2021-05-12)
|
|
776
|
-
|
|
777
|
-
### Features
|
|
778
|
-
|
|
779
|
-
- **analytics:** Adding default event parameters ([#5246](https://github.com/invertase/react-native-firebase/issues/5246)) ([684bb50](https://github.com/invertase/react-native-firebase/commit/684bb50368cb797ae9fda8fb56df2e2376d59c30))
|
|
780
|
-
|
|
781
|
-
## [11.4.1](https://github.com/invertase/react-native-firebase/compare/v11.4.0...v11.4.1) (2021-04-29)
|
|
782
|
-
|
|
783
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
784
|
-
|
|
785
|
-
# [11.4.0](https://github.com/invertase/react-native-firebase/compare/v11.3.3...v11.4.0) (2021-04-29)
|
|
786
|
-
|
|
787
|
-
### Bug Fixes
|
|
788
|
-
|
|
789
|
-
- **analytics:** added missing price parameter to the Item structure ([#5232](https://github.com/invertase/react-native-firebase/issues/5232)) ([b972cb6](https://github.com/invertase/react-native-firebase/commit/b972cb6c835288b8bd882f84222f1c3accf1afdc))
|
|
790
|
-
- **analytics:** import using package name not relative path ([#5229](https://github.com/invertase/react-native-firebase/issues/5229)) ([99f8d2c](https://github.com/invertase/react-native-firebase/commit/99f8d2c912d9fe63fc6243bc0b5d43b6813a2fe5))
|
|
791
|
-
|
|
792
|
-
### Features
|
|
793
|
-
|
|
794
|
-
- **analytics, appInstanceId:** implement getAppIntanceId() method for GA4 use ([#5210](https://github.com/invertase/react-native-firebase/issues/5210)) ([a51e97b](https://github.com/invertase/react-native-firebase/commit/a51e97b208e32cca00f36d14187ac6ba5378e3cd))
|
|
795
|
-
- **analytics, ATT:** allow use of AnalyticsWithoutAdIdSupport pod ([da6b811](https://github.com/invertase/react-native-firebase/commit/da6b811e15b480ad55c1e804da40387ecfdef3ee))
|
|
796
|
-
|
|
797
|
-
## [11.3.3](https://github.com/invertase/react-native-firebase/compare/v11.3.2...v11.3.3) (2021-04-24)
|
|
798
|
-
|
|
799
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
800
|
-
|
|
801
|
-
## [11.3.2](https://github.com/invertase/react-native-firebase/compare/v11.3.1...v11.3.2) (2021-04-19)
|
|
802
|
-
|
|
803
|
-
### Bug Fixes
|
|
804
|
-
|
|
805
|
-
- **all, android:** purge jcenter() from android build ([2c6a6a8](https://github.com/invertase/react-native-firebase/commit/2c6a6a82ec363fd948ea880fd397acb886c97453))
|
|
806
|
-
|
|
807
|
-
## [11.3.1](https://github.com/invertase/react-native-firebase/compare/v11.3.0...v11.3.1) (2021-04-18)
|
|
808
|
-
|
|
809
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
810
|
-
|
|
811
|
-
# [11.3.0](https://github.com/invertase/react-native-firebase/compare/v11.2.0...v11.3.0) (2021-04-16)
|
|
812
|
-
|
|
813
|
-
### Features
|
|
814
|
-
|
|
815
|
-
- **crashlytics:** flag fatal errors for crashlytics and analytics ([c94546d](https://github.com/invertase/react-native-firebase/commit/c94546d8127606dca5bfd09ef92ec32eec333f19))
|
|
816
|
-
|
|
817
|
-
# [11.2.0](https://github.com/invertase/react-native-firebase/compare/v11.1.2...v11.2.0) (2021-03-26)
|
|
818
|
-
|
|
819
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
820
|
-
|
|
821
|
-
## [11.1.2](https://github.com/invertase/react-native-firebase/compare/v11.1.1...v11.1.2) (2021-03-17)
|
|
822
|
-
|
|
823
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
824
|
-
|
|
825
|
-
## [11.1.1](https://github.com/invertase/react-native-firebase/compare/v11.1.0...v11.1.1) (2021-03-16)
|
|
826
|
-
|
|
827
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
828
|
-
|
|
829
|
-
# [11.1.0](https://github.com/invertase/react-native-firebase/compare/v11.0.0...v11.1.0) (2021-03-13)
|
|
830
|
-
|
|
831
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
832
|
-
|
|
833
|
-
# [11.0.0](https://github.com/invertase/react-native-firebase/compare/v10.8.1...v11.0.0) (2021-03-03)
|
|
834
|
-
|
|
835
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
836
|
-
|
|
837
|
-
## [10.8.1](https://github.com/invertase/react-native-firebase/compare/v10.8.0...v10.8.1) (2021-02-22)
|
|
838
|
-
|
|
839
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
840
|
-
|
|
841
|
-
# [10.8.0](https://github.com/invertase/react-native-firebase/compare/v10.7.0...v10.8.0) (2021-02-13)
|
|
842
|
-
|
|
843
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
844
|
-
|
|
845
|
-
# [10.7.0](https://github.com/invertase/react-native-firebase/compare/v10.6.4...v10.7.0) (2021-02-09)
|
|
846
|
-
|
|
847
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
848
|
-
|
|
849
|
-
## [10.6.4](https://github.com/invertase/react-native-firebase/compare/v10.6.3...v10.6.4) (2021-02-05)
|
|
850
|
-
|
|
851
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
852
|
-
|
|
853
|
-
## [10.6.3](https://github.com/invertase/react-native-firebase/compare/v10.6.2...v10.6.3) (2021-02-05)
|
|
854
|
-
|
|
855
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
856
|
-
|
|
857
|
-
## [10.6.1](https://github.com/invertase/react-native-firebase/compare/v10.6.0...v10.6.1) (2021-02-04)
|
|
858
|
-
|
|
859
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
860
|
-
|
|
861
|
-
# [10.6.0](https://github.com/invertase/react-native-firebase/compare/v10.5.1...v10.6.0) (2021-02-04)
|
|
862
|
-
|
|
863
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
864
|
-
|
|
865
|
-
## [10.5.1](https://github.com/invertase/react-native-firebase/compare/v10.5.0...v10.5.1) (2021-01-19)
|
|
866
|
-
|
|
867
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
868
|
-
|
|
869
|
-
# [10.5.0](https://github.com/invertase/react-native-firebase/compare/v10.4.1...v10.5.0) (2021-01-18)
|
|
870
|
-
|
|
871
|
-
### Bug Fixes
|
|
872
|
-
|
|
873
|
-
- **app, android:** require default firebase.json boolean key ([#4791](https://github.com/invertase/react-native-firebase/issues/4791)) ([483d9d3](https://github.com/invertase/react-native-firebase/commit/483d9d3655844e4c40cb42f3b0da865ada971515))
|
|
874
|
-
|
|
875
|
-
## [10.4.1](https://github.com/invertase/react-native-firebase/compare/v10.4.0...v10.4.1) (2021-01-08)
|
|
876
|
-
|
|
877
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
878
|
-
|
|
879
|
-
# [10.4.0](https://github.com/invertase/react-native-firebase/compare/v10.3.1...v10.4.0) (2020-12-30)
|
|
880
|
-
|
|
881
|
-
### Bug Fixes
|
|
882
|
-
|
|
883
|
-
- **ios:** bump ios min deployment to ios10 - remnant from [#4471](https://github.com/invertase/react-native-firebase/issues/4471) ([4a57578](https://github.com/invertase/react-native-firebase/commit/4a5757827789141600625eebe5e13c976ddb7402))
|
|
884
|
-
|
|
885
|
-
### Features
|
|
886
|
-
|
|
887
|
-
- **analytics:** add support for analytics_auto_collection_enabled in firebase.json ([#4730](https://github.com/invertase/react-native-firebase/issues/4730)) ([9a24ecd](https://github.com/invertase/react-native-firebase/commit/9a24ecd2826bfa8ab30657287432ccaeff8b7c7c))
|
|
888
|
-
|
|
889
|
-
## [10.3.1](https://github.com/invertase/react-native-firebase/compare/v10.3.0...v10.3.1) (2020-12-18)
|
|
890
|
-
|
|
891
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
892
|
-
|
|
893
|
-
# [10.3.0](https://github.com/invertase/react-native-firebase/compare/v10.2.0...v10.3.0) (2020-12-18)
|
|
894
|
-
|
|
895
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
896
|
-
|
|
897
|
-
# [10.2.0](https://github.com/invertase/react-native-firebase/compare/v10.1.1...v10.2.0) (2020-12-11)
|
|
898
|
-
|
|
899
|
-
### Features
|
|
900
|
-
|
|
901
|
-
- firebase-ios-sdk 7.2.0 / firebase-android-sdk 26.1.1 ([#4648](https://github.com/invertase/react-native-firebase/issues/4648)) ([a158a74](https://github.com/invertase/react-native-firebase/commit/a158a74dee0dd6774c725ff1213453f8dfdcb8f5))
|
|
902
|
-
|
|
903
|
-
## [10.1.1](https://github.com/invertase/react-native-firebase/compare/v10.1.0...v10.1.1) (2020-12-02)
|
|
904
|
-
|
|
905
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
906
|
-
|
|
907
|
-
# [10.1.0](https://github.com/invertase/react-native-firebase/compare/v10.0.0...v10.1.0) (2020-11-26)
|
|
908
|
-
|
|
909
|
-
### Bug Fixes
|
|
910
|
-
|
|
911
|
-
- **analytics:** add missing quantity parameter to the Item structure ([#4536](https://github.com/invertase/react-native-firebase/issues/4536)) ([f9935e7](https://github.com/invertase/react-native-firebase/commit/f9935e78f181a5bfb718094487a5368472232b2d))
|
|
912
|
-
|
|
913
|
-
# [10.0.0](https://github.com/invertase/react-native-firebase/compare/fc8c4c0622f8e6814879d0306f66012df5b83cd8...v10.0.0) (2020-11-17)
|
|
914
|
-
|
|
915
|
-
### BREAKING
|
|
916
|
-
|
|
917
|
-
- remove deprecated analytics methods ([18f5b0f](https://github.com/invertase/react-native-firebase/commit/18f5b0f7e65a3bddc92d3d23e31efb42a518ec12))
|
|
918
|
-
|
|
919
|
-
## [8.0.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@8.0.0...@react-native-firebase/analytics@8.0.1) (2020-11-10)
|
|
920
|
-
|
|
921
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
922
|
-
|
|
923
|
-
# [8.0.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.6.10...@react-native-firebase/analytics@8.0.0) (2020-11-10)
|
|
924
|
-
|
|
925
|
-
### Bug Fixes
|
|
926
|
-
|
|
927
|
-
- **analytics:** BREAKING drop deprecated setMinimumSessionDuration API ([a675cd7](https://github.com/invertase/react-native-firebase/commit/a675cd7f7cf808e6a6d10cc174eeff3007ceac58))
|
|
928
|
-
|
|
929
|
-
### BREAKING CHANGES
|
|
930
|
-
|
|
931
|
-
- **analytics:** there is no replacement for the setMinimumSessionDuration API
|
|
932
|
-
|
|
933
|
-
## [7.6.10](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.6.9...@react-native-firebase/analytics@7.6.10) (2020-11-10)
|
|
934
|
-
|
|
935
|
-
### Bug Fixes
|
|
936
|
-
|
|
937
|
-
- **analytics:** added a validation for length in analytics().logEvent(name, params) ([#4522](https://github.com/invertase/react-native-firebase/issues/4522)) ([107b07d](https://github.com/invertase/react-native-firebase/commit/107b07dc15f1199e08384f0ad5bbbff44f738056))
|
|
938
|
-
|
|
939
|
-
## [7.6.9](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.6.8...@react-native-firebase/analytics@7.6.9) (2020-10-30)
|
|
940
|
-
|
|
941
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
942
|
-
|
|
943
|
-
## [7.6.8](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.6.7...@react-native-firebase/analytics@7.6.8) (2020-10-16)
|
|
944
|
-
|
|
945
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
946
|
-
|
|
947
|
-
## [7.6.7](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.6.6...@react-native-firebase/analytics@7.6.7) (2020-09-30)
|
|
948
|
-
|
|
949
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
950
|
-
|
|
951
|
-
## [7.6.6](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.6.5...@react-native-firebase/analytics@7.6.6) (2020-09-30)
|
|
952
|
-
|
|
953
|
-
### Bug Fixes
|
|
954
|
-
|
|
955
|
-
- **types:** enable TypeScript libCheck & resolve type conflicts ([#4306](https://github.com/invertase/react-native-firebase/issues/4306)) ([aa8ee8b](https://github.com/invertase/react-native-firebase/commit/aa8ee8b7e83443d2c1664993800e15faf4b59b0e))
|
|
956
|
-
|
|
957
|
-
## [7.6.5](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.6.4...@react-native-firebase/analytics@7.6.5) (2020-09-30)
|
|
958
|
-
|
|
959
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
960
|
-
|
|
961
|
-
## [7.6.4](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.6.3...@react-native-firebase/analytics@7.6.4) (2020-09-17)
|
|
962
|
-
|
|
963
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
964
|
-
|
|
965
|
-
## [7.6.3](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.6.2...@react-native-firebase/analytics@7.6.3) (2020-09-17)
|
|
966
|
-
|
|
967
|
-
### Bug Fixes
|
|
968
|
-
|
|
969
|
-
- **ios, podspec:** depend on React-Core instead of React ([#4275](https://github.com/invertase/react-native-firebase/issues/4275)) ([fd1a2be](https://github.com/invertase/react-native-firebase/commit/fd1a2be6b6ab1dec89e5dce1fc237435c3e1d510))
|
|
970
|
-
|
|
971
|
-
## [7.6.2](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.6.1...@react-native-firebase/analytics@7.6.2) (2020-09-11)
|
|
972
|
-
|
|
973
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
974
|
-
|
|
975
|
-
## [7.6.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.6.0...@react-native-firebase/analytics@7.6.1) (2020-08-28)
|
|
976
|
-
|
|
977
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
978
|
-
|
|
979
|
-
# [7.6.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.5.1...@react-native-firebase/analytics@7.6.0) (2020-08-28)
|
|
980
|
-
|
|
981
|
-
### Features
|
|
982
|
-
|
|
983
|
-
- **analytics:** add 'logScreenView' API and deprecate `setCurrentScreen` API. ([#4145](https://github.com/invertase/react-native-firebase/issues/4145)) ([81c4e3b](https://github.com/invertase/react-native-firebase/commit/81c4e3b7d2ce956ed6a2cc2f40a323ec5379d6a1))
|
|
984
|
-
|
|
985
|
-
## [7.5.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.5.0...@react-native-firebase/analytics@7.5.1) (2020-08-26)
|
|
986
|
-
|
|
987
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
988
|
-
|
|
989
|
-
# [7.5.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.4.2...@react-native-firebase/analytics@7.5.0) (2020-08-26)
|
|
990
|
-
|
|
991
|
-
### Features
|
|
992
|
-
|
|
993
|
-
- bump firebase sdk versions, add GoogleApi dep, use Android API29 ([#4122](https://github.com/invertase/react-native-firebase/issues/4122)) ([728f418](https://github.com/invertase/react-native-firebase/commit/728f41863832d21230c6eb1f55385284fef03c09))
|
|
994
|
-
|
|
995
|
-
## [7.4.2](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.4.1...@react-native-firebase/analytics@7.4.2) (2020-08-15)
|
|
996
|
-
|
|
997
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
998
|
-
|
|
999
|
-
## [7.4.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.4.0...@react-native-firebase/analytics@7.4.1) (2020-08-03)
|
|
1000
|
-
|
|
1001
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
1002
|
-
|
|
1003
|
-
# [7.4.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.3.1...@react-native-firebase/analytics@7.4.0) (2020-08-03)
|
|
1004
|
-
|
|
1005
|
-
### Features
|
|
1006
|
-
|
|
1007
|
-
- use latest android & ios Firebase SDKs version ([#3956](https://github.com/invertase/react-native-firebase/issues/3956)) ([e7b4bb3](https://github.com/invertase/react-native-firebase/commit/e7b4bb31b05985c044b1f01625a43e364bb653ef))
|
|
1008
|
-
|
|
1009
|
-
## [7.3.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.3.0...@react-native-firebase/analytics@7.3.1) (2020-07-09)
|
|
1010
|
-
|
|
1011
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
1012
|
-
|
|
1013
|
-
# [7.3.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.2.1...@react-native-firebase/analytics@7.3.0) (2020-07-09)
|
|
1014
|
-
|
|
1015
|
-
### Features
|
|
1016
|
-
|
|
1017
|
-
- **analytics:** add & deprecate pre-defined analytics events ([#3385](https://github.com/invertase/react-native-firebase/issues/3385)) ([6c53f47](https://github.com/invertase/react-native-firebase/commit/6c53f479d9d86f686d52f258ed51b5dc6a8ef25a))
|
|
1018
|
-
|
|
1019
|
-
## [7.2.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.2.0...@react-native-firebase/analytics@7.2.1) (2020-07-07)
|
|
1020
|
-
|
|
1021
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
1022
|
-
|
|
1023
|
-
# [7.2.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.1.8...@react-native-firebase/analytics@7.2.0) (2020-07-07)
|
|
1024
|
-
|
|
1025
|
-
### Features
|
|
1026
|
-
|
|
1027
|
-
- **android,ios:** upgrade native SDK versions ([#3881](https://github.com/invertase/react-native-firebase/issues/3881)) ([6cb68a8](https://github.com/invertase/react-native-firebase/commit/6cb68a8ea808392fac3a28bdb1a76049c7b52e86))
|
|
1028
|
-
|
|
1029
|
-
## [7.1.8](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.1.7...@react-native-firebase/analytics@7.1.8) (2020-07-05)
|
|
1030
|
-
|
|
1031
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
1032
|
-
|
|
1033
|
-
## [7.1.7](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.1.6...@react-native-firebase/analytics@7.1.7) (2020-06-30)
|
|
1034
|
-
|
|
1035
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
1036
|
-
|
|
1037
|
-
## [7.1.6](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.1.5...@react-native-firebase/analytics@7.1.6) (2020-06-26)
|
|
1038
|
-
|
|
1039
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
1040
|
-
|
|
1041
|
-
## [7.1.5](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.1.4...@react-native-firebase/analytics@7.1.5) (2020-06-22)
|
|
1042
|
-
|
|
1043
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
1044
|
-
|
|
1045
|
-
## [7.1.4](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.1.3...@react-native-firebase/analytics@7.1.4) (2020-06-10)
|
|
1046
|
-
|
|
1047
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
1048
|
-
|
|
1049
|
-
## [7.1.3](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.1.2...@react-native-firebase/analytics@7.1.3) (2020-06-03)
|
|
1050
|
-
|
|
1051
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
1052
|
-
|
|
1053
|
-
## [7.1.2](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.1.1...@react-native-firebase/analytics@7.1.2) (2020-05-29)
|
|
1054
|
-
|
|
1055
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
1056
|
-
|
|
1057
|
-
## [7.1.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.1.0...@react-native-firebase/analytics@7.1.1) (2020-05-29)
|
|
1058
|
-
|
|
1059
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
1060
|
-
|
|
1061
|
-
# [7.1.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.0.1...@react-native-firebase/analytics@7.1.0) (2020-05-22)
|
|
1062
|
-
|
|
1063
|
-
### Features
|
|
1064
|
-
|
|
1065
|
-
- update native Firebase SDK versions ([#3663](https://github.com/invertase/react-native-firebase/issues/3663)) ([4db9dbc](https://github.com/invertase/react-native-firebase/commit/4db9dbc3ec20bf96de0efad15000f00b41e4a799))
|
|
1066
|
-
|
|
1067
|
-
## [7.0.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.0.0...@react-native-firebase/analytics@7.0.1) (2020-05-13)
|
|
1068
|
-
|
|
1069
|
-
**Note:** Version bump only for package @react-native-firebase/analytics
|
|
1070
|
-
|
|
1071
|
-
## [7.0.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/analytics@7.0.0...@react-native-firebase/analytics@7.0.0) (2020-05-13)
|
|
1072
|
-
|
|
1073
|
-
- feat!: all packages should depend on core (#3613) ([252a423](https://github.com/invertase/react-native-firebase/commit/252a4239e98a0f2a55c4afcd2d82e4d5f97e65e9)), closes [#3613](https://github.com/invertase/react-native-firebase/issues/3613)
|
|
1074
|
-
|
|
1075
|
-
### Features
|
|
1076
|
-
|
|
1077
|
-
- **ios:** podspecs now utilize CoreOnly instead of Core ([#3575](https://github.com/invertase/react-native-firebase/issues/3575)) ([35285f1](https://github.com/invertase/react-native-firebase/commit/35285f1655b16d05e6630fc556f95cccfb707ee4))
|
|
1078
|
-
|
|
1079
|
-
### BREAKING CHANGES
|
|
1080
|
-
|
|
1081
|
-
- breaking change to mark new internal versioning requirements.
|