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