@react-native-firebase/crashlytics 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.
Files changed (96) hide show
  1. package/dist/commonjs/handlers.js +175 -0
  2. package/dist/commonjs/handlers.js.map +1 -0
  3. package/dist/commonjs/index.js +38 -0
  4. package/dist/commonjs/index.js.map +1 -0
  5. package/dist/commonjs/modular.js +256 -0
  6. package/dist/commonjs/modular.js.map +1 -0
  7. package/dist/commonjs/namespaced.js +138 -0
  8. package/dist/commonjs/namespaced.js.map +1 -0
  9. package/dist/commonjs/package.json +1 -0
  10. package/dist/commonjs/types/crashlytics.js +47 -0
  11. package/dist/commonjs/types/crashlytics.js.map +1 -0
  12. package/dist/commonjs/version.js +9 -0
  13. package/dist/commonjs/version.js.map +1 -0
  14. package/{lib → dist/module}/handlers.js +39 -36
  15. package/dist/module/handlers.js.map +1 -0
  16. package/{ios/RNFBCrashlytics/RNFBCrashlyticsModule.h → dist/module/index.js} +10 -6
  17. package/dist/module/index.js.map +1 -0
  18. package/{lib/modular/index.js → dist/module/modular.js} +37 -43
  19. package/dist/module/modular.js.map +1 -0
  20. package/dist/module/namespaced.js +135 -0
  21. package/dist/module/namespaced.js.map +1 -0
  22. package/dist/module/package.json +1 -0
  23. package/dist/module/types/crashlytics.js +43 -0
  24. package/dist/module/types/crashlytics.js.map +1 -0
  25. package/dist/module/version.js +5 -0
  26. package/dist/module/version.js.map +1 -0
  27. package/dist/typescript/commonjs/lib/handlers.d.ts +28 -0
  28. package/dist/typescript/commonjs/lib/handlers.d.ts.map +1 -0
  29. package/dist/typescript/commonjs/lib/index.d.ts +5 -0
  30. package/dist/typescript/commonjs/lib/index.d.ts.map +1 -0
  31. package/{lib/modular/index.d.ts → dist/typescript/commonjs/lib/modular.d.ts} +37 -40
  32. package/dist/typescript/commonjs/lib/modular.d.ts.map +1 -0
  33. package/dist/typescript/commonjs/lib/namespaced.d.ts +12 -0
  34. package/dist/typescript/commonjs/lib/namespaced.d.ts.map +1 -0
  35. package/dist/typescript/commonjs/lib/types/crashlytics.d.ts +117 -0
  36. package/dist/typescript/commonjs/lib/types/crashlytics.d.ts.map +1 -0
  37. package/dist/typescript/commonjs/lib/version.d.ts +2 -0
  38. package/dist/typescript/commonjs/lib/version.d.ts.map +1 -0
  39. package/dist/typescript/commonjs/package.json +1 -0
  40. package/dist/typescript/module/lib/handlers.d.ts +28 -0
  41. package/dist/typescript/module/lib/handlers.d.ts.map +1 -0
  42. package/dist/typescript/module/lib/index.d.ts +5 -0
  43. package/dist/typescript/module/lib/index.d.ts.map +1 -0
  44. package/dist/typescript/module/lib/modular.d.ts +193 -0
  45. package/dist/typescript/module/lib/modular.d.ts.map +1 -0
  46. package/dist/typescript/module/lib/namespaced.d.ts +12 -0
  47. package/dist/typescript/module/lib/namespaced.d.ts.map +1 -0
  48. package/dist/typescript/module/lib/types/crashlytics.d.ts +117 -0
  49. package/dist/typescript/module/lib/types/crashlytics.d.ts.map +1 -0
  50. package/dist/typescript/module/lib/version.d.ts +2 -0
  51. package/dist/typescript/module/lib/version.d.ts.map +1 -0
  52. package/dist/typescript/module/package.json +1 -0
  53. package/lib/handlers.ts +196 -0
  54. package/{ios/RNFBCrashlytics/RNFBCrashlyticsNativeHelper.h → lib/index.ts} +8 -11
  55. package/lib/modular.ts +249 -0
  56. package/lib/{index.js → namespaced.ts} +51 -22
  57. package/lib/types/crashlytics.ts +159 -0
  58. package/lib/version.ts +2 -0
  59. package/package.json +60 -8
  60. package/tsconfig.json +21 -0
  61. package/CHANGELOG.md +0 -1132
  62. package/RNFBCrashlytics.podspec +0 -54
  63. package/android/.editorconfig +0 -10
  64. package/android/build.gradle +0 -102
  65. package/android/lint.xml +0 -5
  66. package/android/settings.gradle +0 -1
  67. package/android/src/main/AndroidManifest.xml +0 -15
  68. package/android/src/main/java/io/invertase/firebase/crashlytics/Constants.java +0 -29
  69. package/android/src/main/java/io/invertase/firebase/crashlytics/JavaScriptError.java +0 -28
  70. package/android/src/main/java/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsInitProvider.java +0 -130
  71. package/android/src/main/java/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsModule.java +0 -223
  72. package/android/src/main/java/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsNativeHelper.java +0 -18
  73. package/android/src/main/java/io/invertase/firebase/crashlytics/ReactNativeFirebaseCrashlyticsPackage.java +0 -41
  74. package/android/src/main/java/io/invertase/firebase/crashlytics/UnhandledPromiseRejection.java +0 -28
  75. package/app.plugin.js +0 -1
  76. package/ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.h +0 -33
  77. package/ios/RNFBCrashlytics/RNFBCrashlyticsInitProvider.m +0 -142
  78. package/ios/RNFBCrashlytics/RNFBCrashlyticsModule.m +0 -248
  79. package/ios/RNFBCrashlytics/RNFBCrashlyticsNativeHelper.m +0 -36
  80. package/ios/RNFBCrashlytics.xcodeproj/project.pbxproj +0 -359
  81. package/ios/RNFBCrashlytics.xcodeproj/xcshareddata/IDETemplateMacros.plist +0 -24
  82. package/ios_config.sh +0 -25
  83. package/lib/index.d.ts +0 -287
  84. package/lib/version.js +0 -2
  85. package/plugin/build/android/applyPlugin.d.ts +0 -6
  86. package/plugin/build/android/applyPlugin.js +0 -28
  87. package/plugin/build/android/buildscriptDependency.d.ts +0 -6
  88. package/plugin/build/android/buildscriptDependency.js +0 -29
  89. package/plugin/build/android/constants.d.ts +0 -3
  90. package/plugin/build/android/constants.js +0 -7
  91. package/plugin/build/android/index.d.ts +0 -3
  92. package/plugin/build/android/index.js +0 -7
  93. package/plugin/build/index.d.ts +0 -3
  94. package/plugin/build/index.js +0 -12
  95. package/plugin/tsconfig.tsbuildinfo +0 -1
  96. package/react-native.config.js +0 -35
package/CHANGELOG.md DELETED
@@ -1,1132 +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
- **Note:** Version bump only for package @react-native-firebase/crashlytics
9
-
10
- ## [23.5.0](https://github.com/invertase/react-native-firebase/compare/v23.4.1...v23.5.0) (2025-10-30)
11
-
12
- **Note:** Version bump only for package @react-native-firebase/crashlytics
13
-
14
- ## [23.4.1](https://github.com/invertase/react-native-firebase/compare/v23.4.0...v23.4.1) (2025-10-14)
15
-
16
- **Note:** Version bump only for package @react-native-firebase/crashlytics
17
-
18
- ## [23.4.0](https://github.com/invertase/react-native-firebase/compare/v23.3.1...v23.4.0) (2025-09-24)
19
-
20
- **Note:** Version bump only for package @react-native-firebase/crashlytics
21
-
22
- ## [23.3.1](https://github.com/invertase/react-native-firebase/compare/v23.3.0...v23.3.1) (2025-09-08)
23
-
24
- **Note:** Version bump only for package @react-native-firebase/crashlytics
25
-
26
- ## [23.3.0](https://github.com/invertase/react-native-firebase/compare/v23.2.2...v23.3.0) (2025-09-04)
27
-
28
- **Note:** Version bump only for package @react-native-firebase/crashlytics
29
-
30
- ## [23.2.2](https://github.com/invertase/react-native-firebase/compare/v23.2.1...v23.2.2) (2025-09-03)
31
-
32
- **Note:** Version bump only for package @react-native-firebase/crashlytics
33
-
34
- ## [23.2.1](https://github.com/invertase/react-native-firebase/compare/v23.2.0...v23.2.1) (2025-09-01)
35
-
36
- **Note:** Version bump only for package @react-native-firebase/crashlytics
37
-
38
- ## [23.2.0](https://github.com/invertase/react-native-firebase/compare/v23.1.2...v23.2.0) (2025-08-29)
39
-
40
- **Note:** Version bump only for package @react-native-firebase/crashlytics
41
-
42
- ## [23.1.2](https://github.com/invertase/react-native-firebase/compare/v23.1.1...v23.1.2) (2025-08-25)
43
-
44
- **Note:** Version bump only for package @react-native-firebase/crashlytics
45
-
46
- ## [23.1.1](https://github.com/invertase/react-native-firebase/compare/v23.1.0...v23.1.1) (2025-08-22)
47
-
48
- **Note:** Version bump only for package @react-native-firebase/crashlytics
49
-
50
- ## [23.1.0](https://github.com/invertase/react-native-firebase/compare/v23.0.1...v23.1.0) (2025-08-19)
51
-
52
- **Note:** Version bump only for package @react-native-firebase/crashlytics
53
-
54
- ## [23.0.1](https://github.com/invertase/react-native-firebase/compare/v23.0.0...v23.0.1) (2025-08-12)
55
-
56
- ### Bug Fixes
57
-
58
- - **app, android:** adopt firebase-android-sdk 34.1.0 ([b9af1d3](https://github.com/invertase/react-native-firebase/commit/b9af1d3d24a4fa77587eb1a9f7a5d784750a58bb))
59
-
60
- ## [23.0.0](https://github.com/invertase/react-native-firebase/compare/v22.4.0...v23.0.0) (2025-08-07)
61
-
62
- ### ⚠ BREAKING CHANGES
63
-
64
- - android minSdk now must be 23+ (was 21)
65
- - remove deprecated API from auth & crashlytics (#8636)
66
-
67
- ### Features
68
-
69
- - bump Firebase android SDK to `34.0.0` ([#8627](https://github.com/invertase/react-native-firebase/issues/8627)) ([e9ef5ec](https://github.com/invertase/react-native-firebase/commit/e9ef5ec9742f28ec1d621a401f82125acff0f1cf))
70
-
71
- ### Bug Fixes
72
-
73
- - remove deprecated API from auth & crashlytics ([#8636](https://github.com/invertase/react-native-firebase/issues/8636)) ([213b939](https://github.com/invertase/react-native-firebase/commit/213b939b552e0f84fbccb136a03f23e9b5c8ade8))
74
-
75
- ## [22.4.0](https://github.com/invertase/react-native-firebase/compare/v22.3.0...v22.4.0) (2025-07-10)
76
-
77
- **Note:** Version bump only for package @react-native-firebase/crashlytics
78
-
79
- ## [22.3.0](https://github.com/invertase/react-native-firebase/compare/v22.2.1...v22.3.0) (2025-07-08)
80
-
81
- ### Bug Fixes
82
-
83
- - **app, android:** adopt firebase-android-sdk 33.16.0 ([7221dc4](https://github.com/invertase/react-native-firebase/commit/7221dc4602963d50eddccfc315ffbf458d9e9b29))
84
-
85
- ## [22.2.1](https://github.com/invertase/react-native-firebase/compare/v22.2.0...v22.2.1) (2025-06-10)
86
-
87
- **Note:** Version bump only for package @react-native-firebase/crashlytics
88
-
89
- ## [22.2.0](https://github.com/invertase/react-native-firebase/compare/v22.1.0...v22.2.0) (2025-05-12)
90
-
91
- **Note:** Version bump only for package @react-native-firebase/crashlytics
92
-
93
- ## [22.1.0](https://github.com/invertase/react-native-firebase/compare/v22.0.0...v22.1.0) (2025-04-30)
94
-
95
- **Note:** Version bump only for package @react-native-firebase/crashlytics
96
-
97
- ## [22.0.0](https://github.com/invertase/react-native-firebase/compare/v21.14.0...v22.0.0) (2025-04-25)
98
-
99
- ### Bug Fixes
100
-
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/crashlytics
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/crashlytics
111
-
112
- ## [21.12.3](https://github.com/invertase/react-native-firebase/compare/v21.12.2...v21.12.3) (2025-03-26)
113
-
114
- ### Bug Fixes
115
-
116
- - **crashlytics): Revert "fix(crashlytics:** convert internal API usage to modular" ([4f7fb2e](https://github.com/invertase/react-native-firebase/commit/4f7fb2e383a803de6963dbd01cf2c623e431d1da))
117
- - **crashlytics:** disable deprecation warnings for analytics in crashlytics ([b600a20](https://github.com/invertase/react-native-firebase/commit/b600a2099c2076689510193b74ac29c057d27d2a))
118
-
119
- ## [21.12.2](https://github.com/invertase/react-native-firebase/compare/v21.12.1...v21.12.2) (2025-03-23)
120
-
121
- **Note:** Version bump only for package @react-native-firebase/crashlytics
122
-
123
- ## [21.12.1](https://github.com/invertase/react-native-firebase/compare/v21.12.0...v21.12.1) (2025-03-22)
124
-
125
- **Note:** Version bump only for package @react-native-firebase/crashlytics
126
-
127
- ## [21.12.0](https://github.com/invertase/react-native-firebase/compare/v21.11.0...v21.12.0) (2025-03-03)
128
-
129
- **Note:** Version bump only for package @react-native-firebase/crashlytics
130
-
131
- ## [21.11.0](https://github.com/invertase/react-native-firebase/compare/v21.10.1...v21.11.0) (2025-02-20)
132
-
133
- ### Bug Fixes
134
-
135
- - **crashlytics:** convert internal API usage to modular ([b462330](https://github.com/invertase/react-native-firebase/commit/b46233049396764b68c6108e5b886628613f2620))
136
-
137
- ## [21.10.1](https://github.com/invertase/react-native-firebase/compare/v21.10.0...v21.10.1) (2025-02-18)
138
-
139
- **Note:** Version bump only for package @react-native-firebase/crashlytics
140
-
141
- ## [21.10.0](https://github.com/invertase/react-native-firebase/compare/v21.9.0...v21.10.0) (2025-02-11)
142
-
143
- **Note:** Version bump only for package @react-native-firebase/crashlytics
144
-
145
- ## [21.9.0](https://github.com/invertase/react-native-firebase/compare/v21.8.0...v21.9.0) (2025-02-11)
146
-
147
- ### Bug Fixes
148
-
149
- - firebase-ios-sdk 11.8.0 / firebase-android-sdk 33.9.0 ([67aba08](https://github.com/invertase/react-native-firebase/commit/67aba08c00aa46b72fcb1353bd428fa552b6686a))
150
-
151
- ## [21.8.0](https://github.com/invertase/react-native-firebase/compare/v21.7.4...v21.8.0) (2025-02-10)
152
-
153
- ### Bug Fixes
154
-
155
- - **crashlytics:** internally use modular APIs during initialization ([140507f](https://github.com/invertase/react-native-firebase/commit/140507f4ddc09d004ba6f4f9c83ea1364c536c65))
156
- - do not ship unit tests in released packages ([e71dadf](https://github.com/invertase/react-native-firebase/commit/e71dadfc1c0cad2e89c94100913af31ddf7d9c91))
157
-
158
- ## [21.7.4](https://github.com/invertase/react-native-firebase/compare/v21.7.3...v21.7.4) (2025-02-08)
159
-
160
- ### Bug Fixes
161
-
162
- - the init calls for modular should use modular getApp() ([79da98b](https://github.com/invertase/react-native-firebase/commit/79da98bf4ecf7860db61b2813b87673f1cd0adfd))
163
-
164
- ## [21.7.3](https://github.com/invertase/react-native-firebase/compare/v21.7.2...v21.7.3) (2025-02-08)
165
-
166
- ### Bug Fixes
167
-
168
- - use same deprecation message everywhere, correct tests for new message ([684081b](https://github.com/invertase/react-native-firebase/commit/684081b7bdc17bc314fce827972dca5b1a58e01b))
169
-
170
- ## [21.7.2](https://github.com/invertase/react-native-firebase/compare/v21.7.1...v21.7.2) (2025-02-05)
171
-
172
- **Note:** Version bump only for package @react-native-firebase/crashlytics
173
-
174
- ## [21.7.1](https://github.com/invertase/react-native-firebase/compare/v21.7.0...v21.7.1) (2025-01-20)
175
-
176
- **Note:** Version bump only for package @react-native-firebase/crashlytics
177
-
178
- ## [21.7.0](https://github.com/invertase/react-native-firebase/compare/v21.6.2...v21.7.0) (2025-01-16)
179
-
180
- **Note:** Version bump only for package @react-native-firebase/crashlytics
181
-
182
- ## [21.6.2](https://github.com/invertase/react-native-firebase/compare/v21.6.1...v21.6.2) (2025-01-02)
183
-
184
- **Note:** Version bump only for package @react-native-firebase/crashlytics
185
-
186
- ## [21.6.1](https://github.com/invertase/react-native-firebase/compare/v21.6.0...v21.6.1) (2024-11-25)
187
-
188
- **Note:** Version bump only for package @react-native-firebase/crashlytics
189
-
190
- ## [21.6.0](https://github.com/invertase/react-native-firebase/compare/v21.5.0...v21.6.0) (2024-11-20)
191
-
192
- **Note:** Version bump only for package @react-native-firebase/crashlytics
193
-
194
- ## [21.5.0](https://github.com/invertase/react-native-firebase/compare/v21.4.1...v21.5.0) (2024-11-16)
195
-
196
- **Note:** Version bump only for package @react-native-firebase/crashlytics
197
-
198
- ## [21.4.1](https://github.com/invertase/react-native-firebase/compare/v21.4.0...v21.4.1) (2024-11-13)
199
-
200
- ### Reverts
201
-
202
- - Revert "fix(ios, sdk): constrain transitive dependencies more tightly" ([1ff247c](https://github.com/invertase/react-native-firebase/commit/1ff247cd73804efbd52eb9490f68087685de814c))
203
-
204
- ## [21.4.0](https://github.com/invertase/react-native-firebase/compare/v21.3.0...v21.4.0) (2024-11-07)
205
-
206
- ### Features
207
-
208
- - enable tvOS installation on all package with upstream support ([e8e5f7f](https://github.com/invertase/react-native-firebase/commit/e8e5f7f9aab9a58aabf9a7b0cd756584240dbc48))
209
-
210
- ## [21.3.0](https://github.com/invertase/react-native-firebase/compare/v21.2.0...v21.3.0) (2024-10-31)
211
-
212
- ### Features
213
-
214
- - **crashlytics, ios:** add native helper log / setCustomValue methods ([da1ac6b](https://github.com/invertase/react-native-firebase/commit/da1ac6b00d4209ca431259e192c91797d3c45cb9))
215
-
216
- ## [21.2.0](https://github.com/invertase/react-native-firebase/compare/v21.1.1...v21.2.0) (2024-10-22)
217
-
218
- **Note:** Version bump only for package @react-native-firebase/crashlytics
219
-
220
- ## [21.1.1](https://github.com/invertase/react-native-firebase/compare/v21.1.0...v21.1.1) (2024-10-22)
221
-
222
- ### Bug Fixes
223
-
224
- - **ios, sdk:** constrain transitive dependencies more tightly ([d03ab42](https://github.com/invertase/react-native-firebase/commit/d03ab42a163a17268bac344ccd135dc18849e1be))
225
-
226
- ## [21.1.0](https://github.com/invertase/react-native-firebase/compare/v21.0.0...v21.1.0) (2024-10-21)
227
-
228
- **Note:** Version bump only for package @react-native-firebase/crashlytics
229
-
230
- ## [21.0.0](https://github.com/invertase/react-native-firebase/compare/v20.5.0...v21.0.0) (2024-09-26)
231
-
232
- ### Bug Fixes
233
-
234
- - **crashlytics, ios:** dependencies init param removed upstream in v11+ ([73b596c](https://github.com/invertase/react-native-firebase/commit/73b596c062d67185868de697732378beab198397))
235
-
236
- ## [20.5.0](https://github.com/invertase/react-native-firebase/compare/v20.4.0...v20.5.0) (2024-09-11)
237
-
238
- **Note:** Version bump only for package @react-native-firebase/crashlytics
239
-
240
- ## [20.4.0](https://github.com/invertase/react-native-firebase/compare/v20.3.0...v20.4.0) (2024-08-13)
241
-
242
- **Note:** Version bump only for package @react-native-firebase/crashlytics
243
-
244
- ## [20.3.0](https://github.com/invertase/react-native-firebase/compare/v20.2.1...v20.3.0) (2024-07-19)
245
-
246
- **Note:** Version bump only for package @react-native-firebase/crashlytics
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/crashlytics
251
-
252
- ## [20.2.0](https://github.com/invertase/react-native-firebase/compare/v20.1.0...v20.2.0) (2024-07-15)
253
-
254
- ### Bug Fixes
255
-
256
- - **app, android:** adopt firebase-android-sdk 31.1.1 ([dba1beb](https://github.com/invertase/react-native-firebase/commit/dba1beba97d88d1110e0838b6287fd4907cfa8a7))
257
- - **crashlytics, ios:** init w/componentsToRegister vs configureWithApp ([ca07cad](https://github.com/invertase/react-native-firebase/commit/ca07cadd592487102b035a24b55f593f065ef4a5))
258
-
259
- ## [20.1.0](https://github.com/invertase/react-native-firebase/compare/v20.0.0...v20.1.0) (2024-06-04)
260
-
261
- **Note:** Version bump only for package @react-native-firebase/crashlytics
262
-
263
- ## [20.0.0](https://github.com/invertase/react-native-firebase/compare/v19.3.0...v20.0.0) (2024-05-20)
264
-
265
- ### ⚠ BREAKING CHANGES
266
-
267
- - **app, android:** - requires minSdk 21+ in general, 23+ for auth module
268
-
269
- * requires compileSdk 34+
270
- * app-distribution gradle plugin requires
271
- - gradle 7.3+
272
- - android gradle plugin 7+
273
- - google services plugin 4.3.2+
274
- * crashlytics plugin requires
275
- - gradle 8+
276
- - android gradle plugin 8.1+
277
- - google services plugin 4.4.1+
278
-
279
- ### Features
280
-
281
- - **app, android:** android-sdk 33.0.0 - needs minSdk 21+ (23+ for auth) ([f29fecb](https://github.com/invertase/react-native-firebase/commit/f29fecbe72c27e60f8fec1cee6fa879b788d27b3))
282
-
283
- ## [19.3.0](https://github.com/invertase/react-native-firebase/compare/v19.2.2...v19.3.0) (2024-05-20)
284
-
285
- **Note:** Version bump only for package @react-native-firebase/crashlytics
286
-
287
- ## [19.2.2](https://github.com/invertase/react-native-firebase/compare/v19.2.1...v19.2.2) (2024-04-13)
288
-
289
- **Note:** Version bump only for package @react-native-firebase/crashlytics
290
-
291
- ## [19.2.1](https://github.com/invertase/react-native-firebase/compare/v19.2.0...v19.2.1) (2024-04-12)
292
-
293
- **Note:** Version bump only for package @react-native-firebase/crashlytics
294
-
295
- ## [19.2.0](https://github.com/invertase/react-native-firebase/compare/v19.1.2...v19.2.0) (2024-04-10)
296
-
297
- **Note:** Version bump only for package @react-native-firebase/crashlytics
298
-
299
- ## [19.1.2](https://github.com/invertase/react-native-firebase/compare/v19.1.1...v19.1.2) (2024-04-03)
300
-
301
- ### Bug Fixes
302
-
303
- - **deps, ios:** FirebaseCoreExtension is not always versioned ([cb7ed0e](https://github.com/invertase/react-native-firebase/commit/cb7ed0eb15758a4324d2ce785513a48bfe54fe1e))
304
-
305
- ## [19.1.1](https://github.com/invertase/react-native-firebase/compare/v19.1.0...v19.1.1) (2024-03-26)
306
-
307
- **Note:** Version bump only for package @react-native-firebase/crashlytics
308
-
309
- ## [19.1.0](https://github.com/invertase/react-native-firebase/compare/v19.0.1...v19.1.0) (2024-03-23)
310
-
311
- **Note:** Version bump only for package @react-native-firebase/crashlytics
312
-
313
- ## [19.0.1](https://github.com/invertase/react-native-firebase/compare/v19.0.0...v19.0.1) (2024-03-07)
314
-
315
- **Note:** Version bump only for package @react-native-firebase/crashlytics
316
-
317
- ## [19.0.0](https://github.com/invertase/react-native-firebase/compare/v18.9.0...v19.0.0) (2024-02-26)
318
-
319
- **Note:** Version bump only for package @react-native-firebase/crashlytics
320
-
321
- ## [18.9.0](https://github.com/invertase/react-native-firebase/compare/v18.8.0...v18.9.0) (2024-02-21)
322
-
323
- **Note:** Version bump only for package @react-native-firebase/crashlytics
324
-
325
- ## [18.8.0](https://github.com/invertase/react-native-firebase/compare/v18.7.3...v18.8.0) (2024-01-25)
326
-
327
- **Note:** Version bump only for package @react-native-firebase/crashlytics
328
-
329
- ## [18.7.3](https://github.com/invertase/react-native-firebase/compare/v18.7.2...v18.7.3) (2023-12-13)
330
-
331
- **Note:** Version bump only for package @react-native-firebase/crashlytics
332
-
333
- ## [18.7.2](https://github.com/invertase/react-native-firebase/compare/v18.7.1...v18.7.2) (2023-12-08)
334
-
335
- **Note:** Version bump only for package @react-native-firebase/crashlytics
336
-
337
- ## [18.7.1](https://github.com/invertase/react-native-firebase/compare/v18.7.0...v18.7.1) (2023-11-29)
338
-
339
- ### Bug Fixes
340
-
341
- - **ios): Revert "build(ios:** specify our script phases always run" ([62b44d6](https://github.com/invertase/react-native-firebase/commit/62b44d68d3794e701e173c9f1a97e131844f0406))
342
-
343
- ## [18.7.0](https://github.com/invertase/react-native-firebase/compare/v18.6.2...v18.7.0) (2023-11-28)
344
-
345
- **Note:** Version bump only for package @react-native-firebase/crashlytics
346
-
347
- ## [18.6.2](https://github.com/invertase/react-native-firebase/compare/v18.6.1...v18.6.2) (2023-11-23)
348
-
349
- ### Bug Fixes
350
-
351
- - adopt firebase-ios-sdk 10.18.0 / firebase-android-sdk 32.6.0 ([6a8b25b](https://github.com/invertase/react-native-firebase/commit/6a8b25bc1ed22860d1cef8fa3507ca5df3a28420))
352
-
353
- ## [18.6.1](https://github.com/invertase/react-native-firebase/compare/v18.6.0...v18.6.1) (2023-11-01)
354
-
355
- **Note:** Version bump only for package @react-native-firebase/crashlytics
356
-
357
- ## [18.6.0](https://github.com/invertase/react-native-firebase/compare/v18.5.0...v18.6.0) (2023-10-26)
358
-
359
- **Note:** Version bump only for package @react-native-firebase/crashlytics
360
-
361
- ## [18.5.0](https://github.com/invertase/react-native-firebase/compare/v18.4.0...v18.5.0) (2023-09-22)
362
-
363
- **Note:** Version bump only for package @react-native-firebase/crashlytics
364
-
365
- ## [18.4.0](https://github.com/invertase/react-native-firebase/compare/v18.3.2...v18.4.0) (2023-09-11)
366
-
367
- ### Features
368
-
369
- - **crashlytics:** Firbase web modular V9 API ([#7283](https://github.com/invertase/react-native-firebase/issues/7283)) ([57f7327](https://github.com/invertase/react-native-firebase/commit/57f7327da4b405dace6b040e8a942d5f107f3603))
370
-
371
- ## [18.3.2](https://github.com/invertase/react-native-firebase/compare/v18.3.1...v18.3.2) (2023-09-02)
372
-
373
- ### Bug Fixes
374
-
375
- - **app, sdks:** adopt firebase-android-sdk 32.2.3 ([129d6ef](https://github.com/invertase/react-native-firebase/commit/129d6ef1eb1b45be3390687a002bddfe87386fa3))
376
-
377
- ## [18.3.1](https://github.com/invertase/react-native-firebase/compare/v18.3.0...v18.3.1) (2023-08-23)
378
-
379
- ### Bug Fixes
380
-
381
- - **app, sdks:** adopt android-sdk 32.2.2 / ios-sdk 10.13.0 ([5484c0b](https://github.com/invertase/react-native-firebase/commit/5484c0b69420f888f9a3a59aec8cc59d45f1d2d6))
382
-
383
- ## [18.3.0](https://github.com/invertase/react-native-firebase/compare/v18.2.0...v18.3.0) (2023-07-19)
384
-
385
- **Note:** Version bump only for package @react-native-firebase/crashlytics
386
-
387
- ## [18.2.0](https://github.com/invertase/react-native-firebase/compare/v18.1.0...v18.2.0) (2023-07-13)
388
-
389
- **Note:** Version bump only for package @react-native-firebase/crashlytics
390
-
391
- ## [18.1.0](https://github.com/invertase/react-native-firebase/compare/v18.0.0...v18.1.0) (2023-06-22)
392
-
393
- **Note:** Version bump only for package @react-native-firebase/crashlytics
394
-
395
- ## [18.0.0](https://github.com/invertase/react-native-firebase/compare/v17.5.0...v18.0.0) (2023-06-05)
396
-
397
- **Note:** Version bump only for package @react-native-firebase/crashlytics
398
-
399
- ## [17.5.0](https://github.com/invertase/react-native-firebase/compare/v17.4.3...v17.5.0) (2023-05-11)
400
-
401
- **Note:** Version bump only for package @react-native-firebase/crashlytics
402
-
403
- ### [17.4.3](https://github.com/invertase/react-native-firebase/compare/v17.4.2...v17.4.3) (2023-04-26)
404
-
405
- ### Bug Fixes
406
-
407
- - **expo:** update dependencies of config plugins ([3e81143](https://github.com/invertase/react-native-firebase/commit/3e81143e67028f70c20530b8e1083b2a904f96f4))
408
-
409
- ### [17.4.2](https://github.com/invertase/react-native-firebase/compare/v17.4.1...v17.4.2) (2023-04-05)
410
-
411
- **Note:** Version bump only for package @react-native-firebase/crashlytics
412
-
413
- ### [17.4.1](https://github.com/invertase/react-native-firebase/compare/v17.4.0...v17.4.1) (2023-04-01)
414
-
415
- ### Bug Fixes
416
-
417
- - **crashlytics, android:** use v2.9.2 of crashlytics android plugin ([8460ab6](https://github.com/invertase/react-native-firebase/commit/8460ab6176bb0d287a277853427d94004c30a4d0)), closes [#6983](https://github.com/invertase/react-native-firebase/issues/6983)
418
-
419
- ## [17.4.0](https://github.com/invertase/react-native-firebase/compare/v17.3.2...v17.4.0) (2023-03-25)
420
-
421
- **Note:** Version bump only for package @react-native-firebase/crashlytics
422
-
423
- ### [17.3.2](https://github.com/invertase/react-native-firebase/compare/v17.3.1...v17.3.2) (2023-03-05)
424
-
425
- **Note:** Version bump only for package @react-native-firebase/crashlytics
426
-
427
- ### [17.3.1](https://github.com/invertase/react-native-firebase/compare/v17.3.0...v17.3.1) (2023-02-23)
428
-
429
- ### Bug Fixes
430
-
431
- - **app, android:** adopt firebase-android-sdk 31.2.2 w/crash fixes ([2d1f2cb](https://github.com/invertase/react-native-firebase/commit/2d1f2cb64d6460a6a73aeea57b4472060801aecb)), closes [#6930](https://github.com/invertase/react-native-firebase/issues/6930)
432
-
433
- ## [17.3.0](https://github.com/invertase/react-native-firebase/compare/v17.2.0...v17.3.0) (2023-02-15)
434
-
435
- **Note:** Version bump only for package @react-native-firebase/crashlytics
436
-
437
- ## [17.2.0](https://github.com/invertase/react-native-firebase/compare/v17.1.0...v17.2.0) (2023-02-15)
438
-
439
- **Note:** Version bump only for package @react-native-firebase/crashlytics
440
-
441
- ## [17.1.0](https://github.com/invertase/react-native-firebase/compare/v17.0.0...v17.1.0) (2023-02-09)
442
-
443
- **Note:** Version bump only for package @react-native-firebase/crashlytics
444
-
445
- ## [17.0.0](https://github.com/invertase/react-native-firebase/compare/v16.7.0...v17.0.0) (2023-02-02)
446
-
447
- **Note:** Version bump only for package @react-native-firebase/crashlytics
448
-
449
- ## [16.7.0](https://github.com/invertase/react-native-firebase/compare/v16.6.0...v16.7.0) (2023-01-28)
450
-
451
- **Note:** Version bump only for package @react-native-firebase/crashlytics
452
-
453
- ## [16.6.0](https://github.com/invertase/react-native-firebase/compare/v16.5.2...v16.6.0) (2023-01-27)
454
-
455
- **Note:** Version bump only for package @react-native-firebase/crashlytics
456
-
457
- ### [16.5.2](https://github.com/invertase/react-native-firebase/compare/v16.5.1...v16.5.2) (2023-01-23)
458
-
459
- **Note:** Version bump only for package @react-native-firebase/crashlytics
460
-
461
- ### [16.5.1](https://github.com/invertase/react-native-firebase/compare/v16.5.0...v16.5.1) (2023-01-20)
462
-
463
- **Note:** Version bump only for package @react-native-firebase/crashlytics
464
-
465
- ## [16.5.0](https://github.com/invertase/react-native-firebase/compare/v16.4.6...v16.5.0) (2022-12-16)
466
-
467
- **Note:** Version bump only for package @react-native-firebase/crashlytics
468
-
469
- ### [16.4.6](https://github.com/invertase/react-native-firebase/compare/v16.4.5...v16.4.6) (2022-11-18)
470
-
471
- **Note:** Version bump only for package @react-native-firebase/crashlytics
472
-
473
- ### [16.4.5](https://github.com/invertase/react-native-firebase/compare/v16.4.4...v16.4.5) (2022-11-16)
474
-
475
- **Note:** Version bump only for package @react-native-firebase/crashlytics
476
-
477
- ### [16.4.4](https://github.com/invertase/react-native-firebase/compare/v16.4.3...v16.4.4) (2022-11-14)
478
-
479
- **Note:** Version bump only for package @react-native-firebase/crashlytics
480
-
481
- ### [16.4.3](https://github.com/invertase/react-native-firebase/compare/v16.4.2...v16.4.3) (2022-11-06)
482
-
483
- **Note:** Version bump only for package @react-native-firebase/crashlytics
484
-
485
- ### [16.4.2](https://github.com/invertase/react-native-firebase/compare/v16.4.1...v16.4.2) (2022-11-04)
486
-
487
- **Note:** Version bump only for package @react-native-firebase/crashlytics
488
-
489
- ### [16.4.1](https://github.com/invertase/react-native-firebase/compare/v16.4.0...v16.4.1) (2022-11-02)
490
-
491
- **Note:** Version bump only for package @react-native-firebase/crashlytics
492
-
493
- ## [16.4.0](https://github.com/invertase/react-native-firebase/compare/v16.3.1...v16.4.0) (2022-10-30)
494
-
495
- **Note:** Version bump only for package @react-native-firebase/crashlytics
496
-
497
- ### [16.3.1](https://github.com/invertase/react-native-firebase/compare/v16.3.0...v16.3.1) (2022-10-28)
498
-
499
- **Note:** Version bump only for package @react-native-firebase/crashlytics
500
-
501
- ## [16.3.0](https://github.com/invertase/react-native-firebase/compare/v16.2.0...v16.3.0) (2022-10-26)
502
-
503
- **Note:** Version bump only for package @react-native-firebase/crashlytics
504
-
505
- ## [16.2.0](https://github.com/invertase/react-native-firebase/compare/v16.1.1...v16.2.0) (2022-10-23)
506
-
507
- **Note:** Version bump only for package @react-native-firebase/crashlytics
508
-
509
- ### [16.1.1](https://github.com/invertase/react-native-firebase/compare/v16.1.0...v16.1.1) (2022-10-21)
510
-
511
- **Note:** Version bump only for package @react-native-firebase/crashlytics
512
-
513
- ## [16.1.0](https://github.com/invertase/react-native-firebase/compare/v16.0.0...v16.1.0) (2022-10-20)
514
-
515
- **Note:** Version bump only for package @react-native-firebase/crashlytics
516
-
517
- ## [16.0.0](https://github.com/invertase/react-native-firebase/compare/v15.7.1...v16.0.0) (2022-10-19)
518
-
519
- **Note:** Version bump only for package @react-native-firebase/crashlytics
520
-
521
- ## [15.7.1](https://github.com/invertase/react-native-firebase/compare/v15.7.0...v15.7.1) (2022-10-19)
522
-
523
- **Note:** Version bump only for package @react-native-firebase/crashlytics
524
-
525
- # [15.7.0](https://github.com/invertase/react-native-firebase/compare/v15.6.0...v15.7.0) (2022-10-01)
526
-
527
- **Note:** Version bump only for package @react-native-firebase/crashlytics
528
-
529
- # [15.6.0](https://github.com/invertase/react-native-firebase/compare/v15.5.0...v15.6.0) (2022-09-17)
530
-
531
- **Note:** Version bump only for package @react-native-firebase/crashlytics
532
-
533
- # [15.5.0](https://github.com/invertase/react-native-firebase/compare/v15.4.0...v15.5.0) (2022-09-16)
534
-
535
- ### Features
536
-
537
- - **android:** firebase-android-sdk 30.5.0 ([abe7620](https://github.com/invertase/react-native-firebase/commit/abe7620c35cd91bd105d64fa64777868a3482435))
538
-
539
- # [15.4.0](https://github.com/invertase/react-native-firebase/compare/v15.3.0...v15.4.0) (2022-08-27)
540
-
541
- **Note:** Version bump only for package @react-native-firebase/crashlytics
542
-
543
- # [15.3.0](https://github.com/invertase/react-native-firebase/compare/v15.2.0...v15.3.0) (2022-08-07)
544
-
545
- **Note:** Version bump only for package @react-native-firebase/crashlytics
546
-
547
- # [15.2.0](https://github.com/invertase/react-native-firebase/compare/v15.1.1...v15.2.0) (2022-07-21)
548
-
549
- **Note:** Version bump only for package @react-native-firebase/crashlytics
550
-
551
- ## [15.1.1](https://github.com/invertase/react-native-firebase/compare/v15.1.0...v15.1.1) (2022-06-28)
552
-
553
- ### Bug Fixes
554
-
555
- - **ios, crashlytics:** depend on FirebaseCoreExtension ([#6352](https://github.com/invertase/react-native-firebase/issues/6352)) ([ea0ffe0](https://github.com/invertase/react-native-firebase/commit/ea0ffe06e7c6182bf38b18e9d6ca00c388ec6893)), closes [/github.com/invertase/react-native-firebase/issues/6322#issuecomment-1168902482](https://github.com//github.com/invertase/react-native-firebase/issues/6322/issues/issuecomment-1168902482)
556
-
557
- # [15.1.0](https://github.com/invertase/react-native-firebase/compare/v15.0.0...v15.1.0) (2022-06-28)
558
-
559
- ### Features
560
-
561
- - **android, sdk:** use firebase-android-sdk 30.2.0 ([66e6fb0](https://github.com/invertase/react-native-firebase/commit/66e6fb0885c4f2885aeec140a9c0655a5eedd8df))
562
-
563
- # [15.0.0](https://github.com/invertase/react-native-firebase/compare/v14.11.1...v15.0.0) (2022-06-20)
564
-
565
- ### Bug Fixes
566
-
567
- - **crashlytics, ios:** forward port to firebase-ios-sdk v9 header locations ([e5bd716](https://github.com/invertase/react-native-firebase/commit/e5bd7161c0d1142da184e0e676c8756e2ebebf90))
568
-
569
- ## [14.11.1](https://github.com/invertase/react-native-firebase/compare/v14.11.0...v14.11.1) (2022-06-17)
570
-
571
- **Note:** Version bump only for package @react-native-firebase/crashlytics
572
-
573
- # [14.11.0](https://github.com/invertase/react-native-firebase/compare/v14.10.1...v14.11.0) (2022-05-27)
574
-
575
- ### Features
576
-
577
- - **android, sdk:** firebase-android-sdk 30.1.0 ([b0462d4](https://github.com/invertase/react-native-firebase/commit/b0462d4d34d1518a50daeca09288bf4aa0e0f695))
578
-
579
- ## [14.10.1](https://github.com/invertase/react-native-firebase/compare/v14.10.0...v14.10.1) (2022-05-26)
580
-
581
- **Note:** Version bump only for package @react-native-firebase/crashlytics
582
-
583
- # [14.10.0](https://github.com/invertase/react-native-firebase/compare/v14.9.4...v14.10.0) (2022-05-26)
584
-
585
- **Note:** Version bump only for package @react-native-firebase/crashlytics
586
-
587
- ## [14.9.4](https://github.com/invertase/react-native-firebase/compare/v14.9.3...v14.9.4) (2022-05-14)
588
-
589
- **Note:** Version bump only for package @react-native-firebase/crashlytics
590
-
591
- ## [14.9.3](https://github.com/invertase/react-native-firebase/compare/v14.9.2...v14.9.3) (2022-05-10)
592
-
593
- **Note:** Version bump only for package @react-native-firebase/crashlytics
594
-
595
- ## [14.9.2](https://github.com/invertase/react-native-firebase/compare/v14.9.1...v14.9.2) (2022-05-10)
596
-
597
- **Note:** Version bump only for package @react-native-firebase/crashlytics
598
-
599
- ## [14.9.1](https://github.com/invertase/react-native-firebase/compare/v14.9.0...v14.9.1) (2022-04-28)
600
-
601
- **Note:** Version bump only for package @react-native-firebase/crashlytics
602
-
603
- # [14.9.0](https://github.com/invertase/react-native-firebase/compare/v14.8.1...v14.9.0) (2022-04-27)
604
-
605
- **Note:** Version bump only for package @react-native-firebase/crashlytics
606
-
607
- ## [14.8.1](https://github.com/invertase/react-native-firebase/compare/v14.8.0...v14.8.1) (2022-04-25)
608
-
609
- ### Bug Fixes
610
-
611
- - **app, expo:** Support RN 0.68 Obj-C++ AppDelegate ([#6213](https://github.com/invertase/react-native-firebase/issues/6213)) ([6f2d7e1](https://github.com/invertase/react-native-firebase/commit/6f2d7e1608d04613b77461f9647802aa1058e6cc))
612
-
613
- # [14.8.0](https://github.com/invertase/react-native-firebase/compare/v14.7.0...v14.8.0) (2022-04-19)
614
-
615
- **Note:** Version bump only for package @react-native-firebase/crashlytics
616
-
617
- # [14.7.0](https://github.com/invertase/react-native-firebase/compare/v14.6.0...v14.7.0) (2022-03-23)
618
-
619
- **Note:** Version bump only for package @react-native-firebase/crashlytics
620
-
621
- # [14.6.0](https://github.com/invertase/react-native-firebase/compare/v14.5.1...v14.6.0) (2022-03-23)
622
-
623
- **Note:** Version bump only for package @react-native-firebase/crashlytics
624
-
625
- ## [14.5.1](https://github.com/invertase/react-native-firebase/compare/v14.5.0...v14.5.1) (2022-03-05)
626
-
627
- **Note:** Version bump only for package @react-native-firebase/crashlytics
628
-
629
- # [14.5.0](https://github.com/invertase/react-native-firebase/compare/v14.4.0...v14.5.0) (2022-02-15)
630
-
631
- **Note:** Version bump only for package @react-native-firebase/crashlytics
632
-
633
- # [14.4.0](https://github.com/invertase/react-native-firebase/compare/v14.3.3...v14.4.0) (2022-02-13)
634
-
635
- **Note:** Version bump only for package @react-native-firebase/crashlytics
636
-
637
- ## [14.3.3](https://github.com/invertase/react-native-firebase/compare/v14.3.2...v14.3.3) (2022-02-12)
638
-
639
- **Note:** Version bump only for package @react-native-firebase/crashlytics
640
-
641
- ## [14.3.2](https://github.com/invertase/react-native-firebase/compare/v14.3.1...v14.3.2) (2022-02-10)
642
-
643
- **Note:** Version bump only for package @react-native-firebase/crashlytics
644
-
645
- ## [14.3.1](https://github.com/invertase/react-native-firebase/compare/v14.3.0...v14.3.1) (2022-02-07)
646
-
647
- **Note:** Version bump only for package @react-native-firebase/crashlytics
648
-
649
- # [14.3.0](https://github.com/invertase/react-native-firebase/compare/v14.2.4...v14.3.0) (2022-01-26)
650
-
651
- **Note:** Version bump only for package @react-native-firebase/crashlytics
652
-
653
- ## [14.2.4](https://github.com/invertase/react-native-firebase/compare/v14.2.3...v14.2.4) (2022-01-24)
654
-
655
- **Note:** Version bump only for package @react-native-firebase/crashlytics
656
-
657
- ## [14.2.3](https://github.com/invertase/react-native-firebase/compare/v14.2.2...v14.2.3) (2022-01-20)
658
-
659
- **Note:** Version bump only for package @react-native-firebase/crashlytics
660
-
661
- ## [14.2.2](https://github.com/invertase/react-native-firebase/compare/v14.2.1...v14.2.2) (2022-01-06)
662
-
663
- **Note:** Version bump only for package @react-native-firebase/crashlytics
664
-
665
- ## [14.2.1](https://github.com/invertase/react-native-firebase/compare/v14.2.0...v14.2.1) (2021-12-31)
666
-
667
- **Note:** Version bump only for package @react-native-firebase/crashlytics
668
-
669
- # [14.2.0](https://github.com/invertase/react-native-firebase/compare/v14.1.0...v14.2.0) (2021-12-31)
670
-
671
- **Note:** Version bump only for package @react-native-firebase/crashlytics
672
-
673
- # [14.1.0](https://github.com/invertase/react-native-firebase/compare/v14.0.1...v14.1.0) (2021-12-18)
674
-
675
- ### Bug Fixes
676
-
677
- - **crashlytics, ios:** alter header import style for Expo SDK 44 compat ([#5947](https://github.com/invertase/react-native-firebase/issues/5947)) ([e45f37c](https://github.com/invertase/react-native-firebase/commit/e45f37cf76eba80f5fd537b6b7806c79f7052a74))
678
-
679
- ## [14.0.1](https://github.com/invertase/react-native-firebase/compare/v14.0.0...v14.0.1) (2021-12-15)
680
-
681
- **Note:** Version bump only for package @react-native-firebase/crashlytics
682
-
683
- # [14.0.0](https://github.com/invertase/react-native-firebase/compare/v13.1.1...v14.0.0) (2021-12-14)
684
-
685
- **Note:** Version bump only for package @react-native-firebase/crashlytics
686
-
687
- ## [13.1.1](https://github.com/invertase/react-native-firebase/compare/v13.1.0...v13.1.1) (2021-12-14)
688
-
689
- ### Bug Fixes
690
-
691
- - **deps:** AGP7.0.4, firebase-android-sdk 29.0.2, javascript deps ([55d0a36](https://github.com/invertase/react-native-firebase/commit/55d0a36a0addc54e347f26bb8ee88bb38b0fa4a6))
692
-
693
- # [13.1.0](https://github.com/invertase/react-native-firebase/compare/v13.0.1...v13.1.0) (2021-12-02)
694
-
695
- ### Features
696
-
697
- - **sdks:** firebase-ios-sdk 8.10.0 / firebase-android-sdk 29.0.1 ([f6949c9](https://github.com/invertase/react-native-firebase/commit/f6949c9f3669df6d8b3f78bbee97bee2f36b7df3))
698
-
699
- ## [13.0.1](https://github.com/invertase/react-native-firebase/compare/v13.0.0...v13.0.1) (2021-11-05)
700
-
701
- **Note:** Version bump only for package @react-native-firebase/crashlytics
702
-
703
- # [13.0.0](https://github.com/invertase/react-native-firebase/compare/v12.9.3...v13.0.0) (2021-10-31)
704
-
705
- ### Bug Fixes
706
-
707
- - rename default branch to main ([25e1d3d](https://github.com/invertase/react-native-firebase/commit/25e1d3d5a1a8311588938dc9d8fdf71d11cd9963))
708
-
709
- - feat(sdks, android)!: firebase-android-sdk v29 / minSdkVersion API19 / target+compile API31 (#5825) ([f60afe1](https://github.com/invertase/react-native-firebase/commit/f60afe158b2dc823bd7169e36c3e428470576c7e)), closes [#5825](https://github.com/invertase/react-native-firebase/issues/5825)
710
-
711
- ### BREAKING CHANGES
712
-
713
- - firebase-android-sdk 29 requires android/build.gradle minSdkVersion 19 (as required in react-native 0.64+)
714
-
715
- ## [12.9.3](https://github.com/invertase/react-native-firebase/compare/v12.9.2...v12.9.3) (2021-10-22)
716
-
717
- **Note:** Version bump only for package @react-native-firebase/crashlytics
718
-
719
- ## [12.9.2](https://github.com/invertase/react-native-firebase/compare/v12.9.1...v12.9.2) (2021-10-17)
720
-
721
- **Note:** Version bump only for package @react-native-firebase/crashlytics
722
-
723
- ## [12.9.1](https://github.com/invertase/react-native-firebase/compare/v12.9.0...v12.9.1) (2021-10-10)
724
-
725
- **Note:** Version bump only for package @react-native-firebase/crashlytics
726
-
727
- # [12.9.0](https://github.com/invertase/react-native-firebase/compare/v12.8.0...v12.9.0) (2021-10-03)
728
-
729
- **Note:** Version bump only for package @react-native-firebase/crashlytics
730
-
731
- # [12.8.0](https://github.com/invertase/react-native-firebase/compare/v12.7.5...v12.8.0) (2021-09-14)
732
-
733
- **Note:** Version bump only for package @react-native-firebase/crashlytics
734
-
735
- ## [12.7.5](https://github.com/invertase/react-native-firebase/compare/v12.7.4...v12.7.5) (2021-09-04)
736
-
737
- **Note:** Version bump only for package @react-native-firebase/crashlytics
738
-
739
- ## [12.7.4](https://github.com/invertase/react-native-firebase/compare/v12.7.3...v12.7.4) (2021-08-31)
740
-
741
- **Note:** Version bump only for package @react-native-firebase/crashlytics
742
-
743
- ## [12.7.3](https://github.com/invertase/react-native-firebase/compare/v12.7.2...v12.7.3) (2021-08-24)
744
-
745
- **Note:** Version bump only for package @react-native-firebase/crashlytics
746
-
747
- ## [12.7.2](https://github.com/invertase/react-native-firebase/compare/v12.7.1...v12.7.2) (2021-08-21)
748
-
749
- **Note:** Version bump only for package @react-native-firebase/crashlytics
750
-
751
- ## [12.7.1](https://github.com/invertase/react-native-firebase/compare/v12.7.0...v12.7.1) (2021-08-20)
752
-
753
- **Note:** Version bump only for package @react-native-firebase/crashlytics
754
-
755
- # [12.7.0](https://github.com/invertase/react-native-firebase/compare/v12.6.1...v12.7.0) (2021-08-19)
756
-
757
- **Note:** Version bump only for package @react-native-firebase/crashlytics
758
-
759
- ## [12.6.1](https://github.com/invertase/react-native-firebase/compare/v12.6.0...v12.6.1) (2021-08-17)
760
-
761
- ### Bug Fixes
762
-
763
- - **crashlytics, config:** handle new app_data_collection_default_enabled key ([81aa17f](https://github.com/invertase/react-native-firebase/commit/81aa17f1b60a6171329d9a2f250226010dfc081e))
764
-
765
- # [12.6.0](https://github.com/invertase/react-native-firebase/compare/v12.5.0...v12.6.0) (2021-08-16)
766
-
767
- **Note:** Version bump only for package @react-native-firebase/crashlytics
768
-
769
- # [12.5.0](https://github.com/invertase/react-native-firebase/compare/v12.4.0...v12.5.0) (2021-08-12)
770
-
771
- ### Bug Fixes
772
-
773
- - **expo:** do not publish plugin tests and sources ([#5565](https://github.com/invertase/react-native-firebase/issues/5565)) ([6b5dca5](https://github.com/invertase/react-native-firebase/commit/6b5dca500ea413ee68acf8abc74e579f4298cbad))
774
-
775
- # [12.4.0](https://github.com/invertase/react-native-firebase/compare/v12.3.0...v12.4.0) (2021-07-29)
776
-
777
- ### Features
778
-
779
- - Add Expo config plugin ([#5480](https://github.com/invertase/react-native-firebase/issues/5480)) ([832057c](https://github.com/invertase/react-native-firebase/commit/832057cfbdf1778ad2141a1ad4466d2e8c24b8ce))
780
-
781
- # [12.3.0](https://github.com/invertase/react-native-firebase/compare/v12.2.0...v12.3.0) (2021-07-21)
782
-
783
- **Note:** Version bump only for package @react-native-firebase/crashlytics
784
-
785
- # [12.2.0](https://github.com/invertase/react-native-firebase/compare/v12.1.0...v12.2.0) (2021-07-16)
786
-
787
- ### Features
788
-
789
- - **crashlytics:** add helper methods for log and setCustomKey ([06d515c](https://github.com/invertase/react-native-firebase/commit/06d515cad533c76328e324f0e950a814881aab0d))
790
-
791
- # [12.1.0](https://github.com/invertase/react-native-firebase/compare/v12.0.0...v12.1.0) (2021-06-11)
792
-
793
- **Note:** Version bump only for package @react-native-firebase/crashlytics
794
-
795
- # [12.0.0](https://github.com/invertase/react-native-firebase/compare/v11.5.0...v12.0.0) (2021-05-19)
796
-
797
- **Note:** Version bump only for package @react-native-firebase/crashlytics
798
-
799
- # [11.5.0](https://github.com/invertase/react-native-firebase/compare/v11.4.1...v11.5.0) (2021-05-12)
800
-
801
- **Note:** Version bump only for package @react-native-firebase/crashlytics
802
-
803
- ## [11.4.1](https://github.com/invertase/react-native-firebase/compare/v11.4.0...v11.4.1) (2021-04-29)
804
-
805
- **Note:** Version bump only for package @react-native-firebase/crashlytics
806
-
807
- # [11.4.0](https://github.com/invertase/react-native-firebase/compare/v11.3.3...v11.4.0) (2021-04-29)
808
-
809
- **Note:** Version bump only for package @react-native-firebase/crashlytics
810
-
811
- ## [11.3.3](https://github.com/invertase/react-native-firebase/compare/v11.3.2...v11.3.3) (2021-04-24)
812
-
813
- **Note:** Version bump only for package @react-native-firebase/crashlytics
814
-
815
- ## [11.3.2](https://github.com/invertase/react-native-firebase/compare/v11.3.1...v11.3.2) (2021-04-19)
816
-
817
- ### Bug Fixes
818
-
819
- - **all, android:** purge jcenter() from android build ([2c6a6a8](https://github.com/invertase/react-native-firebase/commit/2c6a6a82ec363fd948ea880fd397acb886c97453))
820
-
821
- ## [11.3.1](https://github.com/invertase/react-native-firebase/compare/v11.3.0...v11.3.1) (2021-04-18)
822
-
823
- **Note:** Version bump only for package @react-native-firebase/crashlytics
824
-
825
- # [11.3.0](https://github.com/invertase/react-native-firebase/compare/v11.2.0...v11.3.0) (2021-04-16)
826
-
827
- ### Bug Fixes
828
-
829
- - **crashlytics, debug:** Disable Crashlytics in debug mode by default ([#5117](https://github.com/invertase/react-native-firebase/issues/5117)) ([eeeba2e](https://github.com/invertase/react-native-firebase/commit/eeeba2ed771b72a04dd9b2154c259a8648a21022))
830
- - **crashlytics, ios:** register library with dynamic version string ([90bceb2](https://github.com/invertase/react-native-firebase/commit/90bceb292bfcbdf16517b654376d151c26e5432c))
831
- - **crashlytics, ios:** warn if debugger will break crashlytics ([d6b6d23](https://github.com/invertase/react-native-firebase/commit/d6b6d231d4c4da68219e52fe8bc9e0220f73ef0c))
832
-
833
- ### Features
834
-
835
- - **crashlytics:** add configuration to exception handler chaining behavior ([4c640ff](https://github.com/invertase/react-native-firebase/commit/4c640ff52e1fb692bddcbeb76a2ff2a302e56334))
836
- - **crashlytics:** flag fatal errors for crashlytics and analytics ([c94546d](https://github.com/invertase/react-native-firebase/commit/c94546d8127606dca5bfd09ef92ec32eec333f19))
837
-
838
- # [11.2.0](https://github.com/invertase/react-native-firebase/compare/v11.1.2...v11.2.0) (2021-03-26)
839
-
840
- **Note:** Version bump only for package @react-native-firebase/crashlytics
841
-
842
- ## [11.1.2](https://github.com/invertase/react-native-firebase/compare/v11.1.1...v11.1.2) (2021-03-17)
843
-
844
- **Note:** Version bump only for package @react-native-firebase/crashlytics
845
-
846
- ## [11.1.1](https://github.com/invertase/react-native-firebase/compare/v11.1.0...v11.1.1) (2021-03-16)
847
-
848
- **Note:** Version bump only for package @react-native-firebase/crashlytics
849
-
850
- # [11.1.0](https://github.com/invertase/react-native-firebase/compare/v11.0.0...v11.1.0) (2021-03-13)
851
-
852
- ### Features
853
-
854
- - **crashlytics, native:** add non-fatal exception logger for 3rd party native code use ([#5015](https://github.com/invertase/react-native-firebase/issues/5015)) ([b3e6810](https://github.com/invertase/react-native-firebase/commit/b3e681079af0bcc00655d079823a7ec6442d8723))
855
-
856
- # [11.0.0](https://github.com/invertase/react-native-firebase/compare/v10.8.1...v11.0.0) (2021-03-03)
857
-
858
- **Note:** Version bump only for package @react-native-firebase/crashlytics
859
-
860
- ## [10.8.1](https://github.com/invertase/react-native-firebase/compare/v10.8.0...v10.8.1) (2021-02-22)
861
-
862
- **Note:** Version bump only for package @react-native-firebase/crashlytics
863
-
864
- # [10.8.0](https://github.com/invertase/react-native-firebase/compare/v10.7.0...v10.8.0) (2021-02-13)
865
-
866
- ### Features
867
-
868
- - **crashlytics:** add JS exception non-fatal error generation toggle ([#4904](https://github.com/invertase/react-native-firebase/issues/4904)) ([63c35b3](https://github.com/invertase/react-native-firebase/commit/63c35b3d9243a76fd77dedaa9fa83fca7fb802ae))
869
-
870
- # [10.7.0](https://github.com/invertase/react-native-firebase/compare/v10.6.4...v10.7.0) (2021-02-09)
871
-
872
- **Note:** Version bump only for package @react-native-firebase/crashlytics
873
-
874
- ## [10.6.4](https://github.com/invertase/react-native-firebase/compare/v10.6.3...v10.6.4) (2021-02-05)
875
-
876
- **Note:** Version bump only for package @react-native-firebase/crashlytics
877
-
878
- ## [10.6.3](https://github.com/invertase/react-native-firebase/compare/v10.6.2...v10.6.3) (2021-02-05)
879
-
880
- **Note:** Version bump only for package @react-native-firebase/crashlytics
881
-
882
- ## [10.6.1](https://github.com/invertase/react-native-firebase/compare/v10.6.0...v10.6.1) (2021-02-04)
883
-
884
- **Note:** Version bump only for package @react-native-firebase/crashlytics
885
-
886
- # [10.6.0](https://github.com/invertase/react-native-firebase/compare/v10.5.1...v10.6.0) (2021-02-04)
887
-
888
- **Note:** Version bump only for package @react-native-firebase/crashlytics
889
-
890
- ## [10.5.1](https://github.com/invertase/react-native-firebase/compare/v10.5.0...v10.5.1) (2021-01-19)
891
-
892
- **Note:** Version bump only for package @react-native-firebase/crashlytics
893
-
894
- ## [10.4.1](https://github.com/invertase/react-native-firebase/compare/v10.4.0...v10.4.1) (2021-01-08)
895
-
896
- **Note:** Version bump only for package @react-native-firebase/crashlytics
897
-
898
- # [10.4.0](https://github.com/invertase/react-native-firebase/compare/v10.3.1...v10.4.0) (2020-12-30)
899
-
900
- ### Bug Fixes
901
-
902
- - **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))
903
-
904
- ## [10.3.1](https://github.com/invertase/react-native-firebase/compare/v10.3.0...v10.3.1) (2020-12-18)
905
-
906
- **Note:** Version bump only for package @react-native-firebase/crashlytics
907
-
908
- # [10.3.0](https://github.com/invertase/react-native-firebase/compare/v10.2.0...v10.3.0) (2020-12-18)
909
-
910
- **Note:** Version bump only for package @react-native-firebase/crashlytics
911
-
912
- # [10.2.0](https://github.com/invertase/react-native-firebase/compare/v10.1.1...v10.2.0) (2020-12-11)
913
-
914
- ### Features
915
-
916
- - 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))
917
-
918
- ## [10.1.1](https://github.com/invertase/react-native-firebase/compare/v10.1.0...v10.1.1) (2020-12-02)
919
-
920
- **Note:** Version bump only for package @react-native-firebase/crashlytics
921
-
922
- # [10.1.0](https://github.com/invertase/react-native-firebase/compare/v10.0.0...v10.1.0) (2020-11-26)
923
-
924
- ### Features
925
-
926
- - **crashlytics:** add custom message ability to javascript stack traces ([#4609](https://github.com/invertase/react-native-firebase/issues/4609)) ([afaa95d](https://github.com/invertase/react-native-firebase/commit/afaa95dbf4c744cb04042f6236837164edc8bbb8))
927
-
928
- # [10.0.0](https://github.com/invertase/react-native-firebase/compare/fc8c4c0622f8e6814879d0306f66012df5b83cd8...v10.0.0) (2020-11-17)
929
-
930
- ### BREAKING CHANGES
931
-
932
- - breaking change to mark new internal versioning requirements.
933
-
934
- ## [8.5.2](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.5.1...@react-native-firebase/crashlytics@8.5.2) (2020-11-10)
935
-
936
- **Note:** Version bump only for package @react-native-firebase/crashlytics
937
-
938
- ## [8.5.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.5.0...@react-native-firebase/crashlytics@8.5.1) (2020-11-10)
939
-
940
- **Note:** Version bump only for package @react-native-firebase/crashlytics
941
-
942
- # [8.5.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.4.12...@react-native-firebase/crashlytics@8.5.0) (2020-11-10)
943
-
944
- ### Features
945
-
946
- - **crashlytics, ios:** put input files when pod install. ([#4520](https://github.com/invertase/react-native-firebase/issues/4520)) ([f2161fd](https://github.com/invertase/react-native-firebase/commit/f2161fddbab68e01c0b0653201be492def43df3b))
947
-
948
- ## [8.4.12](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.4.11...@react-native-firebase/crashlytics@8.4.12) (2020-10-30)
949
-
950
- **Note:** Version bump only for package @react-native-firebase/crashlytics
951
-
952
- ## [8.4.11](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.4.10...@react-native-firebase/crashlytics@8.4.11) (2020-10-21)
953
-
954
- ### Bug Fixes
955
-
956
- - **crashlytics, ios:** generate uncatchable crash for iOS crash testing ([#4426](https://github.com/invertase/react-native-firebase/issues/4426)) ([2dcaad5](https://github.com/invertase/react-native-firebase/commit/2dcaad59c27b90b1f2b3ef6b31e46d3eac8a5e2e))
957
-
958
- ## [8.4.10](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.4.9...@react-native-firebase/crashlytics@8.4.10) (2020-10-16)
959
-
960
- **Note:** Version bump only for package @react-native-firebase/crashlytics
961
-
962
- ## [8.4.9](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.4.8...@react-native-firebase/crashlytics@8.4.9) (2020-09-30)
963
-
964
- **Note:** Version bump only for package @react-native-firebase/crashlytics
965
-
966
- ## [8.4.8](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.4.7...@react-native-firebase/crashlytics@8.4.8) (2020-09-30)
967
-
968
- ### Bug Fixes
969
-
970
- - **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))
971
-
972
- ## [8.4.7](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.4.6...@react-native-firebase/crashlytics@8.4.7) (2020-09-30)
973
-
974
- **Note:** Version bump only for package @react-native-firebase/crashlytics
975
-
976
- ## [8.4.6](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.4.5...@react-native-firebase/crashlytics@8.4.6) (2020-09-17)
977
-
978
- **Note:** Version bump only for package @react-native-firebase/crashlytics
979
-
980
- ## [8.4.5](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.4.4...@react-native-firebase/crashlytics@8.4.5) (2020-09-17)
981
-
982
- ### Bug Fixes
983
-
984
- - **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))
985
-
986
- ## [8.4.4](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.4.3...@react-native-firebase/crashlytics@8.4.4) (2020-09-11)
987
-
988
- **Note:** Version bump only for package @react-native-firebase/crashlytics
989
-
990
- ## [8.4.3](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.4.2...@react-native-firebase/crashlytics@8.4.3) (2020-09-11)
991
-
992
- ### Bug Fixes
993
-
994
- - **crashlytics, ios:** explicitly set collection opt in/out ([#4236](https://github.com/invertase/react-native-firebase/issues/4236)) ([cda4c10](https://github.com/invertase/react-native-firebase/commit/cda4c1012737eab8b64e8f8593b623771f5b2734))
995
-
996
- ## [8.4.2](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.4.1...@react-native-firebase/crashlytics@8.4.2) (2020-08-28)
997
-
998
- **Note:** Version bump only for package @react-native-firebase/crashlytics
999
-
1000
- ## [8.4.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.4.0...@react-native-firebase/crashlytics@8.4.1) (2020-08-26)
1001
-
1002
- **Note:** Version bump only for package @react-native-firebase/crashlytics
1003
-
1004
- # [8.4.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.3.4...@react-native-firebase/crashlytics@8.4.0) (2020-08-26)
1005
-
1006
- ### Features
1007
-
1008
- - 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))
1009
-
1010
- ## [8.3.4](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.3.3...@react-native-firebase/crashlytics@8.3.4) (2020-08-25)
1011
-
1012
- ### Bug Fixes
1013
-
1014
- - **ios, crashlytics:** allow Crashlytics inclusion w/o Analytics ([#4134](https://github.com/invertase/react-native-firebase/issues/4134)) ([e023b71](https://github.com/invertase/react-native-firebase/commit/e023b71486d6834ba175e91ee5809af36a03588d))
1015
-
1016
- ## [8.3.3](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.3.2...@react-native-firebase/crashlytics@8.3.3) (2020-08-24)
1017
-
1018
- ### Bug Fixes
1019
-
1020
- - **ios, crashlytics:** use NSInternalInconsistencyException to crash w/o redbox ([#4126](https://github.com/invertase/react-native-firebase/issues/4126)) ([2cbab5c](https://github.com/invertase/react-native-firebase/commit/2cbab5cf91f4e8542c30a237637d071c14bbcde5))
1021
-
1022
- ## [8.3.2](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.3.1...@react-native-firebase/crashlytics@8.3.2) (2020-08-20)
1023
-
1024
- ### Bug Fixes
1025
-
1026
- - **ios, crashlytics:** use new recommended manual crash style ([#4111](https://github.com/invertase/react-native-firebase/issues/4111)) ([6b136c3](https://github.com/invertase/react-native-firebase/commit/6b136c3972eb25ad37b4d6230e1d6e139c094f86))
1027
-
1028
- ## [8.3.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.3.0...@react-native-firebase/crashlytics@8.3.1) (2020-08-15)
1029
-
1030
- **Note:** Version bump only for package @react-native-firebase/crashlytics
1031
-
1032
- # [8.3.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.2.1...@react-native-firebase/crashlytics@8.3.0) (2020-08-03)
1033
-
1034
- ### Features
1035
-
1036
- - **crashlytics:** add new APIs `checkForUnsentReports`, `deleteUnsentReports`,`didCrashOnPreviousExecution`,`sendUnsentReports` ([#4009](https://github.com/invertase/react-native-firebase/issues/4009)) ([52eeed3](https://github.com/invertase/react-native-firebase/commit/52eeed31b3436b0f90767298dcc515b0897ba942))
1037
-
1038
- ## [8.2.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.2.0...@react-native-firebase/crashlytics@8.2.1) (2020-08-03)
1039
-
1040
- **Note:** Version bump only for package @react-native-firebase/crashlytics
1041
-
1042
- # [8.2.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.1.2...@react-native-firebase/crashlytics@8.2.0) (2020-08-03)
1043
-
1044
- ### Features
1045
-
1046
- - 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))
1047
-
1048
- ## [8.1.2](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.1.1...@react-native-firebase/crashlytics@8.1.2) (2020-07-09)
1049
-
1050
- **Note:** Version bump only for package @react-native-firebase/crashlytics
1051
-
1052
- ## [8.1.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.1.0...@react-native-firebase/crashlytics@8.1.1) (2020-07-07)
1053
-
1054
- **Note:** Version bump only for package @react-native-firebase/crashlytics
1055
-
1056
- # [8.1.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.0.3...@react-native-firebase/crashlytics@8.1.0) (2020-07-07)
1057
-
1058
- ### Features
1059
-
1060
- - **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))
1061
-
1062
- ## [8.0.3](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.0.2...@react-native-firebase/crashlytics@8.0.3) (2020-07-05)
1063
-
1064
- **Note:** Version bump only for package @react-native-firebase/crashlytics
1065
-
1066
- ## [8.0.2](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.0.1...@react-native-firebase/crashlytics@8.0.2) (2020-07-05)
1067
-
1068
- **Note:** Version bump only for package @react-native-firebase/crashlytics
1069
-
1070
- ## [8.0.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@8.0.0...@react-native-firebase/crashlytics@8.0.1) (2020-06-30)
1071
-
1072
- **Note:** Version bump only for package @react-native-firebase/crashlytics
1073
-
1074
- # [8.0.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@7.1.7...@react-native-firebase/crashlytics@8.0.0) (2020-06-30)
1075
-
1076
- - feat(crashlytics)!: upgrade to new Firebase Crashlytics SDK (#3580) ([cad58e1](https://github.com/invertase/react-native-firebase/commit/cad58e178b43dea461e17fa4a0a3fecd507ba68a)), closes [#3580](https://github.com/invertase/react-native-firebase/issues/3580)
1077
-
1078
- ### BREAKING CHANGES
1079
-
1080
- - This is a breaking change to remove the use of the Fabric SDKs.
1081
-
1082
- ## [7.1.7](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@7.1.6...@react-native-firebase/crashlytics@7.1.7) (2020-06-26)
1083
-
1084
- **Note:** Version bump only for package @react-native-firebase/crashlytics
1085
-
1086
- ## [7.1.6](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@7.1.5...@react-native-firebase/crashlytics@7.1.6) (2020-06-22)
1087
-
1088
- **Note:** Version bump only for package @react-native-firebase/crashlytics
1089
-
1090
- ## [7.1.5](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@7.1.4...@react-native-firebase/crashlytics@7.1.5) (2020-06-10)
1091
-
1092
- **Note:** Version bump only for package @react-native-firebase/crashlytics
1093
-
1094
- ## [7.1.4](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@7.1.3...@react-native-firebase/crashlytics@7.1.4) (2020-06-03)
1095
-
1096
- **Note:** Version bump only for package @react-native-firebase/crashlytics
1097
-
1098
- ## [7.1.3](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@7.1.2...@react-native-firebase/crashlytics@7.1.3) (2020-05-29)
1099
-
1100
- **Note:** Version bump only for package @react-native-firebase/crashlytics
1101
-
1102
- ## [7.1.2](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@7.1.1...@react-native-firebase/crashlytics@7.1.2) (2020-05-29)
1103
-
1104
- **Note:** Version bump only for package @react-native-firebase/crashlytics
1105
-
1106
- ## [7.1.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@7.1.0...@react-native-firebase/crashlytics@7.1.1) (2020-05-29)
1107
-
1108
- ### Bug Fixes
1109
-
1110
- - **android:** remove deprecated usages of `APPLICATION_ID` ([#3711](https://github.com/invertase/react-native-firebase/issues/3711)) ([984d3fc](https://github.com/invertase/react-native-firebase/commit/984d3fc1668221c166ab459d67d1c646d73d165b))
1111
-
1112
- # [7.1.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@7.0.1...@react-native-firebase/crashlytics@7.1.0) (2020-05-22)
1113
-
1114
- ### Features
1115
-
1116
- - 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))
1117
-
1118
- ## [7.0.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@7.0.0...@react-native-firebase/crashlytics@7.0.1) (2020-05-13)
1119
-
1120
- **Note:** Version bump only for package @react-native-firebase/crashlytics
1121
-
1122
- ## [7.0.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/crashlytics@7.0.0...@react-native-firebase/crashlytics@7.0.0) (2020-05-13)
1123
-
1124
- - 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)
1125
-
1126
- ### Features
1127
-
1128
- - **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))
1129
-
1130
- ### BREAKING CHANGES
1131
-
1132
- - breaking change to mark new internal versioning requirements.