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