@react-native-firebase/app 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 (672) hide show
  1. package/dist/commonjs/FirebaseApp.js +85 -0
  2. package/dist/commonjs/FirebaseApp.js.map +1 -0
  3. package/dist/commonjs/common/Base64.js +106 -0
  4. package/dist/commonjs/common/Base64.js.map +1 -0
  5. package/dist/commonjs/common/MutatableParams.js +50 -0
  6. package/dist/commonjs/common/MutatableParams.js.map +1 -0
  7. package/dist/commonjs/common/ReferenceBase.js +49 -0
  8. package/dist/commonjs/common/ReferenceBase.js.map +1 -0
  9. package/dist/commonjs/common/deeps.js +82 -0
  10. package/dist/commonjs/common/deeps.js.map +1 -0
  11. package/dist/commonjs/common/id.js +88 -0
  12. package/dist/commonjs/common/id.js.map +1 -0
  13. package/dist/commonjs/common/index.js +799 -0
  14. package/dist/commonjs/common/index.js.map +1 -0
  15. package/dist/commonjs/common/path.js +133 -0
  16. package/dist/commonjs/common/path.js.map +1 -0
  17. package/dist/commonjs/common/promise.js +65 -0
  18. package/dist/commonjs/common/promise.js.map +1 -0
  19. package/dist/commonjs/common/serialize.js +48 -0
  20. package/dist/commonjs/common/serialize.js.map +1 -0
  21. package/dist/commonjs/common/unitTestUtils.js +54 -0
  22. package/dist/commonjs/common/unitTestUtils.js.map +1 -0
  23. package/dist/commonjs/common/validate.js +236 -0
  24. package/dist/commonjs/common/validate.js.map +1 -0
  25. package/dist/commonjs/index.js +42 -0
  26. package/dist/commonjs/index.js.map +1 -0
  27. package/dist/commonjs/internal/FirebaseModule.js +63 -0
  28. package/dist/commonjs/internal/FirebaseModule.js.map +1 -0
  29. package/dist/commonjs/internal/NativeFirebaseError.js +92 -0
  30. package/dist/commonjs/internal/NativeFirebaseError.js.map +1 -0
  31. package/dist/commonjs/internal/NativeModules.js +6 -0
  32. package/dist/commonjs/internal/NativeModules.js.map +1 -0
  33. package/dist/commonjs/internal/RNFBNativeEventEmitter.js +118 -0
  34. package/dist/commonjs/internal/RNFBNativeEventEmitter.js.map +1 -0
  35. package/dist/commonjs/internal/SharedEventEmitter.js +26 -0
  36. package/dist/commonjs/internal/SharedEventEmitter.js.map +1 -0
  37. package/dist/commonjs/internal/asyncStorage.js +83 -0
  38. package/dist/commonjs/internal/asyncStorage.js.map +1 -0
  39. package/dist/commonjs/internal/constants.js +27 -0
  40. package/dist/commonjs/internal/constants.js.map +1 -0
  41. package/dist/commonjs/internal/index.js +109 -0
  42. package/dist/commonjs/internal/index.js.map +1 -0
  43. package/dist/commonjs/internal/logger.js +256 -0
  44. package/dist/commonjs/internal/logger.js.map +1 -0
  45. package/dist/commonjs/internal/nativeModule.android.js +19 -0
  46. package/dist/commonjs/internal/nativeModule.android.js.map +1 -0
  47. package/dist/commonjs/internal/nativeModule.ios.js +19 -0
  48. package/dist/commonjs/internal/nativeModule.ios.js.map +1 -0
  49. package/dist/commonjs/internal/nativeModule.js +19 -0
  50. package/dist/commonjs/internal/nativeModule.js.map +1 -0
  51. package/dist/commonjs/internal/nativeModuleAndroidIos.js +51 -0
  52. package/dist/commonjs/internal/nativeModuleAndroidIos.js.map +1 -0
  53. package/dist/commonjs/internal/nativeModuleWeb.js +52 -0
  54. package/dist/commonjs/internal/nativeModuleWeb.js.map +1 -0
  55. package/dist/commonjs/internal/nullSerialization.js +162 -0
  56. package/dist/commonjs/internal/nullSerialization.js.map +1 -0
  57. package/dist/commonjs/internal/registry/app.js +238 -0
  58. package/dist/commonjs/internal/registry/app.js.map +1 -0
  59. package/dist/commonjs/internal/registry/namespace.js +269 -0
  60. package/dist/commonjs/internal/registry/namespace.js.map +1 -0
  61. package/dist/commonjs/internal/registry/nativeModule.js +224 -0
  62. package/dist/commonjs/internal/registry/nativeModule.js.map +1 -0
  63. package/dist/commonjs/internal/web/RNFBAppModule.js +273 -0
  64. package/dist/commonjs/internal/web/RNFBAppModule.js.map +1 -0
  65. package/dist/commonjs/internal/web/firebaseApp.js +17 -0
  66. package/dist/commonjs/internal/web/firebaseApp.js.map +1 -0
  67. package/dist/commonjs/internal/web/firebaseAppCheck.js +36 -0
  68. package/dist/commonjs/internal/web/firebaseAppCheck.js.map +1 -0
  69. package/dist/commonjs/internal/web/firebaseAuth.js +28 -0
  70. package/dist/commonjs/internal/web/firebaseAuth.js.map +1 -0
  71. package/dist/commonjs/internal/web/firebaseDatabase.js +28 -0
  72. package/dist/commonjs/internal/web/firebaseDatabase.js.map +1 -0
  73. package/dist/commonjs/internal/web/firebaseFirestore.js +28 -0
  74. package/dist/commonjs/internal/web/firebaseFirestore.js.map +1 -0
  75. package/dist/commonjs/internal/web/firebaseFunctions.js +28 -0
  76. package/dist/commonjs/internal/web/firebaseFunctions.js.map +1 -0
  77. package/dist/commonjs/internal/web/firebaseInstallations.js +36 -0
  78. package/dist/commonjs/internal/web/firebaseInstallations.js.map +1 -0
  79. package/dist/commonjs/internal/web/firebaseRemoteConfig.js +36 -0
  80. package/dist/commonjs/internal/web/firebaseRemoteConfig.js.map +1 -0
  81. package/dist/commonjs/internal/web/firebaseStorage.js +28 -0
  82. package/dist/commonjs/internal/web/firebaseStorage.js.map +1 -0
  83. package/dist/commonjs/internal/web/memidb/FDBCursor.js +479 -0
  84. package/dist/commonjs/internal/web/memidb/FDBCursor.js.map +1 -0
  85. package/dist/commonjs/internal/web/memidb/FDBCursorWithValue.js +19 -0
  86. package/dist/commonjs/internal/web/memidb/FDBCursorWithValue.js.map +1 -0
  87. package/dist/commonjs/internal/web/memidb/FDBDatabase.js +163 -0
  88. package/dist/commonjs/internal/web/memidb/FDBDatabase.js.map +1 -0
  89. package/dist/commonjs/internal/web/memidb/FDBFactory.js +264 -0
  90. package/dist/commonjs/internal/web/memidb/FDBFactory.js.map +1 -0
  91. package/dist/commonjs/internal/web/memidb/FDBIndex.js +191 -0
  92. package/dist/commonjs/internal/web/memidb/FDBIndex.js.map +1 -0
  93. package/dist/commonjs/internal/web/memidb/FDBKeyRange.js +78 -0
  94. package/dist/commonjs/internal/web/memidb/FDBKeyRange.js.map +1 -0
  95. package/dist/commonjs/internal/web/memidb/FDBObjectStore.js +383 -0
  96. package/dist/commonjs/internal/web/memidb/FDBObjectStore.js.map +1 -0
  97. package/dist/commonjs/internal/web/memidb/FDBOpenDBRequest.js +17 -0
  98. package/dist/commonjs/internal/web/memidb/FDBOpenDBRequest.js.map +1 -0
  99. package/dist/commonjs/internal/web/memidb/FDBRequest.js +41 -0
  100. package/dist/commonjs/internal/web/memidb/FDBRequest.js.map +1 -0
  101. package/dist/commonjs/internal/web/memidb/FDBTransaction.js +221 -0
  102. package/dist/commonjs/internal/web/memidb/FDBTransaction.js.map +1 -0
  103. package/dist/commonjs/internal/web/memidb/FDBVersionChangeEvent.js +20 -0
  104. package/dist/commonjs/internal/web/memidb/FDBVersionChangeEvent.js.map +1 -0
  105. package/dist/commonjs/internal/web/memidb/LICENSE +208 -0
  106. package/dist/commonjs/internal/web/memidb/index.js +45 -0
  107. package/dist/commonjs/internal/web/memidb/index.js.map +1 -0
  108. package/dist/commonjs/internal/web/memidb/lib/Database.js +38 -0
  109. package/dist/commonjs/internal/web/memidb/lib/Database.js.map +1 -0
  110. package/dist/commonjs/internal/web/memidb/lib/FakeDOMStringList.js +78 -0
  111. package/dist/commonjs/internal/web/memidb/lib/FakeDOMStringList.js.map +1 -0
  112. package/dist/commonjs/internal/web/memidb/lib/FakeEvent.js +45 -0
  113. package/dist/commonjs/internal/web/memidb/lib/FakeEvent.js.map +1 -0
  114. package/dist/commonjs/internal/web/memidb/lib/FakeEventTarget.js +111 -0
  115. package/dist/commonjs/internal/web/memidb/lib/FakeEventTarget.js.map +1 -0
  116. package/dist/commonjs/internal/web/memidb/lib/Index.js +164 -0
  117. package/dist/commonjs/internal/web/memidb/lib/Index.js.map +1 -0
  118. package/dist/commonjs/internal/web/memidb/lib/KeyGenerator.js +29 -0
  119. package/dist/commonjs/internal/web/memidb/lib/KeyGenerator.js.map +1 -0
  120. package/dist/commonjs/internal/web/memidb/lib/ObjectStore.js +180 -0
  121. package/dist/commonjs/internal/web/memidb/lib/ObjectStore.js.map +1 -0
  122. package/dist/commonjs/internal/web/memidb/lib/RecordStore.js +141 -0
  123. package/dist/commonjs/internal/web/memidb/lib/RecordStore.js.map +1 -0
  124. package/dist/commonjs/internal/web/memidb/lib/binarySearch.js +86 -0
  125. package/dist/commonjs/internal/web/memidb/lib/binarySearch.js.map +1 -0
  126. package/dist/commonjs/internal/web/memidb/lib/canInjectKey.js +30 -0
  127. package/dist/commonjs/internal/web/memidb/lib/canInjectKey.js.map +1 -0
  128. package/dist/commonjs/internal/web/memidb/lib/cmp.js +85 -0
  129. package/dist/commonjs/internal/web/memidb/lib/cmp.js.map +1 -0
  130. package/dist/commonjs/internal/web/memidb/lib/enforceRange.js +20 -0
  131. package/dist/commonjs/internal/web/memidb/lib/enforceRange.js.map +1 -0
  132. package/dist/commonjs/internal/web/memidb/lib/errors.js +95 -0
  133. package/dist/commonjs/internal/web/memidb/lib/errors.js.map +1 -0
  134. package/dist/commonjs/internal/web/memidb/lib/extractKey.js +46 -0
  135. package/dist/commonjs/internal/web/memidb/lib/extractKey.js.map +1 -0
  136. package/dist/commonjs/internal/web/memidb/lib/scheduling.js +37 -0
  137. package/dist/commonjs/internal/web/memidb/lib/scheduling.js.map +1 -0
  138. package/dist/commonjs/internal/web/memidb/lib/types.js +6 -0
  139. package/dist/commonjs/internal/web/memidb/lib/types.js.map +1 -0
  140. package/dist/commonjs/internal/web/memidb/lib/validateKeyPath.js +51 -0
  141. package/dist/commonjs/internal/web/memidb/lib/validateKeyPath.js.map +1 -0
  142. package/dist/commonjs/internal/web/memidb/lib/valueToKey.js +62 -0
  143. package/dist/commonjs/internal/web/memidb/lib/valueToKey.js.map +1 -0
  144. package/dist/commonjs/internal/web/memidb/lib/valueToKeyRange.js +26 -0
  145. package/dist/commonjs/internal/web/memidb/lib/valueToKeyRange.js.map +1 -0
  146. package/dist/commonjs/internal/web/structuredClone/index.js +239 -0
  147. package/dist/commonjs/internal/web/structuredClone/index.js.map +1 -0
  148. package/dist/commonjs/internal/web/utils.js +59 -0
  149. package/dist/commonjs/internal/web/utils.js.map +1 -0
  150. package/dist/commonjs/modular.js +190 -0
  151. package/dist/commonjs/modular.js.map +1 -0
  152. package/{android/src/reactnative/java/io/invertase/firebase/app/ReactNativeFirebaseAppRegistrar.java → dist/commonjs/namespaced.js} +17 -17
  153. package/dist/commonjs/namespaced.js.map +1 -0
  154. package/dist/commonjs/package.json +1 -0
  155. package/dist/commonjs/types/app.js +139 -0
  156. package/dist/commonjs/types/app.js.map +1 -0
  157. package/dist/commonjs/types/internal.js +6 -0
  158. package/dist/commonjs/types/internal.js.map +1 -0
  159. package/dist/commonjs/utils/UtilsStatics.js +59 -0
  160. package/dist/commonjs/utils/UtilsStatics.js.map +1 -0
  161. package/dist/commonjs/utils/index.js +94 -0
  162. package/dist/commonjs/utils/index.js.map +1 -0
  163. package/dist/commonjs/version.js +9 -0
  164. package/dist/commonjs/version.js.map +1 -0
  165. package/{lib → dist/module}/FirebaseApp.js +14 -14
  166. package/dist/module/FirebaseApp.js.map +1 -0
  167. package/dist/module/common/Base64.js +100 -0
  168. package/dist/module/common/Base64.js.map +1 -0
  169. package/{lib → dist/module}/common/MutatableParams.js +4 -6
  170. package/dist/module/common/MutatableParams.js.map +1 -0
  171. package/{lib → dist/module}/common/ReferenceBase.js +3 -2
  172. package/dist/module/common/ReferenceBase.js.map +1 -0
  173. package/{lib → dist/module}/common/deeps.js +5 -9
  174. package/dist/module/common/deeps.js.map +1 -0
  175. package/{lib → dist/module}/common/id.js +20 -11
  176. package/dist/module/common/id.js.map +1 -0
  177. package/dist/module/common/index.js +701 -0
  178. package/dist/module/common/index.js.map +1 -0
  179. package/{lib → dist/module}/common/path.js +4 -8
  180. package/dist/module/common/path.js.map +1 -0
  181. package/{lib → dist/module}/common/promise.js +21 -23
  182. package/dist/module/common/promise.js.map +1 -0
  183. package/dist/module/common/serialize.js +43 -0
  184. package/dist/module/common/serialize.js.map +1 -0
  185. package/dist/module/common/unitTestUtils.js +48 -0
  186. package/dist/module/common/unitTestUtils.js.map +1 -0
  187. package/{lib → dist/module}/common/validate.js +20 -16
  188. package/dist/module/common/validate.js.map +1 -0
  189. package/{ios/RNFBApp/RNFBVersion.m → dist/module/index.js} +6 -5
  190. package/dist/module/index.js.map +1 -0
  191. package/{lib → dist/module}/internal/FirebaseModule.js +6 -11
  192. package/dist/module/internal/FirebaseModule.js.map +1 -0
  193. package/{lib → dist/module}/internal/NativeFirebaseError.js +19 -24
  194. package/dist/module/internal/NativeFirebaseError.js.map +1 -0
  195. package/dist/module/internal/NativeModules.js +4 -0
  196. package/dist/module/internal/NativeModules.js.map +1 -0
  197. package/{lib → dist/module}/internal/RNFBNativeEventEmitter.js +30 -21
  198. package/dist/module/internal/RNFBNativeEventEmitter.js.map +1 -0
  199. package/{android/src/reactnative/java/io/invertase/firebase/app/ReactNativeFirebaseVersion.java → dist/module/internal/SharedEventEmitter.js} +5 -5
  200. package/dist/module/internal/SharedEventEmitter.js.map +1 -0
  201. package/dist/module/internal/asyncStorage.js +73 -0
  202. package/dist/module/internal/asyncStorage.js.map +1 -0
  203. package/dist/module/internal/constants.js +23 -0
  204. package/dist/module/internal/constants.js.map +1 -0
  205. package/dist/module/internal/index.js +30 -0
  206. package/dist/module/internal/index.js.map +1 -0
  207. package/{lib → dist/module}/internal/logger.js +65 -55
  208. package/dist/module/internal/logger.js.map +1 -0
  209. package/dist/module/internal/nativeModule.android.js +5 -0
  210. package/dist/module/internal/nativeModule.android.js.map +1 -0
  211. package/dist/module/internal/nativeModule.ios.js +5 -0
  212. package/dist/module/internal/nativeModule.ios.js.map +1 -0
  213. package/dist/module/internal/nativeModule.js +7 -0
  214. package/dist/module/internal/nativeModule.js.map +1 -0
  215. package/dist/module/internal/nativeModuleAndroidIos.js +46 -0
  216. package/dist/module/internal/nativeModuleAndroidIos.js.map +1 -0
  217. package/dist/module/internal/nativeModuleWeb.js +45 -0
  218. package/dist/module/internal/nativeModuleWeb.js.map +1 -0
  219. package/dist/module/internal/nullSerialization.js +158 -0
  220. package/dist/module/internal/nullSerialization.js.map +1 -0
  221. package/{lib → dist/module}/internal/registry/app.js +41 -79
  222. package/dist/module/internal/registry/app.js.map +1 -0
  223. package/dist/module/internal/registry/namespace.js +262 -0
  224. package/dist/module/internal/registry/namespace.js.map +1 -0
  225. package/{lib → dist/module}/internal/registry/nativeModule.js +46 -62
  226. package/dist/module/internal/registry/nativeModule.js.map +1 -0
  227. package/{lib → dist/module}/internal/web/RNFBAppModule.js +76 -67
  228. package/dist/module/internal/web/RNFBAppModule.js.map +1 -0
  229. package/{android/src/reactnative/java/io/invertase/firebase/interfaces/NativeEvent.java → dist/module/internal/web/firebaseApp.js} +5 -10
  230. package/dist/module/internal/web/firebaseApp.js.map +1 -0
  231. package/{android/src/reactnative/java/io/invertase/firebase/interfaces/NativeError.java → dist/module/internal/web/firebaseAppCheck.js} +8 -14
  232. package/dist/module/internal/web/firebaseAppCheck.js.map +1 -0
  233. package/dist/module/internal/web/firebaseAuth.js +24 -0
  234. package/dist/module/internal/web/firebaseAuth.js.map +1 -0
  235. package/dist/module/internal/web/firebaseDatabase.js +24 -0
  236. package/dist/module/internal/web/firebaseDatabase.js.map +1 -0
  237. package/dist/module/internal/web/firebaseFirestore.js +24 -0
  238. package/dist/module/internal/web/firebaseFirestore.js.map +1 -0
  239. package/dist/module/internal/web/firebaseFunctions.js +24 -0
  240. package/dist/module/internal/web/firebaseFunctions.js.map +1 -0
  241. package/dist/module/internal/web/firebaseInstallations.js +26 -0
  242. package/dist/module/internal/web/firebaseInstallations.js.map +1 -0
  243. package/{android/src/reactnative/java/io/invertase/firebase/interfaces/ContextProvider.java → dist/module/internal/web/firebaseRemoteConfig.js} +8 -12
  244. package/dist/module/internal/web/firebaseRemoteConfig.js.map +1 -0
  245. package/dist/module/internal/web/firebaseStorage.js +24 -0
  246. package/dist/module/internal/web/firebaseStorage.js.map +1 -0
  247. package/dist/module/internal/web/memidb/FDBCursor.js +474 -0
  248. package/dist/module/internal/web/memidb/FDBCursor.js.map +1 -0
  249. package/dist/module/internal/web/memidb/FDBCursorWithValue.js +14 -0
  250. package/dist/module/internal/web/memidb/FDBCursorWithValue.js.map +1 -0
  251. package/dist/module/internal/web/memidb/FDBDatabase.js +158 -0
  252. package/dist/module/internal/web/memidb/FDBDatabase.js.map +1 -0
  253. package/dist/module/internal/web/memidb/FDBFactory.js +259 -0
  254. package/dist/module/internal/web/memidb/FDBFactory.js.map +1 -0
  255. package/dist/module/internal/web/memidb/FDBIndex.js +186 -0
  256. package/dist/module/internal/web/memidb/FDBIndex.js.map +1 -0
  257. package/dist/module/internal/web/memidb/FDBKeyRange.js +74 -0
  258. package/dist/module/internal/web/memidb/FDBKeyRange.js.map +1 -0
  259. package/dist/module/internal/web/memidb/FDBObjectStore.js +378 -0
  260. package/dist/module/internal/web/memidb/FDBObjectStore.js.map +1 -0
  261. package/dist/module/internal/web/memidb/FDBOpenDBRequest.js +12 -0
  262. package/dist/module/internal/web/memidb/FDBOpenDBRequest.js.map +1 -0
  263. package/dist/module/internal/web/memidb/FDBRequest.js +36 -0
  264. package/dist/module/internal/web/memidb/FDBRequest.js.map +1 -0
  265. package/dist/module/internal/web/memidb/FDBTransaction.js +216 -0
  266. package/dist/module/internal/web/memidb/FDBTransaction.js.map +1 -0
  267. package/dist/module/internal/web/memidb/FDBVersionChangeEvent.js +15 -0
  268. package/dist/module/internal/web/memidb/FDBVersionChangeEvent.js.map +1 -0
  269. package/dist/module/internal/web/memidb/LICENSE +208 -0
  270. package/dist/module/internal/web/memidb/index.js +41 -0
  271. package/dist/module/internal/web/memidb/index.js.map +1 -0
  272. package/dist/module/internal/web/memidb/lib/Database.js +35 -0
  273. package/dist/module/internal/web/memidb/lib/Database.js.map +1 -0
  274. package/dist/module/internal/web/memidb/lib/FakeDOMStringList.js +75 -0
  275. package/dist/module/internal/web/memidb/lib/FakeDOMStringList.js.map +1 -0
  276. package/dist/module/internal/web/memidb/lib/FakeEvent.js +41 -0
  277. package/dist/module/internal/web/memidb/lib/FakeEvent.js.map +1 -0
  278. package/dist/module/internal/web/memidb/lib/FakeEventTarget.js +107 -0
  279. package/dist/module/internal/web/memidb/lib/FakeEventTarget.js.map +1 -0
  280. package/dist/module/internal/web/memidb/lib/Index.js +160 -0
  281. package/dist/module/internal/web/memidb/lib/Index.js.map +1 -0
  282. package/dist/module/internal/web/memidb/lib/KeyGenerator.js +25 -0
  283. package/dist/module/internal/web/memidb/lib/KeyGenerator.js.map +1 -0
  284. package/dist/module/internal/web/memidb/lib/ObjectStore.js +175 -0
  285. package/dist/module/internal/web/memidb/lib/ObjectStore.js.map +1 -0
  286. package/dist/module/internal/web/memidb/lib/RecordStore.js +136 -0
  287. package/dist/module/internal/web/memidb/lib/RecordStore.js.map +1 -0
  288. package/dist/module/internal/web/memidb/lib/binarySearch.js +77 -0
  289. package/dist/module/internal/web/memidb/lib/binarySearch.js.map +1 -0
  290. package/dist/module/internal/web/memidb/lib/canInjectKey.js +26 -0
  291. package/dist/module/internal/web/memidb/lib/canInjectKey.js.map +1 -0
  292. package/dist/module/internal/web/memidb/lib/cmp.js +80 -0
  293. package/dist/module/internal/web/memidb/lib/cmp.js.map +1 -0
  294. package/dist/module/internal/web/memidb/lib/enforceRange.js +16 -0
  295. package/dist/module/internal/web/memidb/lib/enforceRange.js.map +1 -0
  296. package/dist/module/internal/web/memidb/lib/errors.js +81 -0
  297. package/dist/module/internal/web/memidb/lib/errors.js.map +1 -0
  298. package/dist/module/internal/web/memidb/lib/extractKey.js +42 -0
  299. package/dist/module/internal/web/memidb/lib/extractKey.js.map +1 -0
  300. package/dist/module/internal/web/memidb/lib/scheduling.js +32 -0
  301. package/dist/module/internal/web/memidb/lib/scheduling.js.map +1 -0
  302. package/dist/module/internal/web/memidb/lib/types.js +4 -0
  303. package/dist/module/internal/web/memidb/lib/types.js.map +1 -0
  304. package/dist/module/internal/web/memidb/lib/validateKeyPath.js +47 -0
  305. package/dist/module/internal/web/memidb/lib/validateKeyPath.js.map +1 -0
  306. package/dist/module/internal/web/memidb/lib/valueToKey.js +58 -0
  307. package/dist/module/internal/web/memidb/lib/valueToKey.js.map +1 -0
  308. package/dist/module/internal/web/memidb/lib/valueToKeyRange.js +22 -0
  309. package/dist/module/internal/web/memidb/lib/valueToKeyRange.js.map +1 -0
  310. package/dist/module/internal/web/structuredClone/index.js +235 -0
  311. package/dist/module/internal/web/structuredClone/index.js.map +1 -0
  312. package/{lib → dist/module}/internal/web/utils.js +24 -5
  313. package/dist/module/internal/web/utils.js.map +1 -0
  314. package/dist/module/modular.js +172 -0
  315. package/dist/module/modular.js.map +1 -0
  316. package/dist/module/namespaced.js +25 -0
  317. package/dist/module/namespaced.js.map +1 -0
  318. package/dist/module/package.json +1 -0
  319. package/dist/module/types/app.js +135 -0
  320. package/dist/module/types/app.js.map +1 -0
  321. package/dist/module/types/internal.js +4 -0
  322. package/dist/module/types/internal.js.map +1 -0
  323. package/dist/module/utils/UtilsStatics.js +55 -0
  324. package/dist/module/utils/UtilsStatics.js.map +1 -0
  325. package/{lib → dist/module}/utils/index.js +13 -15
  326. package/dist/module/utils/index.js.map +1 -0
  327. package/dist/module/version.js +5 -0
  328. package/dist/module/version.js.map +1 -0
  329. package/dist/typescript/commonjs/lib/FirebaseApp.d.ts +21 -0
  330. package/dist/typescript/commonjs/lib/FirebaseApp.d.ts.map +1 -0
  331. package/dist/typescript/commonjs/lib/common/Base64.d.ts +23 -0
  332. package/dist/typescript/commonjs/lib/common/Base64.d.ts.map +1 -0
  333. package/dist/typescript/commonjs/lib/common/MutatableParams.d.ts +10 -0
  334. package/dist/typescript/commonjs/lib/common/MutatableParams.d.ts.map +1 -0
  335. package/dist/typescript/commonjs/lib/common/ReferenceBase.d.ts +12 -0
  336. package/dist/typescript/commonjs/lib/common/ReferenceBase.d.ts.map +1 -0
  337. package/dist/typescript/commonjs/lib/common/deeps.d.ts +19 -0
  338. package/dist/typescript/commonjs/lib/common/deeps.d.ts.map +1 -0
  339. package/dist/typescript/commonjs/lib/common/id.d.ts +12 -0
  340. package/dist/typescript/commonjs/lib/common/id.d.ts.map +1 -0
  341. package/dist/typescript/commonjs/lib/common/index.d.ts +33 -0
  342. package/dist/typescript/commonjs/lib/common/index.d.ts.map +1 -0
  343. package/dist/typescript/commonjs/lib/common/path.d.ts +51 -0
  344. package/dist/typescript/commonjs/lib/common/path.d.ts.map +1 -0
  345. package/dist/typescript/commonjs/lib/common/promise.d.ts +12 -0
  346. package/dist/typescript/commonjs/lib/common/promise.d.ts.map +1 -0
  347. package/dist/typescript/commonjs/lib/common/serialize.d.ts +4 -0
  348. package/dist/typescript/commonjs/lib/common/serialize.d.ts.map +1 -0
  349. package/dist/typescript/commonjs/lib/common/unitTestUtils.d.ts +4 -0
  350. package/dist/typescript/commonjs/lib/common/unitTestUtils.d.ts.map +1 -0
  351. package/dist/typescript/commonjs/lib/common/validate.d.ts +100 -0
  352. package/dist/typescript/commonjs/lib/common/validate.d.ts.map +1 -0
  353. package/dist/typescript/commonjs/lib/index.d.ts +4 -0
  354. package/dist/typescript/commonjs/lib/index.d.ts.map +1 -0
  355. package/dist/typescript/commonjs/lib/internal/FirebaseModule.d.ts +17 -0
  356. package/dist/typescript/commonjs/lib/internal/FirebaseModule.d.ts.map +1 -0
  357. package/dist/typescript/commonjs/lib/internal/NativeFirebaseError.d.ts +20 -0
  358. package/dist/typescript/commonjs/lib/internal/NativeFirebaseError.d.ts.map +1 -0
  359. package/dist/typescript/commonjs/lib/internal/NativeModules.d.ts +83 -0
  360. package/dist/typescript/commonjs/lib/internal/NativeModules.d.ts.map +1 -0
  361. package/dist/typescript/commonjs/lib/internal/RNFBNativeEventEmitter.d.ts +13 -0
  362. package/dist/typescript/commonjs/lib/internal/RNFBNativeEventEmitter.d.ts.map +1 -0
  363. package/dist/typescript/commonjs/lib/internal/SharedEventEmitter.d.ts +4 -0
  364. package/dist/typescript/commonjs/lib/internal/SharedEventEmitter.d.ts.map +1 -0
  365. package/dist/typescript/commonjs/lib/internal/asyncStorage.d.ts +10 -0
  366. package/dist/typescript/commonjs/lib/internal/asyncStorage.d.ts.map +1 -0
  367. package/dist/typescript/commonjs/lib/internal/constants.d.ts +5 -0
  368. package/dist/typescript/commonjs/lib/internal/constants.d.ts.map +1 -0
  369. package/dist/typescript/commonjs/lib/internal/index.d.ts +12 -0
  370. package/dist/typescript/commonjs/lib/internal/index.d.ts.map +1 -0
  371. package/dist/typescript/commonjs/lib/internal/logger.d.ts +83 -0
  372. package/dist/typescript/commonjs/lib/internal/logger.d.ts.map +1 -0
  373. package/dist/typescript/commonjs/lib/internal/nativeModule.android.d.ts +3 -0
  374. package/dist/typescript/commonjs/lib/internal/nativeModule.android.d.ts.map +1 -0
  375. package/dist/typescript/commonjs/lib/internal/nativeModule.d.ts +3 -0
  376. package/dist/typescript/commonjs/lib/internal/nativeModule.d.ts.map +1 -0
  377. package/dist/typescript/commonjs/lib/internal/nativeModule.ios.d.ts +3 -0
  378. package/dist/typescript/commonjs/lib/internal/nativeModule.ios.d.ts.map +1 -0
  379. package/dist/typescript/commonjs/lib/internal/nativeModuleAndroidIos.d.ts +10 -0
  380. package/dist/typescript/commonjs/lib/internal/nativeModuleAndroidIos.d.ts.map +1 -0
  381. package/dist/typescript/commonjs/lib/internal/nativeModuleWeb.d.ts +3 -0
  382. package/dist/typescript/commonjs/lib/internal/nativeModuleWeb.d.ts.map +1 -0
  383. package/dist/typescript/commonjs/lib/internal/nullSerialization.d.ts +16 -0
  384. package/dist/typescript/commonjs/lib/internal/nullSerialization.d.ts.map +1 -0
  385. package/dist/typescript/commonjs/lib/internal/registry/app.d.ts +47 -0
  386. package/dist/typescript/commonjs/lib/internal/registry/app.d.ts.map +1 -0
  387. package/dist/typescript/commonjs/lib/internal/registry/namespace.d.ts +26 -0
  388. package/dist/typescript/commonjs/lib/internal/registry/namespace.d.ts.map +1 -0
  389. package/dist/typescript/commonjs/lib/internal/registry/nativeModule.d.ts +17 -0
  390. package/dist/typescript/commonjs/lib/internal/registry/nativeModule.d.ts.map +1 -0
  391. package/dist/typescript/commonjs/lib/internal/web/RNFBAppModule.d.ts +139 -0
  392. package/dist/typescript/commonjs/lib/internal/web/RNFBAppModule.d.ts.map +1 -0
  393. package/dist/typescript/commonjs/lib/internal/web/firebaseApp.d.ts +2 -0
  394. package/dist/typescript/commonjs/lib/internal/web/firebaseApp.d.ts.map +1 -0
  395. package/{lib/internal/web/firebaseAppCheck.js → dist/typescript/commonjs/lib/internal/web/firebaseAppCheck.d.ts} +1 -2
  396. package/dist/typescript/commonjs/lib/internal/web/firebaseAppCheck.d.ts.map +1 -0
  397. package/dist/typescript/commonjs/lib/internal/web/firebaseAuth.d.ts +3 -0
  398. package/dist/typescript/commonjs/lib/internal/web/firebaseAuth.d.ts.map +1 -0
  399. package/dist/typescript/commonjs/lib/internal/web/firebaseDatabase.d.ts +3 -0
  400. package/dist/typescript/commonjs/lib/internal/web/firebaseDatabase.d.ts.map +1 -0
  401. package/dist/typescript/commonjs/lib/internal/web/firebaseFirestore.d.ts +3 -0
  402. package/dist/typescript/commonjs/lib/internal/web/firebaseFirestore.d.ts.map +1 -0
  403. package/dist/typescript/commonjs/lib/internal/web/firebaseFunctions.d.ts +3 -0
  404. package/dist/typescript/commonjs/lib/internal/web/firebaseFunctions.d.ts.map +1 -0
  405. package/{lib/internal/web/firebaseInstallations.js → dist/typescript/commonjs/lib/internal/web/firebaseInstallations.d.ts} +1 -2
  406. package/dist/typescript/commonjs/lib/internal/web/firebaseInstallations.d.ts.map +1 -0
  407. package/{lib/internal/web/firebaseRemoteConfig.js → dist/typescript/commonjs/lib/internal/web/firebaseRemoteConfig.d.ts} +1 -2
  408. package/dist/typescript/commonjs/lib/internal/web/firebaseRemoteConfig.d.ts.map +1 -0
  409. package/dist/typescript/commonjs/lib/internal/web/firebaseStorage.d.ts +3 -0
  410. package/dist/typescript/commonjs/lib/internal/web/firebaseStorage.d.ts.map +1 -0
  411. package/dist/typescript/commonjs/lib/internal/web/utils.d.ts +13 -0
  412. package/dist/typescript/commonjs/lib/internal/web/utils.d.ts.map +1 -0
  413. package/dist/typescript/commonjs/lib/modular.d.ts +95 -0
  414. package/dist/typescript/commonjs/lib/modular.d.ts.map +1 -0
  415. package/dist/typescript/commonjs/lib/namespaced.d.ts +5 -0
  416. package/dist/typescript/commonjs/lib/namespaced.d.ts.map +1 -0
  417. package/dist/typescript/commonjs/lib/types/app.d.ts +561 -0
  418. package/dist/typescript/commonjs/lib/types/app.d.ts.map +1 -0
  419. package/dist/typescript/commonjs/lib/types/internal.d.ts +101 -0
  420. package/dist/typescript/commonjs/lib/types/internal.d.ts.map +1 -0
  421. package/dist/typescript/commonjs/lib/utils/UtilsStatics.d.ts +4 -0
  422. package/dist/typescript/commonjs/lib/utils/UtilsStatics.d.ts.map +1 -0
  423. package/dist/typescript/commonjs/lib/utils/index.d.ts +4 -0
  424. package/dist/typescript/commonjs/lib/utils/index.d.ts.map +1 -0
  425. package/dist/typescript/commonjs/lib/version.d.ts +2 -0
  426. package/dist/typescript/commonjs/lib/version.d.ts.map +1 -0
  427. package/dist/typescript/commonjs/package.json +1 -0
  428. package/dist/typescript/module/lib/FirebaseApp.d.ts +21 -0
  429. package/dist/typescript/module/lib/FirebaseApp.d.ts.map +1 -0
  430. package/dist/typescript/module/lib/common/Base64.d.ts +23 -0
  431. package/dist/typescript/module/lib/common/Base64.d.ts.map +1 -0
  432. package/dist/typescript/module/lib/common/MutatableParams.d.ts +10 -0
  433. package/dist/typescript/module/lib/common/MutatableParams.d.ts.map +1 -0
  434. package/dist/typescript/module/lib/common/ReferenceBase.d.ts +12 -0
  435. package/dist/typescript/module/lib/common/ReferenceBase.d.ts.map +1 -0
  436. package/dist/typescript/module/lib/common/deeps.d.ts +19 -0
  437. package/dist/typescript/module/lib/common/deeps.d.ts.map +1 -0
  438. package/dist/typescript/module/lib/common/id.d.ts +12 -0
  439. package/dist/typescript/module/lib/common/id.d.ts.map +1 -0
  440. package/dist/typescript/module/lib/common/index.d.ts +33 -0
  441. package/dist/typescript/module/lib/common/index.d.ts.map +1 -0
  442. package/dist/typescript/module/lib/common/path.d.ts +51 -0
  443. package/dist/typescript/module/lib/common/path.d.ts.map +1 -0
  444. package/dist/typescript/module/lib/common/promise.d.ts +12 -0
  445. package/dist/typescript/module/lib/common/promise.d.ts.map +1 -0
  446. package/dist/typescript/module/lib/common/serialize.d.ts +4 -0
  447. package/dist/typescript/module/lib/common/serialize.d.ts.map +1 -0
  448. package/dist/typescript/module/lib/common/unitTestUtils.d.ts +4 -0
  449. package/dist/typescript/module/lib/common/unitTestUtils.d.ts.map +1 -0
  450. package/dist/typescript/module/lib/common/validate.d.ts +100 -0
  451. package/dist/typescript/module/lib/common/validate.d.ts.map +1 -0
  452. package/dist/typescript/module/lib/index.d.ts +4 -0
  453. package/dist/typescript/module/lib/index.d.ts.map +1 -0
  454. package/dist/typescript/module/lib/internal/FirebaseModule.d.ts +17 -0
  455. package/dist/typescript/module/lib/internal/FirebaseModule.d.ts.map +1 -0
  456. package/dist/typescript/module/lib/internal/NativeFirebaseError.d.ts +20 -0
  457. package/dist/typescript/module/lib/internal/NativeFirebaseError.d.ts.map +1 -0
  458. package/dist/typescript/module/lib/internal/NativeModules.d.ts +83 -0
  459. package/dist/typescript/module/lib/internal/NativeModules.d.ts.map +1 -0
  460. package/dist/typescript/module/lib/internal/RNFBNativeEventEmitter.d.ts +13 -0
  461. package/dist/typescript/module/lib/internal/RNFBNativeEventEmitter.d.ts.map +1 -0
  462. package/dist/typescript/module/lib/internal/SharedEventEmitter.d.ts +4 -0
  463. package/dist/typescript/module/lib/internal/SharedEventEmitter.d.ts.map +1 -0
  464. package/dist/typescript/module/lib/internal/asyncStorage.d.ts +10 -0
  465. package/dist/typescript/module/lib/internal/asyncStorage.d.ts.map +1 -0
  466. package/dist/typescript/module/lib/internal/constants.d.ts +5 -0
  467. package/dist/typescript/module/lib/internal/constants.d.ts.map +1 -0
  468. package/dist/typescript/module/lib/internal/index.d.ts +12 -0
  469. package/dist/typescript/module/lib/internal/index.d.ts.map +1 -0
  470. package/dist/typescript/module/lib/internal/logger.d.ts +83 -0
  471. package/dist/typescript/module/lib/internal/logger.d.ts.map +1 -0
  472. package/dist/typescript/module/lib/internal/nativeModule.android.d.ts +3 -0
  473. package/dist/typescript/module/lib/internal/nativeModule.android.d.ts.map +1 -0
  474. package/dist/typescript/module/lib/internal/nativeModule.d.ts +3 -0
  475. package/dist/typescript/module/lib/internal/nativeModule.d.ts.map +1 -0
  476. package/dist/typescript/module/lib/internal/nativeModule.ios.d.ts +3 -0
  477. package/dist/typescript/module/lib/internal/nativeModule.ios.d.ts.map +1 -0
  478. package/dist/typescript/module/lib/internal/nativeModuleAndroidIos.d.ts +10 -0
  479. package/dist/typescript/module/lib/internal/nativeModuleAndroidIos.d.ts.map +1 -0
  480. package/dist/typescript/module/lib/internal/nativeModuleWeb.d.ts +3 -0
  481. package/dist/typescript/module/lib/internal/nativeModuleWeb.d.ts.map +1 -0
  482. package/dist/typescript/module/lib/internal/nullSerialization.d.ts +16 -0
  483. package/dist/typescript/module/lib/internal/nullSerialization.d.ts.map +1 -0
  484. package/dist/typescript/module/lib/internal/registry/app.d.ts +47 -0
  485. package/dist/typescript/module/lib/internal/registry/app.d.ts.map +1 -0
  486. package/dist/typescript/module/lib/internal/registry/namespace.d.ts +26 -0
  487. package/dist/typescript/module/lib/internal/registry/namespace.d.ts.map +1 -0
  488. package/dist/typescript/module/lib/internal/registry/nativeModule.d.ts +17 -0
  489. package/dist/typescript/module/lib/internal/registry/nativeModule.d.ts.map +1 -0
  490. package/dist/typescript/module/lib/internal/web/RNFBAppModule.d.ts +139 -0
  491. package/dist/typescript/module/lib/internal/web/RNFBAppModule.d.ts.map +1 -0
  492. package/dist/typescript/module/lib/internal/web/firebaseApp.d.ts +2 -0
  493. package/dist/typescript/module/lib/internal/web/firebaseApp.d.ts.map +1 -0
  494. package/dist/typescript/module/lib/internal/web/firebaseAppCheck.d.ts +5 -0
  495. package/dist/typescript/module/lib/internal/web/firebaseAppCheck.d.ts.map +1 -0
  496. package/dist/typescript/module/lib/internal/web/firebaseAuth.d.ts +3 -0
  497. package/dist/typescript/module/lib/internal/web/firebaseAuth.d.ts.map +1 -0
  498. package/dist/typescript/module/lib/internal/web/firebaseDatabase.d.ts +3 -0
  499. package/dist/typescript/module/lib/internal/web/firebaseDatabase.d.ts.map +1 -0
  500. package/dist/typescript/module/lib/internal/web/firebaseFirestore.d.ts +3 -0
  501. package/dist/typescript/module/lib/internal/web/firebaseFirestore.d.ts.map +1 -0
  502. package/dist/typescript/module/lib/internal/web/firebaseFunctions.d.ts +3 -0
  503. package/dist/typescript/module/lib/internal/web/firebaseFunctions.d.ts.map +1 -0
  504. package/dist/typescript/module/lib/internal/web/firebaseInstallations.d.ts +5 -0
  505. package/dist/typescript/module/lib/internal/web/firebaseInstallations.d.ts.map +1 -0
  506. package/dist/typescript/module/lib/internal/web/firebaseRemoteConfig.d.ts +5 -0
  507. package/dist/typescript/module/lib/internal/web/firebaseRemoteConfig.d.ts.map +1 -0
  508. package/dist/typescript/module/lib/internal/web/firebaseStorage.d.ts +3 -0
  509. package/dist/typescript/module/lib/internal/web/firebaseStorage.d.ts.map +1 -0
  510. package/dist/typescript/module/lib/internal/web/utils.d.ts +13 -0
  511. package/dist/typescript/module/lib/internal/web/utils.d.ts.map +1 -0
  512. package/dist/typescript/module/lib/modular.d.ts +95 -0
  513. package/dist/typescript/module/lib/modular.d.ts.map +1 -0
  514. package/dist/typescript/module/lib/namespaced.d.ts +5 -0
  515. package/dist/typescript/module/lib/namespaced.d.ts.map +1 -0
  516. package/dist/typescript/module/lib/types/app.d.ts +561 -0
  517. package/dist/typescript/module/lib/types/app.d.ts.map +1 -0
  518. package/dist/typescript/module/lib/types/internal.d.ts +101 -0
  519. package/dist/typescript/module/lib/types/internal.d.ts.map +1 -0
  520. package/dist/typescript/module/lib/utils/UtilsStatics.d.ts +4 -0
  521. package/dist/typescript/module/lib/utils/UtilsStatics.d.ts.map +1 -0
  522. package/dist/typescript/module/lib/utils/index.d.ts +4 -0
  523. package/dist/typescript/module/lib/utils/index.d.ts.map +1 -0
  524. package/dist/typescript/module/lib/version.d.ts +2 -0
  525. package/dist/typescript/module/lib/version.d.ts.map +1 -0
  526. package/dist/typescript/module/package.json +1 -0
  527. package/lib/FirebaseApp.ts +98 -0
  528. package/lib/common/{Base64.js → Base64.ts} +19 -11
  529. package/lib/common/MutatableParams.ts +50 -0
  530. package/lib/common/ReferenceBase.ts +45 -0
  531. package/lib/common/deeps.ts +92 -0
  532. package/lib/common/id.ts +91 -0
  533. package/lib/common/{index.js → index.ts} +60 -38
  534. package/lib/common/path.ts +124 -0
  535. package/lib/common/promise.ts +68 -0
  536. package/lib/common/{serialize.js → serialize.ts} +3 -2
  537. package/lib/common/unitTestUtils.ts +5 -4
  538. package/lib/common/validate.ts +232 -0
  539. package/lib/index.ts +27 -0
  540. package/lib/internal/FirebaseModule.ts +78 -0
  541. package/lib/internal/NativeFirebaseError.ts +111 -0
  542. package/lib/internal/NativeModules.ts +116 -0
  543. package/lib/internal/RNFBNativeEventEmitter.ts +139 -0
  544. package/lib/internal/asyncStorage.ts +76 -0
  545. package/lib/internal/{constants.js → constants.ts} +3 -1
  546. package/{ios/RNFBApp/RCTConvert+FIRApp.m → lib/internal/global.d.ts} +14 -12
  547. package/lib/internal/{index.js → index.ts} +2 -0
  548. package/lib/internal/logger.ts +270 -0
  549. package/lib/internal/nativeModuleAndroidIos.ts +55 -0
  550. package/lib/internal/nativeModuleWeb.ts +60 -0
  551. package/lib/internal/nullSerialization.ts +186 -0
  552. package/lib/internal/registry/app.ts +278 -0
  553. package/lib/internal/registry/{namespace.js → namespace.ts} +93 -54
  554. package/lib/internal/registry/nativeModule.ts +282 -0
  555. package/lib/internal/web/RNFBAppModule.ts +318 -0
  556. package/{ios/RNFBApp/RCTConvert+FIRApp.h → lib/internal/web/firebaseApp.ts} +4 -7
  557. package/lib/internal/web/firebaseAppCheck.ts +23 -0
  558. package/lib/internal/web/firebaseAuth.ts +21 -0
  559. package/lib/internal/web/firebaseDatabase.ts +21 -0
  560. package/{android/src/reactnative/java/io/invertase/firebase/app/ReactNativeFirebaseAppInitProvider.java → lib/internal/web/firebaseFirestore.ts} +4 -5
  561. package/lib/internal/web/firebaseFunctions.ts +21 -0
  562. package/lib/internal/web/firebaseInstallations.ts +23 -0
  563. package/lib/internal/web/firebaseRemoteConfig.ts +23 -0
  564. package/lib/internal/web/firebaseStorage.ts +21 -0
  565. package/{ios/RNFBApp/RNFBVersion.h → lib/internal/web/memidb/index.d.ts} +5 -4
  566. package/lib/internal/web/memidb/lib/errors.js +17 -0
  567. package/lib/internal/web/utils.ts +57 -0
  568. package/lib/modular.ts +219 -0
  569. package/lib/{index.js → namespaced.ts} +2 -2
  570. package/lib/{index.d.ts → types/app.ts} +81 -40
  571. package/lib/types/internal.ts +142 -0
  572. package/lib/utils/{UtilsStatics.js → UtilsStatics.ts} +20 -12
  573. package/lib/utils/index.ts +94 -0
  574. package/lib/version.ts +2 -0
  575. package/package.json +106 -9
  576. package/CHANGELOG.md +0 -1525
  577. package/RNFBApp.podspec +0 -49
  578. package/android/.editorconfig +0 -10
  579. package/android/build.gradle +0 -129
  580. package/android/firebase-json.gradle +0 -73
  581. package/android/gradle.properties +0 -2
  582. package/android/lint.xml +0 -5
  583. package/android/settings.gradle +0 -1
  584. package/android/src/main/AndroidManifest.xml +0 -24
  585. package/android/src/main/java/io/invertase/firebase/app/.gitkeep +0 -0
  586. package/android/src/main/java/io/invertase/firebase/common/TaskExecutorService.java +0 -124
  587. package/android/src/main/java/io/invertase/firebase/common/UniversalFirebaseModule.java +0 -62
  588. package/android/src/main/java/io/invertase/firebase/common/UniversalFirebasePreferences.java +0 -91
  589. package/android/src/main/java/io/invertase/firebase/interfaces/.gitkeep +0 -0
  590. package/android/src/reactnative/AndroidManifest.xml +0 -2
  591. package/android/src/reactnative/java/io/invertase/firebase/app/ReactNativeFirebaseApp.java +0 -46
  592. package/android/src/reactnative/java/io/invertase/firebase/app/ReactNativeFirebaseAppModule.java +0 -186
  593. package/android/src/reactnative/java/io/invertase/firebase/app/ReactNativeFirebaseAppPackage.java +0 -49
  594. package/android/src/reactnative/java/io/invertase/firebase/common/RCTConvertFirebase.java +0 -191
  595. package/android/src/reactnative/java/io/invertase/firebase/common/ReactNativeFirebaseEvent.java +0 -53
  596. package/android/src/reactnative/java/io/invertase/firebase/common/ReactNativeFirebaseEventEmitter.java +0 -151
  597. package/android/src/reactnative/java/io/invertase/firebase/common/ReactNativeFirebaseInitProvider.java +0 -78
  598. package/android/src/reactnative/java/io/invertase/firebase/common/ReactNativeFirebaseJSON.java +0 -107
  599. package/android/src/reactnative/java/io/invertase/firebase/common/ReactNativeFirebaseMeta.java +0 -93
  600. package/android/src/reactnative/java/io/invertase/firebase/common/ReactNativeFirebaseModule.java +0 -146
  601. package/android/src/reactnative/java/io/invertase/firebase/common/ReactNativeFirebasePreferences.java +0 -88
  602. package/android/src/reactnative/java/io/invertase/firebase/common/SharedUtils.java +0 -440
  603. package/android/src/reactnative/java/io/invertase/firebase/utils/ReactNativeFirebaseUtilsModule.java +0 -191
  604. package/app.plugin.js +0 -1
  605. package/firebase-schema.json +0 -149
  606. package/firebase_json.rb +0 -72
  607. package/ios/RNFBApp/RCTConvert+FIROptions.h +0 -23
  608. package/ios/RNFBApp/RCTConvert+FIROptions.m +0 -36
  609. package/ios/RNFBApp/RNFBAppModule.h +0 -28
  610. package/ios/RNFBApp/RNFBAppModule.m +0 -305
  611. package/ios/RNFBApp/RNFBJSON.h +0 -36
  612. package/ios/RNFBApp/RNFBJSON.m +0 -99
  613. package/ios/RNFBApp/RNFBMeta.h +0 -30
  614. package/ios/RNFBApp/RNFBMeta.m +0 -61
  615. package/ios/RNFBApp/RNFBPreferences.h +0 -44
  616. package/ios/RNFBApp/RNFBPreferences.m +0 -94
  617. package/ios/RNFBApp/RNFBRCTEventEmitter.h +0 -73
  618. package/ios/RNFBApp/RNFBRCTEventEmitter.m +0 -151
  619. package/ios/RNFBApp/RNFBSharedUtils.h +0 -65
  620. package/ios/RNFBApp/RNFBSharedUtils.m +0 -167
  621. package/ios/RNFBApp/RNFBUtilsModule.h +0 -30
  622. package/ios/RNFBApp/RNFBUtilsModule.m +0 -100
  623. package/ios/RNFBApp.xcodeproj/project.pbxproj +0 -405
  624. package/ios/RNFBApp.xcodeproj/xcshareddata/IDETemplateMacros.plist +0 -24
  625. package/ios_config.sh +0 -269
  626. package/lib/internal/asyncStorage.js +0 -47
  627. package/lib/internal/logger.d.ts +0 -85
  628. package/lib/internal/nativeModuleAndroidIos.js +0 -45
  629. package/lib/internal/nativeModuleWeb.js +0 -49
  630. package/lib/internal/web/firebaseApp.js +0 -3
  631. package/lib/internal/web/firebaseAuth.js +0 -4
  632. package/lib/internal/web/firebaseDatabase.js +0 -4
  633. package/lib/internal/web/firebaseFirestore.js +0 -4
  634. package/lib/internal/web/firebaseFunctions.js +0 -4
  635. package/lib/internal/web/firebaseStorage.js +0 -4
  636. package/lib/modular/index.d.ts +0 -131
  637. package/lib/modular/index.js +0 -150
  638. package/lib/version.js +0 -2
  639. package/plugin/build/android/applyPlugin.d.ts +0 -6
  640. package/plugin/build/android/applyPlugin.js +0 -29
  641. package/plugin/build/android/buildscriptDependency.d.ts +0 -6
  642. package/plugin/build/android/buildscriptDependency.js +0 -31
  643. package/plugin/build/android/constants.d.ts +0 -4
  644. package/plugin/build/android/constants.js +0 -8
  645. package/plugin/build/android/copyGoogleServices.d.ts +0 -5
  646. package/plugin/build/android/copyGoogleServices.js +0 -33
  647. package/plugin/build/android/index.d.ts +0 -4
  648. package/plugin/build/android/index.js +0 -9
  649. package/plugin/build/index.d.ts +0 -3
  650. package/plugin/build/index.js +0 -21
  651. package/plugin/build/ios/appDelegate.d.ts +0 -6
  652. package/plugin/build/ios/appDelegate.js +0 -116
  653. package/plugin/build/ios/googleServicesPlist.d.ts +0 -7
  654. package/plugin/build/ios/googleServicesPlist.js +0 -42
  655. package/plugin/build/ios/index.d.ts +0 -3
  656. package/plugin/build/ios/index.js +0 -7
  657. package/plugin/src/android/applyPlugin.ts +0 -30
  658. package/plugin/src/android/buildscriptDependency.ts +0 -33
  659. package/plugin/src/android/constants.ts +0 -7
  660. package/plugin/src/android/copyGoogleServices.ts +0 -36
  661. package/plugin/src/android/index.ts +0 -5
  662. package/plugin/src/index.ts +0 -27
  663. package/plugin/src/ios/appDelegate.ts +0 -140
  664. package/plugin/src/ios/googleServicesPlist.ts +0 -55
  665. package/plugin/src/ios/index.ts +0 -4
  666. package/plugin/tsconfig.json +0 -9
  667. package/plugin/tsconfig.tsbuildinfo +0 -1
  668. package/react-native.config.js +0 -19
  669. /package/lib/internal/{SharedEventEmitter.js → SharedEventEmitter.ts} +0 -0
  670. /package/lib/internal/{nativeModule.android.js → nativeModule.android.ts} +0 -0
  671. /package/lib/internal/{nativeModule.ios.js → nativeModule.ios.ts} +0 -0
  672. /package/lib/internal/{nativeModule.js → nativeModule.ts} +0 -0
package/CHANGELOG.md DELETED
@@ -1,1525 +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/app
9
-
10
- ## [23.6.0](https://github.com/invertase/react-native-firebase/compare/v23.5.0...v23.6.0) (2025-12-08)
11
-
12
- ### Features
13
-
14
- - **app, ios:** adopt firebase-ios-sdk 12.5.0 ([acc665c](https://github.com/invertase/react-native-firebase/commit/acc665ced443e0d245f30b54eb85e72bcc3d7bd2))
15
-
16
- ### Bug Fixes
17
-
18
- - firebase-ios-sdk 12.6.0 / firebase-js-sdk 12.6.0 / firebase-android-sdk 34.6.0 ([dacdfa2](https://github.com/invertase/react-native-firebase/commit/dacdfa2b5961259c93ea948472be4b51ac78b1c5))
19
- - **messaging, android:** properly remove remote message from prefs ([336901b](https://github.com/invertase/react-native-firebase/commit/336901b00f0553f57fa18ce416f513f915c9a8ed))
20
-
21
- ## [23.5.0](https://github.com/invertase/react-native-firebase/compare/v23.4.1...v23.5.0) (2025-10-30)
22
-
23
- ### Bug Fixes
24
-
25
- - **ios:** use 'note' for info messages in Xcode scripts ([f2f1e5e](https://github.com/invertase/react-native-firebase/commit/f2f1e5e396b2e71675e85701bc89ac916431db30))
26
-
27
- ## [23.4.1](https://github.com/invertase/react-native-firebase/compare/v23.4.0...v23.4.1) (2025-10-14)
28
-
29
- ### Bug Fixes
30
-
31
- - **app:** adopt firebase-js-sdk 12.3.0 ([4fecb30](https://github.com/invertase/react-native-firebase/commit/4fecb304be7f223959d4aba0a0e8b7e550983024))
32
- - **app:** SDK updates: js 12.4.0, ios 12.4.0, android 34.4.0 ([b7d5f63](https://github.com/invertase/react-native-firebase/commit/b7d5f6319a591751b31a39d904fd4256803ae85e))
33
-
34
- ## [23.4.0](https://github.com/invertase/react-native-firebase/compare/v23.3.1...v23.4.0) (2025-09-24)
35
-
36
- ### Bug Fixes
37
-
38
- - firebase-ios-sdk 12.3.0 / firebase-android-sdk 34.3.0 ([123e773](https://github.com/invertase/react-native-firebase/commit/123e77372bbf173c60cc35f1fb5c8dbde4d2cdcf))
39
-
40
- ## [23.3.1](https://github.com/invertase/react-native-firebase/compare/v23.3.0...v23.3.1) (2025-09-08)
41
-
42
- ### Bug Fixes
43
-
44
- - **app-distribution, android:** use correct app-distribution gradle version 5.1.1 ([25fddad](https://github.com/invertase/react-native-firebase/commit/25fddad1ac540e5e8b006aae286a4e4603198617))
45
-
46
- ## [23.3.0](https://github.com/invertase/react-native-firebase/compare/v23.2.2...v23.3.0) (2025-09-04)
47
-
48
- **Note:** Version bump only for package @react-native-firebase/app
49
-
50
- ## [23.2.2](https://github.com/invertase/react-native-firebase/compare/v23.2.1...v23.2.2) (2025-09-03)
51
-
52
- **Note:** Version bump only for package @react-native-firebase/app
53
-
54
- ## [23.2.1](https://github.com/invertase/react-native-firebase/compare/v23.2.0...v23.2.1) (2025-09-01)
55
-
56
- ### Bug Fixes
57
-
58
- - **android:** adopt firebase-android-sdk 34.2.0 ([#8680](https://github.com/invertase/react-native-firebase/issues/8680)) ([c680840](https://github.com/invertase/react-native-firebase/commit/c680840709b4c3f648d2269a025cd1ff7ce2ff50))
59
- - **app, ios:** adopt firebase-ios-sdk 12.2.0 ([#8681](https://github.com/invertase/react-native-firebase/issues/8681)) ([1fde0cf](https://github.com/invertase/react-native-firebase/commit/1fde0cfd1cb148397703758bf2622423ad845dbf))
60
- - **app:** adopt firebase-js-sdk 12.2.1 ([#8682](https://github.com/invertase/react-native-firebase/issues/8682)) ([f3d3985](https://github.com/invertase/react-native-firebase/commit/f3d3985a18a97b55c4c284330f5c06536c2d9730))
61
-
62
- ## [23.2.0](https://github.com/invertase/react-native-firebase/compare/v23.1.2...v23.2.0) (2025-08-29)
63
-
64
- ### Features
65
-
66
- - **other:** implement TOTP auth for Other platform ([3fbc43a](https://github.com/invertase/react-native-firebase/commit/3fbc43a1f1ccf768c5f76a962a59d1850f73ba5a))
67
-
68
- ## [23.1.2](https://github.com/invertase/react-native-firebase/compare/v23.1.1...v23.1.2) (2025-08-25)
69
-
70
- **Note:** Version bump only for package @react-native-firebase/app
71
-
72
- ## [23.1.1](https://github.com/invertase/react-native-firebase/compare/v23.1.0...v23.1.1) (2025-08-22)
73
-
74
- ### Bug Fixes
75
-
76
- - validate listenerOrObserver callbacks in auth, app-check, remote-config ([06dcae4](https://github.com/invertase/react-native-firebase/commit/06dcae44e29f18e7716727479fd6e6d048336d91))
77
-
78
- ## [23.1.0](https://github.com/invertase/react-native-firebase/compare/v23.0.1...v23.1.0) (2025-08-19)
79
-
80
- ### Features
81
-
82
- - **ai:** create `ai` package, `vertexai` wraps around it ([#8555](https://github.com/invertase/react-native-firebase/issues/8555)) ([50c9e0d](https://github.com/invertase/react-native-firebase/commit/50c9e0d8a361b575c6cbf86f028165906d819162))
83
-
84
- ### Bug Fixes
85
-
86
- - **app, ios:** fail build with error if firebase.json has syntax errors ([5c752e7](https://github.com/invertase/react-native-firebase/commit/5c752e710e39f0aad40182706a934e5979727fa1))
87
- - **app:** adopt firebase-js-sdk 12.1.0 ([115a55c](https://github.com/invertase/react-native-firebase/commit/115a55ce85c1a4db8f8b92f4e30c86776499f6ea))
88
-
89
- ## [23.0.1](https://github.com/invertase/react-native-firebase/compare/v23.0.0...v23.0.1) (2025-08-12)
90
-
91
- ### Bug Fixes
92
-
93
- - **app, android:** adopt firebase-android-sdk 34.1.0 ([b9af1d3](https://github.com/invertase/react-native-firebase/commit/b9af1d3d24a4fa77587eb1a9f7a5d784750a58bb))
94
-
95
- ## [23.0.0](https://github.com/invertase/react-native-firebase/compare/v22.4.0...v23.0.0) (2025-08-07)
96
-
97
- ### ⚠ BREAKING CHANGES
98
-
99
- - new minimums: iOS 15+, Xcode 16.2+
100
- - requires node v20+ and ES2020+
101
- - android minSdk now must be 23+ (was 21)
102
- - **dynamic-links:** remove Dynamic Links from React Native Firebase (#8631)
103
-
104
- ### Features
105
-
106
- - 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))
107
- - bump firebase-ios-sdk to `12.0.0` ([e3d6d22](https://github.com/invertase/react-native-firebase/commit/e3d6d222f0a83f6a3f6ea6975401e4b03cc4421a))
108
- - bump firebase-js-sdk to `12.0.0` ([ab0529e](https://github.com/invertase/react-native-firebase/commit/ab0529ef5cfc1382688ee220aeb46eba4dcf9761))
109
-
110
- ### Bug Fixes
111
-
112
- - **app, ios:** adopt firebase-ios-sdk 12.1.0 ([8be970c](https://github.com/invertase/react-native-firebase/commit/8be970c86fff5ad8d046ccba442f54bec3ecaf41))
113
- - **dynamic-links:** remove Dynamic Links from React Native Firebase ([#8631](https://github.com/invertase/react-native-firebase/issues/8631)) ([fe4550f](https://github.com/invertase/react-native-firebase/commit/fe4550f362548dcb66359044715e22222a413f97))
114
-
115
- ## [22.4.0](https://github.com/invertase/react-native-firebase/compare/v22.3.0...v22.4.0) (2025-07-10)
116
-
117
- **Note:** Version bump only for package @react-native-firebase/app
118
-
119
- ## [22.3.0](https://github.com/invertase/react-native-firebase/compare/v22.2.1...v22.3.0) (2025-07-08)
120
-
121
- ### Bug Fixes
122
-
123
- - **app, android:** adopt firebase-android-sdk 33.16.0 ([7221dc4](https://github.com/invertase/react-native-firebase/commit/7221dc4602963d50eddccfc315ffbf458d9e9b29))
124
- - **app, ios:** adopt firebase-ios-sdk 11.15.0 ([28471dc](https://github.com/invertase/react-native-firebase/commit/28471dcc4948851106bc3be2e614dd59c358c403)), closes [/firebase.google.com/support/faq#analytics-odm2](https://github.com/invertase//firebase.google.com/support/faq/issues/analytics-odm2)
125
- - **app:** firebase-js-sdk bump 11.3.1 > 11.10.0 ([29ea831](https://github.com/invertase/react-native-firebase/commit/29ea8310beed3eb0598bda55aacc29c100c7f770))
126
-
127
- ## [22.2.1](https://github.com/invertase/react-native-firebase/compare/v22.2.0...v22.2.1) (2025-06-10)
128
-
129
- ### Bug Fixes
130
-
131
- - **app:** firebase-android-sdk 33.14.0 / firebase-ios-sdk 11.13.0 ([9b6ce6e](https://github.com/invertase/react-native-firebase/commit/9b6ce6e87e7cff4ef35746e7e5e7cfbe055b3a8e))
132
-
133
- ## [22.2.0](https://github.com/invertase/react-native-firebase/compare/v22.1.0...v22.2.0) (2025-05-12)
134
-
135
- **Note:** Version bump only for package @react-native-firebase/app
136
-
137
- ## [22.1.0](https://github.com/invertase/react-native-firebase/compare/v22.0.0...v22.1.0) (2025-04-30)
138
-
139
- ### Bug Fixes
140
-
141
- - **app, expo:** add config plugin support for Expo SDK 53 ([#8495](https://github.com/invertase/react-native-firebase/issues/8495)) ([7617611](https://github.com/invertase/react-native-firebase/commit/7617611fb7ba903d7a15b44bc34c930a354a863c))
142
- - **app, expo:** update config plugin to match Expo 53.0.1 AppDelegate ([#8500](https://github.com/invertase/react-native-firebase/issues/8500)) ([3d3c4ec](https://github.com/invertase/react-native-firebase/commit/3d3c4ece9f9a9de76e36f4f35611fca5ed208abc))
143
- - **app:** provide modular-like APIs for RNFB-specific json/meta/preferences methods ([9bb5365](https://github.com/invertase/react-native-firebase/commit/9bb536523869a21a26bd46756d0f42ee2ff34321))
144
- - **app:** toString() does not exist in modular API, use .name property ([2a99366](https://github.com/invertase/react-native-firebase/commit/2a99366ae56a36a6d4b3bdb7beca6137c4040e59))
145
-
146
- ## [22.0.0](https://github.com/invertase/react-native-firebase/compare/v21.14.0...v22.0.0) (2025-04-25)
147
-
148
- ### ⚠ BREAKING CHANGES
149
-
150
- - **app, sdks:** firebase-ios-sdk 11.12.0 requires Xcode 16.2+
151
-
152
- ### Features
153
-
154
- - **app, sdks:** firebase-ios-sdk 11.12.0 / firebase-android-sdk 33.13.0 ([c63d843](https://github.com/invertase/react-native-firebase/commit/c63d8435b678742cfdd98f4d1d8895134cb9cf09))
155
-
156
- ### Bug Fixes
157
-
158
- - **analytics:** Type defs ([#8363](https://github.com/invertase/react-native-firebase/issues/8363)) ([74efc84](https://github.com/invertase/react-native-firebase/commit/74efc848e3ecda47b5c7cdf79e5e72370cd10b7d))
159
- - **android:** use `=` assignment vs deprecated space-assignment ([39c2ecb](https://github.com/invertase/react-native-firebase/commit/39c2ecb0069a8a5a65b04fb7f86ccecf83273868))
160
- - enable provenance signing during publish ([4535f0d](https://github.com/invertase/react-native-firebase/commit/4535f0d5756c89aeb8f8e772348c71d8176348be))
161
-
162
- ## [21.14.0](https://github.com/invertase/react-native-firebase/compare/v21.13.0...v21.14.0) (2025-04-14)
163
-
164
- ### Features
165
-
166
- - **messaging, android:** notification delegation APIs, firebase.json feature toggle ([c0c5054](https://github.com/invertase/react-native-firebase/commit/c0c505432e95c85fa6621b548b24e755e2894c37))
167
- - **messaging, android:** support BigQuery export setting in firebase.json ([fa0e967](https://github.com/invertase/react-native-firebase/commit/fa0e967f9a06719c159a4980749f80c5ff2e2c39))
168
-
169
- ### Bug Fixes
170
-
171
- - **app, expo:** update iOS AppDelegate for SDK 53 support ([a3d82c7](https://github.com/invertase/react-native-firebase/commit/a3d82c73e746fe3d2ac4513b15696ced98ecf2ca))
172
- - **app:** annotate initializeApp return as a promise ([#8366](https://github.com/invertase/react-native-firebase/issues/8366)) ([5189c32](https://github.com/invertase/react-native-firebase/commit/5189c328e2643cdaf9c96059ce139b34c7651466))
173
- - **app:** firebase-ios-sdk 11.11.0 / firebase-android-sdk 33.12.0 ([1bfd3eb](https://github.com/invertase/react-native-firebase/commit/1bfd3eb5558296deff7a368a607163019b1d4d11))
174
-
175
- ## [21.13.0](https://github.com/invertase/react-native-firebase/compare/v21.12.3...v21.13.0) (2025-03-31)
176
-
177
- **Note:** Version bump only for package @react-native-firebase/app
178
-
179
- ## [21.12.3](https://github.com/invertase/react-native-firebase/compare/v21.12.2...v21.12.3) (2025-03-26)
180
-
181
- **Note:** Version bump only for package @react-native-firebase/app
182
-
183
- ## [21.12.2](https://github.com/invertase/react-native-firebase/compare/v21.12.1...v21.12.2) (2025-03-23)
184
-
185
- **Note:** Version bump only for package @react-native-firebase/app
186
-
187
- ## [21.12.1](https://github.com/invertase/react-native-firebase/compare/v21.12.0...v21.12.1) (2025-03-22)
188
-
189
- ### Bug Fixes
190
-
191
- - **android:** adopt firebase-android-sdk 33.11.0 ([8271231](https://github.com/invertase/react-native-firebase/commit/82712317f9df94f5b5d2d9610f2029c3df0ed96b))
192
- - **app, sdks:** firebase-ios-sdk 11.9.0 / firebase-android-sdk 33.10.0 ([df24ed6](https://github.com/invertase/react-native-firebase/commit/df24ed63e5434c84dc167f23287446647457e8e5))
193
- - **app:** App type def fix ([#8365](https://github.com/invertase/react-native-firebase/issues/8365)) ([068a924](https://github.com/invertase/react-native-firebase/commit/068a92496f54e30cd17187c849163dbafd9e8c5b))
194
- - **ios:** adopt firebase-ios-sdk 11.10.0 ([ffc7b4c](https://github.com/invertase/react-native-firebase/commit/ffc7b4c7d603dcb27b730f82c523c91b4a5882a8))
195
-
196
- ## [21.12.0](https://github.com/invertase/react-native-firebase/compare/v21.11.0...v21.12.0) (2025-03-03)
197
-
198
- ### Features
199
-
200
- - vertexAI package support ([#8236](https://github.com/invertase/react-native-firebase/issues/8236)) ([a1d1361](https://github.com/invertase/react-native-firebase/commit/a1d13610f443a96a7195b3f769f77d9676c0e577))
201
-
202
- ## [21.11.0](https://github.com/invertase/react-native-firebase/compare/v21.10.1...v21.11.0) (2025-02-20)
203
-
204
- **Note:** Version bump only for package @react-native-firebase/app
205
-
206
- ## [21.10.1](https://github.com/invertase/react-native-firebase/compare/v21.10.0...v21.10.1) (2025-02-18)
207
-
208
- ### Performance Improvements
209
-
210
- - only create deprecation message if we will use it ([70c57f4](https://github.com/invertase/react-native-firebase/commit/70c57f44597a04885f5b112c25b5251d94192615))
211
-
212
- ## [21.10.0](https://github.com/invertase/react-native-firebase/compare/v21.9.0...v21.10.0) (2025-02-11)
213
-
214
- **Note:** Version bump only for package @react-native-firebase/app
215
-
216
- ## [21.9.0](https://github.com/invertase/react-native-firebase/compare/v21.8.0...v21.9.0) (2025-02-11)
217
-
218
- ### Features
219
-
220
- - **app, expo:** support rn77 AppDelegate.swift in config plugin ([#8324](https://github.com/invertase/react-native-firebase/issues/8324)) ([6a7867c](https://github.com/invertase/react-native-firebase/commit/6a7867c9366b851a6de62cc37b7834090caad98b))
221
-
222
- ### Bug Fixes
223
-
224
- - firebase-ios-sdk 11.8.0 / firebase-android-sdk 33.9.0 ([67aba08](https://github.com/invertase/react-native-firebase/commit/67aba08c00aa46b72fcb1353bd428fa552b6686a))
225
-
226
- ## [21.8.0](https://github.com/invertase/react-native-firebase/compare/v21.7.4...v21.8.0) (2025-02-10)
227
-
228
- ### Bug Fixes
229
-
230
- - do not ship unit tests in released packages ([e71dadf](https://github.com/invertase/react-native-firebase/commit/e71dadfc1c0cad2e89c94100913af31ddf7d9c91))
231
-
232
- ## [21.7.4](https://github.com/invertase/react-native-firebase/compare/v21.7.3...v21.7.4) (2025-02-08)
233
-
234
- **Note:** Version bump only for package @react-native-firebase/app
235
-
236
- ## [21.7.3](https://github.com/invertase/react-native-firebase/compare/v21.7.2...v21.7.3) (2025-02-08)
237
-
238
- ### Bug Fixes
239
-
240
- - use same deprecation message everywhere, correct tests for new message ([684081b](https://github.com/invertase/react-native-firebase/commit/684081b7bdc17bc314fce827972dca5b1a58e01b))
241
-
242
- ## [21.7.2](https://github.com/invertase/react-native-firebase/compare/v21.7.1...v21.7.2) (2025-02-05)
243
-
244
- ### Bug Fixes
245
-
246
- - **android, auth:** adopt play-services-auth 21.3.0 ([5506164](https://github.com/invertase/react-native-firebase/commit/55061640f55312b1df2315df6d0fa053c19d25e5)), closes [/developers.google.com/android/guides/releases#december_09_2024](https://github.com/invertase//developers.google.com/android/guides/releases/issues/december_09_2024)
247
- - **app, android:** adopt firebase-android-sdk 33.8.0 ([14f3dd5](https://github.com/invertase/react-native-firebase/commit/14f3dd51d466d04fa92416d44035bf10194bfbee))
248
-
249
- ## [21.7.1](https://github.com/invertase/react-native-firebase/compare/v21.7.0...v21.7.1) (2025-01-20)
250
-
251
- **Note:** Version bump only for package @react-native-firebase/app
252
-
253
- ## [21.7.0](https://github.com/invertase/react-native-firebase/compare/v21.6.2...v21.7.0) (2025-01-16)
254
-
255
- ### Features
256
-
257
- - **app-distribution:** add Android app distribution plugin and configuration ([9b5c405](https://github.com/invertase/react-native-firebase/commit/9b5c405b2933c84daad561117a3eebacc65cbb7e))
258
-
259
- ### Bug Fixes
260
-
261
- - adopt firebase-ios-sdk 11.7.0 / firebase-android-sdk 33.7.0 ([9da251d](https://github.com/invertase/react-native-firebase/commit/9da251d081a71ec03e5e909627002598456657a2))
262
-
263
- ## [21.6.2](https://github.com/invertase/react-native-firebase/compare/v21.6.1...v21.6.2) (2025-01-02)
264
-
265
- **Note:** Version bump only for package @react-native-firebase/app
266
-
267
- ## [21.6.1](https://github.com/invertase/react-native-firebase/compare/v21.6.0...v21.6.1) (2024-11-25)
268
-
269
- ### Bug Fixes
270
-
271
- - **android, app:** fix hot-reload on react-native <= 0.73 ([81e5fc2](https://github.com/invertase/react-native-firebase/commit/81e5fc2b6c89fdb4aa5f0f5aa95e1e90dae5f2e4))
272
-
273
- ## [21.6.0](https://github.com/invertase/react-native-firebase/compare/v21.5.0...v21.6.0) (2024-11-20)
274
-
275
- ### Features
276
-
277
- - **ios, sdk:** allow FIREBASE_SDK_VERSION override ([8cbe59f](https://github.com/invertase/react-native-firebase/commit/8cbe59fbf771df6ba932832c9d4fd17bf500ea91))
278
-
279
- ### Bug Fixes
280
-
281
- - **analytics:** update superstruct dependency / forward-port to new API ([#8153](https://github.com/invertase/react-native-firebase/issues/8153)) ([6db1fb4](https://github.com/invertase/react-native-firebase/commit/6db1fb471e62e2c7e434719f2616c76349f345be))
282
-
283
- ## [21.5.0](https://github.com/invertase/react-native-firebase/compare/v21.4.1...v21.5.0) (2024-11-16)
284
-
285
- ### Bug Fixes
286
-
287
- - **android:** forward-port to non-deprecated data collection API ([2c87eeb](https://github.com/invertase/react-native-firebase/commit/2c87eeb3f0e8053ab02d4f6cce047ad61a6310fa))
288
- - **android:** rn74 forward-port onCatalystInstanceDestroy -> invalidate ([83696ea](https://github.com/invertase/react-native-firebase/commit/83696ea4c944b2be0b8fd9f2fc1db212800cbcf8))
289
-
290
- ## [21.4.1](https://github.com/invertase/react-native-firebase/compare/v21.4.0...v21.4.1) (2024-11-13)
291
-
292
- ### Bug Fixes
293
-
294
- - **app, ios:** adopt firebase-ios-sdk 11.5.0 ([c387357](https://github.com/invertase/react-native-firebase/commit/c387357ac8be7a2186aa1872a3d41e370d4ce5e3))
295
-
296
- ### Reverts
297
-
298
- - Revert "fix(ios, sdk): constrain transitive dependencies more tightly" ([1ff247c](https://github.com/invertase/react-native-firebase/commit/1ff247cd73804efbd52eb9490f68087685de814c))
299
-
300
- ## [21.4.0](https://github.com/invertase/react-native-firebase/compare/v21.3.0...v21.4.0) (2024-11-07)
301
-
302
- ### Features
303
-
304
- - Add initial tvOS support to some firebase packages ([ca51b51](https://github.com/invertase/react-native-firebase/commit/ca51b51f86edb9a5e293b463491fad40e4189e53))
305
-
306
- ### Bug Fixes
307
-
308
- - **app, tvOS:** tvOS minimum target upstream is 13.0, aligning here ([3fa3f07](https://github.com/invertase/react-native-firebase/commit/3fa3f07f00f0444fff3eb864afce3882e855ac41))
309
-
310
- ## [21.3.0](https://github.com/invertase/react-native-firebase/compare/v21.2.0...v21.3.0) (2024-10-31)
311
-
312
- ### Bug Fixes
313
-
314
- - **app, sdk:** firebase-android-sdk 33.5.1 ([6c08f13](https://github.com/invertase/react-native-firebase/commit/6c08f13407f9aea6af176d485d919c892449cc16))
315
- - **app:** add misconfiguration warning for missing native module ([b038dbc](https://github.com/invertase/react-native-firebase/commit/b038dbc669b7f1c679c388e3ef749168df89954f))
316
-
317
- ## [21.2.0](https://github.com/invertase/react-native-firebase/compare/v21.1.1...v21.2.0) (2024-10-22)
318
-
319
- ### Features
320
-
321
- - **ios, sdk:** adopt firebase-ios-sdk 11.4.0 ([4430ee7](https://github.com/invertase/react-native-firebase/commit/4430ee7b1d7b7d0dfa36dc44e0cc0e56266086c9))
322
-
323
- ## [21.1.1](https://github.com/invertase/react-native-firebase/compare/v21.1.0...v21.1.1) (2024-10-22)
324
-
325
- ### Bug Fixes
326
-
327
- - **ios, sdk:** constrain transitive dependencies more tightly ([d03ab42](https://github.com/invertase/react-native-firebase/commit/d03ab42a163a17268bac344ccd135dc18849e1be))
328
-
329
- ## [21.1.0](https://github.com/invertase/react-native-firebase/compare/v21.0.0...v21.1.0) (2024-10-21)
330
-
331
- ### Bug Fixes
332
-
333
- - **app, sdk:** adopt ios-sdk 11.3.0 / android-sdk 33.4.0 ([6e7cc0a](https://github.com/invertase/react-native-firebase/commit/6e7cc0a675775f583089fb9c70d0e35a5f7d1d1f))
334
-
335
- ## [21.0.0](https://github.com/invertase/react-native-firebase/compare/v20.5.0...v21.0.0) (2024-09-26)
336
-
337
- ### ⚠ BREAKING CHANGES
338
-
339
- - Update Firebase iOS SDK version to v11
340
-
341
- ### Features
342
-
343
- - Update Firebase iOS SDK version to v11 ([8bad077](https://github.com/invertase/react-native-firebase/commit/8bad0774a8f1a201d19cf8b4a914bfaf7a30c6c7))
344
-
345
- ### Bug Fixes
346
-
347
- - **android, sdk:** adopt firebase-android-sdk 33.3.0 ([37bfd72](https://github.com/invertase/react-native-firebase/commit/37bfd7287dabefbb991a146090b73b7755126f04))
348
-
349
- ## [20.5.0](https://github.com/invertase/react-native-firebase/compare/v20.4.0...v20.5.0) (2024-09-11)
350
-
351
- **Note:** Version bump only for package @react-native-firebase/app
352
-
353
- ## [20.4.0](https://github.com/invertase/react-native-firebase/compare/v20.3.0...v20.4.0) (2024-08-13)
354
-
355
- ### Features
356
-
357
- - **firestore:** support for second database ([#7949](https://github.com/invertase/react-native-firebase/issues/7949)) ([eec08a0](https://github.com/invertase/react-native-firebase/commit/eec08a06f41dd96d13778fbed2afcaaac238fca4))
358
-
359
- ## [20.3.0](https://github.com/invertase/react-native-firebase/compare/v20.2.1...v20.3.0) (2024-07-19)
360
-
361
- ### Bug Fixes
362
-
363
- - **other:** add api for persistence via Async Storage ([030eea9](https://github.com/invertase/react-native-firebase/commit/030eea91f297a4014ab86cfb141ae938f200c5e5))
364
-
365
- ## [20.2.1](https://github.com/invertase/react-native-firebase/compare/v20.2.0...v20.2.1) (2024-07-17)
366
-
367
- **Note:** Version bump only for package @react-native-firebase/app
368
-
369
- ## [20.2.0](https://github.com/invertase/react-native-firebase/compare/v20.1.0...v20.2.0) (2024-07-15)
370
-
371
- ### Features
372
-
373
- - **other:** Add analytics support ([#7899](https://github.com/invertase/react-native-firebase/issues/7899)) ([cbdf9ec](https://github.com/invertase/react-native-firebase/commit/cbdf9ec78452a73751d1afeca428842898f63134))
374
- - **Other:** add App Check support ([#7905](https://github.com/invertase/react-native-firebase/issues/7905)) ([753b16e](https://github.com/invertase/react-native-firebase/commit/753b16e1a06f949c679fb75053c319394dd5ecfe))
375
- - **other:** add App/Core support ([1b2e247](https://github.com/invertase/react-native-firebase/commit/1b2e2473d526c3356ab8619b226943446fd49452))
376
- - **other:** Add Auth support ([#7878](https://github.com/invertase/react-native-firebase/issues/7878)) ([54befe7](https://github.com/invertase/react-native-firebase/commit/54befe776353f07eeab9b044d6261eeb76f1f238))
377
- - **other:** Add Database support ([#7887](https://github.com/invertase/react-native-firebase/issues/7887)) ([fbb773a](https://github.com/invertase/react-native-firebase/commit/fbb773a87c167bdc92265fe261aeb777d4660cd7))
378
- - **other:** Add Firestore support ([#7882](https://github.com/invertase/react-native-firebase/issues/7882)) ([0ebd1dd](https://github.com/invertase/react-native-firebase/commit/0ebd1ddd221c50dde489bce30ad5ed64037d8439))
379
- - **Other:** Add Remote Config support ([#7895](https://github.com/invertase/react-native-firebase/issues/7895)) ([a41e556](https://github.com/invertase/react-native-firebase/commit/a41e5568869320fb91afc01403ed402e5312e15c))
380
- - **other:** Add Storage support ([#7888](https://github.com/invertase/react-native-firebase/issues/7888)) ([9b8dda7](https://github.com/invertase/react-native-firebase/commit/9b8dda704a01243039624bfcc7614021e6c3a527))
381
-
382
- ### Bug Fixes
383
-
384
- - **app, android:** adopt firebase-android-sdk 31.1.1 ([dba1beb](https://github.com/invertase/react-native-firebase/commit/dba1beba97d88d1110e0838b6287fd4907cfa8a7))
385
- - **app, android:** adopt firebase-android-sdk 33.1.2 ([0dfa2af](https://github.com/invertase/react-native-firebase/commit/0dfa2af484cfd12a282490cb82726b29859e30bf))
386
- - **app, ios:** firebase-ios-sdk 10.28.0 ([91c626d](https://github.com/invertase/react-native-firebase/commit/91c626d0d32435a6305696fb4084553341d99ca9))
387
- - **ios:** adopt firebase-ios-sdk 10.29.0 ([1b19cc6](https://github.com/invertase/react-native-firebase/commit/1b19cc697f21ac1e21ab3a7a399c1ef90711800b))
388
-
389
- ## [20.1.0](https://github.com/invertase/react-native-firebase/compare/v20.0.0...v20.1.0) (2024-06-04)
390
-
391
- ### Features
392
-
393
- - **app:** ios sdk 10.27.0 / android sdk 33.1.0 ([b6158d6](https://github.com/invertase/react-native-firebase/commit/b6158d6ff355ea9156b6f3c3b062c74aaf0d240e))
394
-
395
- ## [20.0.0](https://github.com/invertase/react-native-firebase/compare/v19.3.0...v20.0.0) (2024-05-20)
396
-
397
- ### ⚠ BREAKING CHANGES
398
-
399
- - **app, android:** - requires minSdk 21+ in general, 23+ for auth module
400
-
401
- * requires compileSdk 34+
402
- * app-distribution gradle plugin requires
403
- - gradle 7.3+
404
- - android gradle plugin 7+
405
- - google services plugin 4.3.2+
406
- * crashlytics plugin requires
407
- - gradle 8+
408
- - android gradle plugin 8.1+
409
- - google services plugin 4.4.1+
410
-
411
- - **app, ios:** firebase-ios-sdk 10.25.0 requires minimum Xcode 15.2+
412
-
413
- This transitively requires macOS Ventura 13.5+ - for old hardware
414
- you may investigate OCLP (OpenCore Legacy Patcher) to update macOS
415
- to current versions and access newer Xcode versions
416
-
417
- ### Features
418
-
419
- - **app, android:** android-sdk 33.0.0 - needs minSdk 21+ (23+ for auth) ([f29fecb](https://github.com/invertase/react-native-firebase/commit/f29fecbe72c27e60f8fec1cee6fa879b788d27b3))
420
- - **app, ios:** adopt firebase-ios-sdk 10.25.0 requires Xcode 15.2+ ([73f3c23](https://github.com/invertase/react-native-firebase/commit/73f3c2397d2f56ed5a139d2a8b8a13930c86aabc))
421
-
422
- ## [19.3.0](https://github.com/invertase/react-native-firebase/compare/v19.2.2...v19.3.0) (2024-05-20)
423
-
424
- ### Bug Fixes
425
-
426
- - **app:** react-native 0.74 bridgeless mode compatibility ([#7688](https://github.com/invertase/react-native-firebase/issues/7688)) ([a6805bc](https://github.com/invertase/react-native-firebase/commit/a6805bc1e6894aadf3167b7958fd52644bfe90ca))
427
-
428
- ## [19.2.2](https://github.com/invertase/react-native-firebase/compare/v19.2.1...v19.2.2) (2024-04-13)
429
-
430
- ### Bug Fixes
431
-
432
- - **app, android:** bump firebase-android-sdk to 32.8.1 ([ae24918](https://github.com/invertase/react-native-firebase/commit/ae24918ff124020b120f2bd12e24db4b6b5f54b4))
433
-
434
- ## [19.2.1](https://github.com/invertase/react-native-firebase/compare/v19.2.0...v19.2.1) (2024-04-12)
435
-
436
- **Note:** Version bump only for package @react-native-firebase/app
437
-
438
- ## [19.2.0](https://github.com/invertase/react-native-firebase/compare/v19.1.2...v19.2.0) (2024-04-10)
439
-
440
- ### Features
441
-
442
- - **app, ios:** firebase-ios-sdk 10.24.0 with signed frameworks ([6624b1c](https://github.com/invertase/react-native-firebase/commit/6624b1cc3d18eecefcc03453ba52c148aabd49d0))
443
-
444
- ## [19.1.2](https://github.com/invertase/react-native-firebase/compare/v19.1.1...v19.1.2) (2024-04-03)
445
-
446
- ### Bug Fixes
447
-
448
- - **app, ios:** adopt firebase-ios-sdk 10.23.1 ([dc05178](https://github.com/invertase/react-native-firebase/commit/dc051788e60e4926f26b03992c7a82f7a38cb556))
449
-
450
- ## [19.1.1](https://github.com/invertase/react-native-firebase/compare/v19.1.0...v19.1.1) (2024-03-26)
451
-
452
- ### Bug Fixes
453
-
454
- - **app, android:** bump google play-services-auth to 21.0.0 ([85dfa4e](https://github.com/invertase/react-native-firebase/commit/85dfa4e13b7da4358a12cc51e372a423bb63c9c3)), closes [/github.com/firebase/firebase-android-sdk/issues/5768#issuecomment-2020388078](https://github.com/invertase//github.com/firebase/firebase-android-sdk/issues/5768/issues/issuecomment-2020388078)
455
-
456
- ## [19.1.0](https://github.com/invertase/react-native-firebase/compare/v19.0.1...v19.1.0) (2024-03-23)
457
-
458
- ### Bug Fixes
459
-
460
- - **app, android:** adopt firebase-android-sdk 32.7.4 ([6793b1d](https://github.com/invertase/react-native-firebase/commit/6793b1d395c7112d6571e012c3ad50398784b574))
461
- - **app, android:** adopt firebase-android-sdk 32.8.0 ([450da62](https://github.com/invertase/react-native-firebase/commit/450da6265ab2b54f63675009588f26609c0aa263))
462
- - **app, ios:** adopt firebase-ios-sdk 10.23.0 ([d7fd10e](https://github.com/invertase/react-native-firebase/commit/d7fd10e97268ac08f4960323d5204acd3ecffa07))
463
-
464
- ## [19.0.1](https://github.com/invertase/react-native-firebase/compare/v19.0.0...v19.0.1) (2024-03-07)
465
-
466
- ### Bug Fixes
467
-
468
- - **app, ios:** adopt firebase-ios-sdk 10.22.0 ([#7668](https://github.com/invertase/react-native-firebase/issues/7668)) ([3fc756b](https://github.com/invertase/react-native-firebase/commit/3fc756b7bf98f6e3acd169dd5cbe4af55dbe9746))
469
-
470
- ## [19.0.0](https://github.com/invertase/react-native-firebase/compare/v18.9.0...v19.0.0) (2024-02-26)
471
-
472
- ### ⚠ BREAKING CHANGES
473
-
474
- - **app, sdks:** firebase-ios-sdk 10.21.0 requires cocoapods 1.12+
475
- in order to support the new Apple-mandated privacy manifests. Please
476
- ensure you are using verson 1.12 or greater of cocoapods
477
-
478
- ### Bug Fixes
479
-
480
- - **app, sdks:** SDK ios 10.21.0 / android / 32.7.2 ([9dc48be](https://github.com/invertase/react-native-firebase/commit/9dc48be52603c71b134dadca16502e8557aca95b))
481
-
482
- ## [18.9.0](https://github.com/invertase/react-native-firebase/compare/v18.8.0...v18.9.0) (2024-02-21)
483
-
484
- ### Features
485
-
486
- - **analytics:** add setConsent implementation ([#7629](https://github.com/invertase/react-native-firebase/issues/7629)) ([7816985](https://github.com/invertase/react-native-firebase/commit/78169854f16a2715f5d2657ab08f54d5a4b05281))
487
-
488
- ## [18.8.0](https://github.com/invertase/react-native-firebase/compare/v18.7.3...v18.8.0) (2024-01-25)
489
-
490
- ### Features
491
-
492
- - **auth, authDomain:** implement FirebaseOptions.authDomain on Auth ([a1f4710](https://github.com/invertase/react-native-firebase/commit/a1f471029352b7597d7e83a8c1ea06145768cf89))
493
-
494
- ### Bug Fixes
495
-
496
- - **app:** firebase-ios-sdk 10.20.0 / firebase-android-sdk 32.7.1 ([8d3c3a0](https://github.com/invertase/react-native-firebase/commit/8d3c3a02689d8ec7dd7d705adb941808039cdd50))
497
-
498
- ## [18.7.3](https://github.com/invertase/react-native-firebase/compare/v18.7.2...v18.7.3) (2023-12-13)
499
-
500
- ### Bug Fixes
501
-
502
- - **sdk, android:** adopt firebase-android-sdk 32.7.0 ([2c13c32](https://github.com/invertase/react-native-firebase/commit/2c13c32290997bcb8b6a9a04cf4f45730eddada1))
503
-
504
- ## [18.7.2](https://github.com/invertase/react-native-firebase/compare/v18.7.1...v18.7.2) (2023-12-08)
505
-
506
- ### Bug Fixes
507
-
508
- - firebase-ios-sdk 10.19.0 ([a899390](https://github.com/invertase/react-native-firebase/commit/a8993900cbe4c22561c2fe2863899c1d60fbbfd2))
509
-
510
- ## [18.7.1](https://github.com/invertase/react-native-firebase/compare/v18.7.0...v18.7.1) (2023-11-29)
511
-
512
- ### Bug Fixes
513
-
514
- - **ios): Revert "build(ios:** specify our script phases always run" ([62b44d6](https://github.com/invertase/react-native-firebase/commit/62b44d68d3794e701e173c9f1a97e131844f0406))
515
-
516
- ## [18.7.0](https://github.com/invertase/react-native-firebase/compare/v18.6.2...v18.7.0) (2023-11-28)
517
-
518
- **Note:** Version bump only for package @react-native-firebase/app
519
-
520
- ## [18.6.2](https://github.com/invertase/react-native-firebase/compare/v18.6.1...v18.6.2) (2023-11-23)
521
-
522
- ### Bug Fixes
523
-
524
- - adopt firebase-ios-sdk 10.18.0 / firebase-android-sdk 32.6.0 ([6a8b25b](https://github.com/invertase/react-native-firebase/commit/6a8b25bc1ed22860d1cef8fa3507ca5df3a28420))
525
-
526
- ## [18.6.1](https://github.com/invertase/react-native-firebase/compare/v18.6.0...v18.6.1) (2023-11-01)
527
-
528
- ### Bug Fixes
529
-
530
- - **app, android:** adopt firebase-android-sdk 32.5.0 ([9834bfb](https://github.com/invertase/react-native-firebase/commit/9834bfb7feeef4d40d8524f81be5d1f722cae3b8))
531
- - **app, sdk:** adopt firebase-ios-sdk 10.17.0 ([c926af3](https://github.com/invertase/react-native-firebase/commit/c926af334999fb6e462487ac43f07e08f808ac13))
532
-
533
- ## [18.6.0](https://github.com/invertase/react-native-firebase/compare/v18.5.0...v18.6.0) (2023-10-26)
534
-
535
- ### Bug Fixes
536
-
537
- - **app, sdk:** adopt firebase-android-sdk 32.4.0 ([63f1893](https://github.com/invertase/react-native-firebase/commit/63f1893849578bfab85241bf4458eb845a4d857f))
538
-
539
- ## [18.5.0](https://github.com/invertase/react-native-firebase/compare/v18.4.0...v18.5.0) (2023-09-22)
540
-
541
- ### Features
542
-
543
- - **ios:** add initiateOnDeviceConversionMeasurementWithPhoneNumber ([80ac07e](https://github.com/invertase/react-native-firebase/commit/80ac07e207bad7f31a4805edb26e350f892fc5bf))
544
-
545
- ### Bug Fixes
546
-
547
- - **app, sdks:** adopt ios sdk 10.15.0 / android sdk 32.3.1 ([acc58da](https://github.com/invertase/react-native-firebase/commit/acc58da42bb471d1973645f2a2feffe180705c19))
548
-
549
- ## [18.4.0](https://github.com/invertase/react-native-firebase/compare/v18.3.2...v18.4.0) (2023-09-11)
550
-
551
- **Note:** Version bump only for package @react-native-firebase/app
552
-
553
- ## [18.3.2](https://github.com/invertase/react-native-firebase/compare/v18.3.1...v18.3.2) (2023-09-02)
554
-
555
- ### Bug Fixes
556
-
557
- - **app, sdks:** adopt firebase-android-sdk 32.2.3 ([129d6ef](https://github.com/invertase/react-native-firebase/commit/129d6ef1eb1b45be3390687a002bddfe87386fa3))
558
-
559
- ## [18.3.1](https://github.com/invertase/react-native-firebase/compare/v18.3.0...v18.3.1) (2023-08-23)
560
-
561
- ### Bug Fixes
562
-
563
- - **app, sdks:** adopt android-sdk 32.2.2 / ios-sdk 10.13.0 ([5484c0b](https://github.com/invertase/react-native-firebase/commit/5484c0b69420f888f9a3a59aec8cc59d45f1d2d6))
564
- - **app, sdks:** adopt firebase-ios-sdk 10.14.0 ([89e3bd9](https://github.com/invertase/react-native-firebase/commit/89e3bd9cbf73b1af666afde017cba801d48684e8))
565
-
566
- ## [18.3.0](https://github.com/invertase/react-native-firebase/compare/v18.2.0...v18.3.0) (2023-07-19)
567
-
568
- **Note:** Version bump only for package @react-native-firebase/app
569
-
570
- ## [18.2.0](https://github.com/invertase/react-native-firebase/compare/v18.1.0...v18.2.0) (2023-07-13)
571
-
572
- ### Bug Fixes
573
-
574
- - **app, ios:** incorporate firebase-ios-sdk 10.12.0 ([#7231](https://github.com/invertase/react-native-firebase/issues/7231)) ([ee66459](https://github.com/invertase/react-native-firebase/commit/ee66459cd214ffb84ce2d4e15eef79d047f075ab))
575
-
576
- ## [18.1.0](https://github.com/invertase/react-native-firebase/compare/v18.0.0...v18.1.0) (2023-06-22)
577
-
578
- ### Bug Fixes
579
-
580
- - **app, sdk:** adopt firebase-ios-sdk 10.11.0 ([f40cb5b](https://github.com/invertase/react-native-firebase/commit/f40cb5b46276dbd7977dc72f4a8bdf783d282b03))
581
-
582
- ## [18.0.0](https://github.com/invertase/react-native-firebase/compare/v17.5.0...v18.0.0) (2023-06-05)
583
-
584
- ### ⚠ BREAKING CHANGES
585
-
586
- - **app, sdk:** this version of the underlying firebase-ios-sdk has
587
- a minimum Xcode requirement of 14.1 which transitively implies a macOS
588
- minimum version of 12.5
589
- - **app, sdk:** the "safetyNet" provider for App Check has been removed
590
- from the underlying firebase-android-sdk and we have removed it here. You
591
- should upgrade to the "playIntegrity" provider for App Check
592
- - **app, sdks:** firebase-ios-sdk 10.8.0 and higher require Xcode 13.3+,
593
- which transitively requires macOS 12.0+. You must update your CI build environments
594
- to meet these minimums as well as your development environments - if you have older
595
- hardware that still works but cannot be upgraded normally, you may like:
596
- https://dortania.github.io/OpenCore-Legacy-Patcher/
597
-
598
- ### Features
599
-
600
- - **app, sdk:** android-sdk v32 - app-check safetyNet provider is removed ([a0e76ec](https://github.com/invertase/react-native-firebase/commit/a0e76ecab65c69a19055a84bc19c069482b1bc88))
601
- - **app, sdk:** ios-sdk 10.10.0, requires Xcode 14.1+ / macOS 12.5+ ([3122918](https://github.com/invertase/react-native-firebase/commit/3122918c19c27696caf51f30caafdcaa76807db8))
602
- - **app, sdks:** ios-sdk 10.8.0 requires Xcode 13.3+; android-sdk 31.5.0 ([86dc4d5](https://github.com/invertase/react-native-firebase/commit/86dc4d5d08a4cc7c788b057b5411ccdeb413e13e))
603
-
604
- ## [17.5.0](https://github.com/invertase/react-native-firebase/compare/v17.4.3...v17.5.0) (2023-05-11)
605
-
606
- **Note:** Version bump only for package @react-native-firebase/app
607
-
608
- ### [17.4.3](https://github.com/invertase/react-native-firebase/compare/v17.4.2...v17.4.3) (2023-04-26)
609
-
610
- ### Bug Fixes
611
-
612
- - **expo:** update dependencies of config plugins ([3e81143](https://github.com/invertase/react-native-firebase/commit/3e81143e67028f70c20530b8e1083b2a904f96f4))
613
-
614
- ### [17.4.2](https://github.com/invertase/react-native-firebase/compare/v17.4.1...v17.4.2) (2023-04-05)
615
-
616
- ### Bug Fixes
617
-
618
- - **android, auth:** phone auth supports Play Integrity now ([59b0238](https://github.com/invertase/react-native-firebase/commit/59b02382492ee568fc9d4bed933ae1cf8d7efdfb))
619
-
620
- ### [17.4.1](https://github.com/invertase/react-native-firebase/compare/v17.4.0...v17.4.1) (2023-04-01)
621
-
622
- ### Bug Fixes
623
-
624
- - **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)
625
-
626
- ## [17.4.0](https://github.com/invertase/react-native-firebase/compare/v17.3.2...v17.4.0) (2023-03-25)
627
-
628
- ### Bug Fixes
629
-
630
- - **android:** bump to firebase-android-sdk 31.3.0 ([500f15a](https://github.com/invertase/react-native-firebase/commit/500f15ab5409686d2b7defde32effce0f2b537d9))
631
- - **ios:** bump firebase-ios-sdk to 10.7.0 ([7103473](https://github.com/invertase/react-native-firebase/commit/7103473e0f0b43e2e994aa7cb9ba553906f9cf46))
632
-
633
- ### [17.3.2](https://github.com/invertase/react-native-firebase/compare/v17.3.1...v17.3.2) (2023-03-05)
634
-
635
- ### Bug Fixes
636
-
637
- - **app, android:** adopt firebase-android-sdk 31.2.3 ([24fa17e](https://github.com/invertase/react-native-firebase/commit/24fa17e710070b11d2be2851bd3ef9a81185d472))
638
- - **app, ios:** bump firebase-ios-sdk to 10.6.0 ([06a6f69](https://github.com/invertase/react-native-firebase/commit/06a6f6945280f2b22f50f9327c57c8222c80ae8a))
639
- - **expo:** extend expo config plugin regex to match latest version of AppDelegate ([#6957](https://github.com/invertase/react-native-firebase/issues/6957)) ([281deed](https://github.com/invertase/react-native-firebase/commit/281deedb2c23819816d73a864cbc0f6907a7f110))
640
-
641
- ### [17.3.1](https://github.com/invertase/react-native-firebase/compare/v17.3.0...v17.3.1) (2023-02-23)
642
-
643
- ### Bug Fixes
644
-
645
- - **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)
646
-
647
- ## [17.3.0](https://github.com/invertase/react-native-firebase/compare/v17.2.0...v17.3.0) (2023-02-15)
648
-
649
- **Note:** Version bump only for package @react-native-firebase/app
650
-
651
- ## [17.2.0](https://github.com/invertase/react-native-firebase/compare/v17.1.0...v17.2.0) (2023-02-15)
652
-
653
- ### Features
654
-
655
- - **app, android:** firebase-android-sdk 31.2.0 ([87156e7](https://github.com/invertase/react-native-firebase/commit/87156e75e16775db14ef8f9bf6b0049b15ee1277))
656
-
657
- ## [17.1.0](https://github.com/invertase/react-native-firebase/compare/v17.0.0...v17.1.0) (2023-02-09)
658
-
659
- ### Features
660
-
661
- - **app, ios:** firebase-ios-sdk 10.5.0 ([cc80d7c](https://github.com/invertase/react-native-firebase/commit/cc80d7c11f533b292d1f5b681a05a206ddc93e9c))
662
-
663
- ## [17.0.0](https://github.com/invertase/react-native-firebase/compare/v16.7.0...v17.0.0) (2023-02-02)
664
-
665
- ### ⚠ BREAKING CHANGES
666
-
667
- - **app, ios:** You must have an APNS token before calling getToken to
668
- get an FCM token on iOS. Previously it was not required. See documentation
669
- for setAPNSToken if you are using getToken in testing or have disabled
670
- FCM Swizzling, and use setAPNSToken to set a token before using getToken
671
-
672
- ### Features
673
-
674
- - **app, ios:** adopt firebase-ios-sdk 10.4.0 ([1b8df4c](https://github.com/invertase/react-native-firebase/commit/1b8df4c8e55d474c09e301f9c7b58b6128ae6485))
675
-
676
- ## [16.7.0](https://github.com/invertase/react-native-firebase/compare/v16.6.0...v16.7.0) (2023-01-28)
677
-
678
- **Note:** Version bump only for package @react-native-firebase/app
679
-
680
- ## [16.6.0](https://github.com/invertase/react-native-firebase/compare/v16.5.2...v16.6.0) (2023-01-27)
681
-
682
- **Note:** Version bump only for package @react-native-firebase/app
683
-
684
- ### [16.5.2](https://github.com/invertase/react-native-firebase/compare/v16.5.1...v16.5.2) (2023-01-23)
685
-
686
- **Note:** Version bump only for package @react-native-firebase/app
687
-
688
- ### [16.5.1](https://github.com/invertase/react-native-firebase/compare/v16.5.0...v16.5.1) (2023-01-20)
689
-
690
- **Note:** Version bump only for package @react-native-firebase/app
691
-
692
- ## [16.5.0](https://github.com/invertase/react-native-firebase/compare/v16.4.6...v16.5.0) (2022-12-16)
693
-
694
- ### Features
695
-
696
- - **app:** migrate `app` module to a modular API ([#6694](https://github.com/invertase/react-native-firebase/issues/6694)) ([c285016](https://github.com/invertase/react-native-firebase/commit/c285016618bb79fd3a559d5fdcb983bb2aadaa77))
697
-
698
- ### Bug Fixes
699
-
700
- - **app, sdks:** ios-sdk 10.3.0 / android-sdk 31.1.1 ([00708b6](https://github.com/invertase/react-native-firebase/commit/00708b680cd837ed23d41b27bb76b2895e719f79))
701
-
702
- ### [16.4.6](https://github.com/invertase/react-native-firebase/compare/v16.4.5...v16.4.6) (2022-11-18)
703
-
704
- ### Bug Fixes
705
-
706
- - **app, android:** firebase-android-sdk 31.1.0 ([af089c0](https://github.com/invertase/react-native-firebase/commit/af089c00496aa55e66ea83e87b8cf54c8144c9fb))
707
-
708
- ### [16.4.5](https://github.com/invertase/react-native-firebase/compare/v16.4.4...v16.4.5) (2022-11-16)
709
-
710
- ### Bug Fixes
711
-
712
- - **app, ios:** firebase-ios-sdk 10.2.0 ([443f460](https://github.com/invertase/react-native-firebase/commit/443f460279f6c41ce7aaaeec03a19b14135953eb))
713
-
714
- ### [16.4.4](https://github.com/invertase/react-native-firebase/compare/v16.4.3...v16.4.4) (2022-11-14)
715
-
716
- ### Bug Fixes
717
-
718
- - **crashlytics, android:** firebase-android-sdk 31.0.3 fixes NDK issue ([0d37632](https://github.com/invertase/react-native-firebase/commit/0d376327c8d843285d4ceec11d4af0bc8c16fe42))
719
-
720
- ### [16.4.3](https://github.com/invertase/react-native-firebase/compare/v16.4.2...v16.4.3) (2022-11-06)
721
-
722
- **Note:** Version bump only for package @react-native-firebase/app
723
-
724
- ### [16.4.2](https://github.com/invertase/react-native-firebase/compare/v16.4.1...v16.4.2) (2022-11-04)
725
-
726
- **Note:** Version bump only for package @react-native-firebase/app
727
-
728
- ### [16.4.1](https://github.com/invertase/react-native-firebase/compare/v16.4.0...v16.4.1) (2022-11-02)
729
-
730
- **Note:** Version bump only for package @react-native-firebase/app
731
-
732
- ## [16.4.0](https://github.com/invertase/react-native-firebase/compare/v16.3.1...v16.4.0) (2022-10-30)
733
-
734
- **Note:** Version bump only for package @react-native-firebase/app
735
-
736
- ### [16.3.1](https://github.com/invertase/react-native-firebase/compare/v16.3.0...v16.3.1) (2022-10-28)
737
-
738
- ### Bug Fixes
739
-
740
- - **app, sdks:** firebase-ios-sdk 10.1.0 / firebase-android-sdk 31.0.2 ([8367c98](https://github.com/invertase/react-native-firebase/commit/8367c9858b8d6e2a0d689d1adcc5c88c6dc377fa))
741
-
742
- ## [16.3.0](https://github.com/invertase/react-native-firebase/compare/v16.2.0...v16.3.0) (2022-10-26)
743
-
744
- ### Features
745
-
746
- - **auth:** Add multi-factor support for the sign-in flow ([#6593](https://github.com/invertase/react-native-firebase/issues/6593)) ([3c64bf5](https://github.com/invertase/react-native-firebase/commit/3c64bf5987eec73c8cc5d3f9246c4c0185eb7718))
747
-
748
- ## [16.2.0](https://github.com/invertase/react-native-firebase/compare/v16.1.1...v16.2.0) (2022-10-23)
749
-
750
- **Note:** Version bump only for package @react-native-firebase/app
751
-
752
- ### [16.1.1](https://github.com/invertase/react-native-firebase/compare/v16.1.0...v16.1.1) (2022-10-21)
753
-
754
- ### Bug Fixes
755
-
756
- - **app, android:** use firebase-android-sdk 31.0.1 ([89eb33f](https://github.com/invertase/react-native-firebase/commit/89eb33fb49b843afcb3c33480d4c6d28c5eb6e12))
757
-
758
- ## [16.1.0](https://github.com/invertase/react-native-firebase/compare/v16.0.0...v16.1.0) (2022-10-20)
759
-
760
- **Note:** Version bump only for package @react-native-firebase/app
761
-
762
- ## [16.0.0](https://github.com/invertase/react-native-firebase/compare/v15.7.1...v16.0.0) (2022-10-19)
763
-
764
- ### ⚠ BREAKING CHANGES
765
-
766
- - fix release version change type resolution
767
-
768
- ### release
769
-
770
- - fix release version change type resolution ([6fcb946](https://github.com/invertase/react-native-firebase/commit/6fcb946f7e7bbc3e7ad6605d48ce3d11f1184c70))
771
-
772
- ## [15.7.1](https://github.com/invertase/react-native-firebase/compare/v15.7.0...v15.7.1) (2022-10-19)
773
-
774
- **Note:** Inadvertent breaking change. iOS minimum deploy target bumped to 11, macOS to 10.13
775
-
776
- # [15.7.0](https://github.com/invertase/react-native-firebase/compare/v15.6.0...v15.7.0) (2022-10-01)
777
-
778
- **Note:** Version bump only for package @react-native-firebase/app
779
-
780
- # [15.6.0](https://github.com/invertase/react-native-firebase/compare/v15.5.0...v15.6.0) (2022-09-17)
781
-
782
- ### Bug Fixes
783
-
784
- - **app, ios:** correctly handle firebase.json if it has UTF-8 ([4e3ac01](https://github.com/invertase/react-native-firebase/commit/4e3ac01c94389299dffc53e6d8480760f8b18033))
785
-
786
- # [15.5.0](https://github.com/invertase/react-native-firebase/compare/v15.4.0...v15.5.0) (2022-09-16)
787
-
788
- ### Bug Fixes
789
-
790
- - **expo, ios:** expo plugin added import multiple times ([f10891a](https://github.com/invertase/react-native-firebase/commit/f10891a6d8079766374ceb7790a824d90306946a))
791
-
792
- ### Features
793
-
794
- - **android:** firebase-android-sdk 30.5.0 ([abe7620](https://github.com/invertase/react-native-firebase/commit/abe7620c35cd91bd105d64fa64777868a3482435))
795
- - **ios:** bump firebase-ios-sdk to 9.6.0 ([0ad70a9](https://github.com/invertase/react-native-firebase/commit/0ad70a90e01ac37c3129a170ebff47738e551a18))
796
-
797
- # [15.4.0](https://github.com/invertase/react-native-firebase/compare/v15.3.0...v15.4.0) (2022-08-27)
798
-
799
- ### Bug Fixes
800
-
801
- - **app, android:** bump to firebase-android-sdk 30.3.2 ([ee394fe](https://github.com/invertase/react-native-firebase/commit/ee394fe1221fcb8effa4c87716d99c3f1d556d13))
802
-
803
- ### Features
804
-
805
- - **app, ios:** bump firebase-ios-sdk to 9.5.0 ([feac7f8](https://github.com/invertase/react-native-firebase/commit/feac7f8c8b85c3cf87a34dc9a75ddb7b7b9c034b))
806
-
807
- # [15.3.0](https://github.com/invertase/react-native-firebase/compare/v15.2.0...v15.3.0) (2022-08-07)
808
-
809
- ### Bug Fixes
810
-
811
- - **app, sdk:** firebase-android-sdk 30.3.1 / firebase-ios-sdk 9.4.0 ([1fd7fc8](https://github.com/invertase/react-native-firebase/commit/1fd7fc837a31bad179ccf5d463c80f578d7cbd15)), closes [#6327](https://github.com/invertase/react-native-firebase/issues/6327)
812
-
813
- # [15.2.0](https://github.com/invertase/react-native-firebase/compare/v15.1.1...v15.2.0) (2022-07-21)
814
-
815
- ### Features
816
-
817
- - **ios, messaging:** Allow notifications in foreground on iOS, configure in firebase.json ([#6407](https://github.com/invertase/react-native-firebase/issues/6407)) ([71dee2b](https://github.com/invertase/react-native-firebase/commit/71dee2bac7a2ea58e51605a249cab7f1ac5fa7d7))
818
- - **sdks:** firebase-ios-sdk 9.3.0 / firebase-android-sdk 30.3.0 ([e03dcd1](https://github.com/invertase/react-native-firebase/commit/e03dcd19a530e178022aaebd3266e31e037c9550))
819
-
820
- ## [15.1.1](https://github.com/invertase/react-native-firebase/compare/v15.1.0...v15.1.1) (2022-06-28)
821
-
822
- **Note:** Version bump only for package @react-native-firebase/app
823
-
824
- # [15.1.0](https://github.com/invertase/react-native-firebase/compare/v15.0.0...v15.1.0) (2022-06-28)
825
-
826
- ### Features
827
-
828
- - **analytics, ios:** implement firebase.json toggle to override default SKAdNewtork registration ([5da99bd](https://github.com/invertase/react-native-firebase/commit/5da99bde9f58a5d660ab9c59c61bf91db01cd962))
829
- - **android, sdk:** use firebase-android-sdk 30.2.0 ([66e6fb0](https://github.com/invertase/react-native-firebase/commit/66e6fb0885c4f2885aeec140a9c0655a5eedd8df))
830
- - **ios, sdk:** update to firebase-ios-sdk 9.2.0 ([7affa79](https://github.com/invertase/react-native-firebase/commit/7affa7989c64012bd6fc89fcc0ecf988e7f4e92a))
831
-
832
- # [15.0.0](https://github.com/invertase/react-native-firebase/compare/v14.11.1...v15.0.0) (2022-06-20)
833
-
834
- **Note:** Version bump only for package @react-native-firebase/app
835
-
836
- ## [14.11.1](https://github.com/invertase/react-native-firebase/compare/v14.11.0...v14.11.1) (2022-06-17)
837
-
838
- ### Bug Fixes
839
-
840
- - **android:** specify that android services are not exported ([39e0444](https://github.com/invertase/react-native-firebase/commit/39e0444841e423175d325751ea6667dc8f8a6d54)), closes [/github.com/firebase/firebase-android-sdk/blob/ad135d8c3c1243b4c673e17bc032ee1052fb2a22/firebase-common/src/main/AndroidManifest.xml#L10-L12](https://github.com//github.com/firebase/firebase-android-sdk/blob/ad135d8c3c1243b4c673e17bc032ee1052fb2a22/firebase-common/src/main/AndroidManifest.xml/issues/L10-L12)
841
-
842
- # [14.11.0](https://github.com/invertase/react-native-firebase/compare/v14.10.1...v14.11.0) (2022-05-27)
843
-
844
- ### Features
845
-
846
- - **android, sdk:** firebase-android-sdk 30.1.0 ([b0462d4](https://github.com/invertase/react-native-firebase/commit/b0462d4d34d1518a50daeca09288bf4aa0e0f695))
847
-
848
- ## [14.10.1](https://github.com/invertase/react-native-firebase/compare/v14.10.0...v14.10.1) (2022-05-26)
849
-
850
- ### Bug Fixes
851
-
852
- - **android, sdk:** bump firebase-android-sdk to 30.0.2 ([ad6f928](https://github.com/invertase/react-native-firebase/commit/ad6f928c888ac3b0264211d471874f15aea6b6d9))
853
-
854
- # [14.10.0](https://github.com/invertase/react-native-firebase/compare/v14.9.4...v14.10.0) (2022-05-26)
855
-
856
- **Note:** Version bump only for package @react-native-firebase/app
857
-
858
- ## [14.9.4](https://github.com/invertase/react-native-firebase/compare/v14.9.3...v14.9.4) (2022-05-14)
859
-
860
- ### Bug Fixes
861
-
862
- - **android:** firebase-android-sdk 30.0.1 ([c5e6b41](https://github.com/invertase/react-native-firebase/commit/c5e6b41eaec0d7238665495caf3e0f9572427e1e)), closes [#6158](https://github.com/invertase/react-native-firebase/issues/6158)
863
-
864
- ## [14.9.3](https://github.com/invertase/react-native-firebase/compare/v14.9.2...v14.9.3) (2022-05-10)
865
-
866
- **Note:** Version bump only for package @react-native-firebase/app
867
-
868
- ## [14.9.2](https://github.com/invertase/react-native-firebase/compare/v14.9.1...v14.9.2) (2022-05-10)
869
-
870
- ### Bug Fixes
871
-
872
- - **ios, app:** macOS 12.3 removed python, use python3 ([1f609d3](https://github.com/invertase/react-native-firebase/commit/1f609d379117532d014bc44735827d38d79a36e9)), closes [#6226](https://github.com/invertase/react-native-firebase/issues/6226) [#6203](https://github.com/invertase/react-native-firebase/issues/6203)
873
-
874
- ## [14.9.1](https://github.com/invertase/react-native-firebase/compare/v14.9.0...v14.9.1) (2022-04-28)
875
-
876
- ### Bug Fixes
877
-
878
- - **ios, expo:** add Expo plugin objcpp / Expo 45 compatibility ([#6223](https://github.com/invertase/react-native-firebase/issues/6223)) ([9de82d3](https://github.com/invertase/react-native-firebase/commit/9de82d356862d7dc359d90b4cd1643724de3a862))
879
-
880
- # [14.9.0](https://github.com/invertase/react-native-firebase/compare/v14.8.1...v14.9.0) (2022-04-27)
881
-
882
- **Note:** Version bump only for package @react-native-firebase/app
883
-
884
- ## [14.8.1](https://github.com/invertase/react-native-firebase/compare/v14.8.0...v14.8.1) (2022-04-25)
885
-
886
- ### Bug Fixes
887
-
888
- - **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))
889
-
890
- # [14.8.0](https://github.com/invertase/react-native-firebase/compare/v14.7.0...v14.8.0) (2022-04-19)
891
-
892
- ### Features
893
-
894
- - **ios, sdk:** bump firebase-ios-sdk to 8.15.0 ([377b465](https://github.com/invertase/react-native-firebase/commit/377b465bd5ac93d18f5d3792d3c0eb2ef80c8d7e))
895
-
896
- # [14.7.0](https://github.com/invertase/react-native-firebase/compare/v14.6.0...v14.7.0) (2022-03-23)
897
-
898
- ### Features
899
-
900
- - **ios, sdk:** bump to firebase-ios-sdk 8.14.0 ([ba1ddb5](https://github.com/invertase/react-native-firebase/commit/ba1ddb5927f12f5f0abe8a4b23b3fd68fa8626bd))
901
-
902
- # [14.6.0](https://github.com/invertase/react-native-firebase/compare/v14.5.1...v14.6.0) (2022-03-23)
903
-
904
- ### Bug Fixes
905
-
906
- - **ios, expo:** use modern import style, required by Expo 44+ ([4060827](https://github.com/invertase/react-native-firebase/commit/4060827c318db8dcc2791bfe6635902a9c4e33bb))
907
-
908
- ### Features
909
-
910
- - **sdks:** firebase-ios-sdk 8.13.0 ([95da53e](https://github.com/invertase/react-native-firebase/commit/95da53ef6cdd1b67ade4a53dbd8164bd906b9d53))
911
-
912
- ## [14.5.1](https://github.com/invertase/react-native-firebase/compare/v14.5.0...v14.5.1) (2022-03-05)
913
-
914
- **Note:** Version bump only for package @react-native-firebase/app
915
-
916
- # [14.5.0](https://github.com/invertase/react-native-firebase/compare/v14.4.0...v14.5.0) (2022-02-15)
917
-
918
- **Note:** Version bump only for package @react-native-firebase/app
919
-
920
- # [14.4.0](https://github.com/invertase/react-native-firebase/compare/v14.3.3...v14.4.0) (2022-02-13)
921
-
922
- **Note:** Version bump only for package @react-native-firebase/app
923
-
924
- ## [14.3.3](https://github.com/invertase/react-native-firebase/compare/v14.3.2...v14.3.3) (2022-02-12)
925
-
926
- ### Bug Fixes
927
-
928
- - **android, sdk:** bump firebase-android-sdk to 29.1.0 ([292c424](https://github.com/invertase/react-native-firebase/commit/292c4240bb6220beddbbdb0db7e6700ddd41a24f))
929
-
930
- ## [14.3.2](https://github.com/invertase/react-native-firebase/compare/v14.3.1...v14.3.2) (2022-02-10)
931
-
932
- ### Bug Fixes
933
-
934
- - **app, ios:** use NSInteger not NSInteger\* for prefs ([0148901](https://github.com/invertase/react-native-firebase/commit/01489010c920fc8e367a04f9decb8a8c94c5d8c1))
935
- - **ios, sdk:** bump to firebase-ios-sdk 8.12.1 ([da6cf01](https://github.com/invertase/react-native-firebase/commit/da6cf013815c5f8f43e4c03e721f3c270a5834e2))
936
-
937
- ## [14.3.1](https://github.com/invertase/react-native-firebase/compare/v14.3.0...v14.3.1) (2022-02-07)
938
-
939
- ### Bug Fixes
940
-
941
- - **app:** specify hyphenated package name in import advice ([5e898ec](https://github.com/invertase/react-native-firebase/commit/5e898ecb49bb73999c7ea5172f8f17753a71a90a)), closes [#6009](https://github.com/invertase/react-native-firebase/issues/6009)
942
-
943
- # [14.3.0](https://github.com/invertase/react-native-firebase/compare/v14.2.4...v14.3.0) (2022-01-26)
944
-
945
- **Note:** Version bump only for package @react-native-firebase/app
946
-
947
- ## [14.2.4](https://github.com/invertase/react-native-firebase/compare/v14.2.3...v14.2.4) (2022-01-24)
948
-
949
- ### Bug Fixes
950
-
951
- - **android, sdk:** bump firebase-android-sdk + versions in docs ([8bda4be](https://github.com/invertase/react-native-firebase/commit/8bda4be52bd4b19b2d330c8f95d132d7a5b5885a))
952
-
953
- ## [14.2.3](https://github.com/invertase/react-native-firebase/compare/v14.2.2...v14.2.3) (2022-01-20)
954
-
955
- ### Bug Fixes
956
-
957
- - **ios, sdk:** bump firebase-ios-sdk to 8.11.0 ([40322e2](https://github.com/invertase/react-native-firebase/commit/40322e2d97719d4e32146beb30ad561ea86ea3e8))
958
-
959
- ## [14.2.2](https://github.com/invertase/react-native-firebase/compare/v14.2.1...v14.2.2) (2022-01-06)
960
-
961
- ### Bug Fixes
962
-
963
- - **app, android:** minSdk should be 19 to match firebase-android-sdk ([#5984](https://github.com/invertase/react-native-firebase/issues/5984)) ([8015779](https://github.com/invertase/react-native-firebase/commit/8015779035835e03746754a1f28b16bd83407376))
964
-
965
- ## [14.2.1](https://github.com/invertase/react-native-firebase/compare/v14.2.0...v14.2.1) (2021-12-31)
966
-
967
- **Note:** Version bump only for package @react-native-firebase/app
968
-
969
- # [14.2.0](https://github.com/invertase/react-native-firebase/compare/v14.1.0...v14.2.0) (2021-12-31)
970
-
971
- **Note:** Version bump only for package @react-native-firebase/app
972
-
973
- # [14.1.0](https://github.com/invertase/react-native-firebase/compare/v14.0.1...v14.1.0) (2021-12-18)
974
-
975
- ### Bug Fixes
976
-
977
- - **app, android:** firebase-android-sdk 29.0.3 to fix underlying NPE in 29.0.2 ([#5946](https://github.com/invertase/react-native-firebase/issues/5946)) ([051f4a6](https://github.com/invertase/react-native-firebase/commit/051f4a66d64db42f1c615580e185eaf00660fbc1))
978
-
979
- ### Features
980
-
981
- - **analytics, config:** expose automatic screenview reporting toggle ([#5948](https://github.com/invertase/react-native-firebase/issues/5948)) ([8836c01](https://github.com/invertase/react-native-firebase/commit/8836c01dcfa2f478f973a1a54253509c3368d963))
982
-
983
- ## [14.0.1](https://github.com/invertase/react-native-firebase/compare/v14.0.0...v14.0.1) (2021-12-15)
984
-
985
- ### Bug Fixes
986
-
987
- - **app, expo:** Update AppDelegate config plugin for Expo SDK 44 ([#5940](https://github.com/invertase/react-native-firebase/issues/5940)) ([185756d](https://github.com/invertase/react-native-firebase/commit/185756df6de238aa8a018007cf6b2fa810cb6055))
988
-
989
- # [14.0.0](https://github.com/invertase/react-native-firebase/compare/v13.1.1...v14.0.0) (2021-12-14)
990
-
991
- **Note:** Version bump only for package @react-native-firebase/app
992
-
993
- ## [13.1.1](https://github.com/invertase/react-native-firebase/compare/v13.1.0...v13.1.1) (2021-12-14)
994
-
995
- ### Bug Fixes
996
-
997
- - **deps:** AGP7.0.4, firebase-android-sdk 29.0.2, javascript deps ([55d0a36](https://github.com/invertase/react-native-firebase/commit/55d0a36a0addc54e347f26bb8ee88bb38b0fa4a6))
998
-
999
- # [13.1.0](https://github.com/invertase/react-native-firebase/compare/v13.0.1...v13.1.0) (2021-12-02)
1000
-
1001
- ### Features
1002
-
1003
- - **android, emulator:** add firebase.json config element to bypass localhost remap ([#5852](https://github.com/invertase/react-native-firebase/issues/5852)) ([ddf3f5f](https://github.com/invertase/react-native-firebase/commit/ddf3f5f43d2c8547879934c3169d3e01c0db44c0))
1004
- - **sdks:** firebase-ios-sdk 8.10.0 / firebase-android-sdk 29.0.1 ([f6949c9](https://github.com/invertase/react-native-firebase/commit/f6949c9f3669df6d8b3f78bbee97bee2f36b7df3))
1005
-
1006
- ## [13.0.1](https://github.com/invertase/react-native-firebase/compare/v13.0.0...v13.0.1) (2021-11-05)
1007
-
1008
- ### Bug Fixes
1009
-
1010
- - **ios, sdks:** bump firebase-ios-sdk to 8.9.1 ([4871131](https://github.com/invertase/react-native-firebase/commit/4871131c3587e138398719ef5537731ee4fbe90a))
1011
-
1012
- # [13.0.0](https://github.com/invertase/react-native-firebase/compare/v12.9.3...v13.0.0) (2021-10-31)
1013
-
1014
- ### Bug Fixes
1015
-
1016
- - rename default branch to main ([25e1d3d](https://github.com/invertase/react-native-firebase/commit/25e1d3d5a1a8311588938dc9d8fdf71d11cd9963))
1017
-
1018
- - 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)
1019
-
1020
- ### Features
1021
-
1022
- - **ios, sdks:** bump firebase-ios-sdk to 8.9.0 ([bb9ba50](https://github.com/invertase/react-native-firebase/commit/bb9ba50ff4df82980943c0a76069d432e5371ed6))
1023
-
1024
- ### BREAKING CHANGES
1025
-
1026
- - firebase-android-sdk 29 requires android/build.gradle minSdkVersion 19 (as required in react-native 0.64+)
1027
-
1028
- ## [12.9.3](https://github.com/invertase/react-native-firebase/compare/v12.9.2...v12.9.3) (2021-10-22)
1029
-
1030
- ### Bug Fixes
1031
-
1032
- - **app, ios-config:** use fully-specified path for /usr/bin/head ([5baaf13](https://github.com/invertase/react-native-firebase/commit/5baaf136ce291b0ec703a9ecd3e5e907a37c3040)), closes [#5801](https://github.com/invertase/react-native-firebase/issues/5801)
1033
-
1034
- ## [12.9.2](https://github.com/invertase/react-native-firebase/compare/v12.9.1...v12.9.2) (2021-10-17)
1035
-
1036
- ### Bug Fixes
1037
-
1038
- - **app, expo:** update iOS `AppDelegate` plugin to work with Expo SDK 43 ([#5796](https://github.com/invertase/react-native-firebase/issues/5796)) ([d67c3b9](https://github.com/invertase/react-native-firebase/commit/d67c3b906d1bb6d858269efba8b597891faf8772))
1039
-
1040
- ## [12.9.1](https://github.com/invertase/react-native-firebase/compare/v12.9.0...v12.9.1) (2021-10-10)
1041
-
1042
- ### Bug Fixes
1043
-
1044
- - **app, sdks:** bump firebase-android-sdk to 28.4.2 ([e33c0ac](https://github.com/invertase/react-native-firebase/commit/e33c0ac2603c4f99e627c93456081ea693a8f0c6))
1045
-
1046
- # [12.9.0](https://github.com/invertase/react-native-firebase/compare/v12.8.0...v12.9.0) (2021-10-03)
1047
-
1048
- ### Bug Fixes
1049
-
1050
- - **ios, app:** minimum cocoapods version is 1.10.2, not just 1.10.0 ([914e447](https://github.com/invertase/react-native-firebase/commit/914e447173356ee861858b766020899bd33438d5))
1051
-
1052
- ### Features
1053
-
1054
- - **sdk:** bump firebase-ios-sdk to 8.8.0 ([c56bdb3](https://github.com/invertase/react-native-firebase/commit/c56bdb3171e998efa1b7860519a06a5fb3515ac2))
1055
-
1056
- # [12.8.0](https://github.com/invertase/react-native-firebase/compare/v12.7.5...v12.8.0) (2021-09-14)
1057
-
1058
- ### Features
1059
-
1060
- - **sdk:** firebase-ios-sdk to 8.7.0 / firebase-android-sdk 28.4.1 ([ee79ab3](https://github.com/invertase/react-native-firebase/commit/ee79ab334335767e0b1603190ad0ceda890e0c10))
1061
-
1062
- ## [12.7.5](https://github.com/invertase/react-native-firebase/compare/v12.7.4...v12.7.5) (2021-09-04)
1063
-
1064
- ### Bug Fixes
1065
-
1066
- - **app, ios:** correct path to 'Info.plist' for ios build dependency ([#5677](https://github.com/invertase/react-native-firebase/issues/5677)) ([ea6920c](https://github.com/invertase/react-native-firebase/commit/ea6920c3e900d76cce254a8da1704f50f3f2bc9a)), closes [#5152](https://github.com/invertase/react-native-firebase/issues/5152) [#5153](https://github.com/invertase/react-native-firebase/issues/5153)
1067
-
1068
- ## [12.7.4](https://github.com/invertase/react-native-firebase/compare/v12.7.3...v12.7.4) (2021-08-31)
1069
-
1070
- **Note:** Version bump only for package @react-native-firebase/app
1071
-
1072
- ## [12.7.3](https://github.com/invertase/react-native-firebase/compare/v12.7.2...v12.7.3) (2021-08-24)
1073
-
1074
- **Note:** Version bump only for package @react-native-firebase/app
1075
-
1076
- ## [12.7.2](https://github.com/invertase/react-native-firebase/compare/v12.7.1...v12.7.2) (2021-08-21)
1077
-
1078
- **Note:** Version bump only for package @react-native-firebase/app
1079
-
1080
- ## [12.7.1](https://github.com/invertase/react-native-firebase/compare/v12.7.0...v12.7.1) (2021-08-20)
1081
-
1082
- ### Bug Fixes
1083
-
1084
- - **app, android:** react-native 0.65 compatibility ([262452d](https://github.com/invertase/react-native-firebase/commit/262452d69c2dadd79475235fca42c12b18b2e208))
1085
-
1086
- # [12.7.0](https://github.com/invertase/react-native-firebase/compare/v12.6.1...v12.7.0) (2021-08-19)
1087
-
1088
- ### Features
1089
-
1090
- - **app-distribution:** Implement Firebase App Distribution module ([8fa1263](https://github.com/invertase/react-native-firebase/commit/8fa1263bc657b7d1d0630bc193097cb5d4aa631a))
1091
- - **app, config:** implement setLogLevel API ([cac7be3](https://github.com/invertase/react-native-firebase/commit/cac7be33ca70b37103ba8635ed64e755e0728c9d))
1092
- - **app, ios:** adopt firebase-ios-sdk 8.6.0 ([22d79f1](https://github.com/invertase/react-native-firebase/commit/22d79f136363f2ba67e9a0920c69a71fdffdb444))
1093
- - **installations:** implement Firebase Installations module ([3ef3410](https://github.com/invertase/react-native-firebase/commit/3ef3410e265515c8fd3653728727a0048ffdbd87))
1094
-
1095
- ## [12.6.1](https://github.com/invertase/react-native-firebase/compare/v12.6.0...v12.6.1) (2021-08-17)
1096
-
1097
- **Note:** Version bump only for package @react-native-firebase/app
1098
-
1099
- # [12.6.0](https://github.com/invertase/react-native-firebase/compare/v12.5.0...v12.6.0) (2021-08-16)
1100
-
1101
- ### Bug Fixes
1102
-
1103
- - **app-check, ios:** allow token auto refresh config in firebase.json ([b9670c1](https://github.com/invertase/react-native-firebase/commit/b9670c1194e5460fbfcc0d90b462062eaed8538b))
1104
- - **app, android:** put app init provider / registrar in correct manifest ([8408160](https://github.com/invertase/react-native-firebase/commit/8408160d93be7f9a29f4aea9df3799aafdf6f69e))
1105
- - **app, expo:** node 12 compatibility with `fs.promises` in ios plugin ([#5591](https://github.com/invertase/react-native-firebase/issues/5591)) ([97f9090](https://github.com/invertase/react-native-firebase/commit/97f90900ec9b983bdd2cf640fcda5c3435aa1abe))
1106
- - **in-app-messaging, config:** implement in_app_messaging_auto_collection_enabled firebase.json setting ([9d11ce9](https://github.com/invertase/react-native-firebase/commit/9d11ce93b81fe7818cb264bac1b36c60daac3463))
1107
- - **sdks, android:** firebase-android-sdk 28.3.1, google-services plugin 4.3.10 ([4562cd8](https://github.com/invertase/react-native-firebase/commit/4562cd8ccb70c3f964e9c038d2eca6eb87bcba60))
1108
-
1109
- ### Features
1110
-
1111
- - **analytics, config:** expose all the native data collection toggles ([f5eaffb](https://github.com/invertase/react-native-firebase/commit/f5eaffbfaf7e165b205692dd5b1b16e87b09d5a2))
1112
- - **app, config:** implement app_data_collection_default_enabled firebase.json key ([1e47d45](https://github.com/invertase/react-native-firebase/commit/1e47d455aa3a99b4ad6e08caf491be3df63a7f55))
1113
- - **perf, config:** expose perf module deactivate toggle ([4e25bf6](https://github.com/invertase/react-native-firebase/commit/4e25bf63237f42b98ae5cd2ef424408299992c03))
1114
-
1115
- # [12.5.0](https://github.com/invertase/react-native-firebase/compare/v12.4.0...v12.5.0) (2021-08-12)
1116
-
1117
- ### Bug Fixes
1118
-
1119
- - **app, expo:** Use `fs/promises` in Node 12 compatible way ([#5585](https://github.com/invertase/react-native-firebase/issues/5585)) ([64f569a](https://github.com/invertase/react-native-firebase/commit/64f569acd2cea284baa305451df9533f138539e7))
1120
- - **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))
1121
-
1122
- ### Features
1123
-
1124
- - **app-check:** implement AppCheck module ([8cd4fa3](https://github.com/invertase/react-native-firebase/commit/8cd4fa33d8df8fc72f2484665423986d12fc65fa))
1125
- - **ios, sdks:** bump firebase-ios-sdk to 8.5.0 ([d4b2015](https://github.com/invertase/react-native-firebase/commit/d4b2015f8def4759b95072cd4bca86eda0443c54))
1126
-
1127
- # [12.4.0](https://github.com/invertase/react-native-firebase/compare/v12.3.0...v12.4.0) (2021-07-29)
1128
-
1129
- ### Features
1130
-
1131
- - **sdks, android:** use firebase-android-sdk 28.3.0, play-services-auth 19.2.0 ([#5555](https://github.com/invertase/react-native-firebase/issues/5555)) ([edcd4e2](https://github.com/invertase/react-native-firebase/commit/edcd4e2244ffcf4734648b402d5714e41c4d3539))
1132
- - Add Expo config plugin ([#5480](https://github.com/invertase/react-native-firebase/issues/5480)) ([832057c](https://github.com/invertase/react-native-firebase/commit/832057cfbdf1778ad2141a1ad4466d2e8c24b8ce))
1133
-
1134
- # [12.3.0](https://github.com/invertase/react-native-firebase/compare/v12.2.0...v12.3.0) (2021-07-21)
1135
-
1136
- ### Features
1137
-
1138
- - **ios:** bump firebase-ios-sdk dependency to 8.4.0 ([7a75cb9](https://github.com/invertase/react-native-firebase/commit/7a75cb94eb0ee2196895dd9216ef566b059d4822))
1139
-
1140
- # [12.2.0](https://github.com/invertase/react-native-firebase/compare/v12.1.0...v12.2.0) (2021-07-16)
1141
-
1142
- ### Features
1143
-
1144
- - firebase-ios-sdk 8.3.0 / firebase-android-sdk 28.2.1 ([c73ea10](https://github.com/invertase/react-native-firebase/commit/c73ea103b1ae8b6171d8719b752459cecb9a9359))
1145
- - **app, sdks:** use firebase-ios-sdk 8.2.0 / firebase-android-sdk 28.2.0 ([0d26af9](https://github.com/invertase/react-native-firebase/commit/0d26af9638b15eb2220d12127b3626c899818ade))
1146
-
1147
- # [12.1.0](https://github.com/invertase/react-native-firebase/compare/v12.0.0...v12.1.0) (2021-06-11)
1148
-
1149
- ### Features
1150
-
1151
- - **app:** bump SDKs: firebase-android-sdk 28.1.0 / firebase-ios-sdk 8.1.1 ([d64e2e5](https://github.com/invertase/react-native-firebase/commit/d64e2e562051a3c3da39da32582ea835b2c7d928))
1152
-
1153
- # [12.0.0](https://github.com/invertase/react-native-firebase/compare/v11.5.0...v12.0.0) (2021-05-19)
1154
-
1155
- ### Features
1156
-
1157
- - **sdks:** firebase-ios-sdk 8.0.0 / firebase-android-sdk 28.0.1 ([d97587b](https://github.com/invertase/react-native-firebase/commit/d97587b33aa4c092a0d34291e24491ca66f9bcaa))
1158
- - **storage, emulator:** implement storage emulator ([1d3e946](https://github.com/invertase/react-native-firebase/commit/1d3e946a4131a9ceaf3e82aab7f1759ef5aa2cb4))
1159
-
1160
- - chore(storage, android)!: remove EXTERNAL_STORAGE permissions for Android 10/11 compat ([69b6f88](https://github.com/invertase/react-native-firebase/commit/69b6f88f078facb07001a6fa8da04812c73077fb))
1161
-
1162
- ### Bug Fixes
1163
-
1164
- - **android:** correct lint issues for various API mis-use ([eb8d893](https://github.com/invertase/react-native-firebase/commit/eb8d89306fd569d7ef64298a99e970c653b79178)), closes [#3917](https://github.com/invertase/react-native-firebase/issues/3917)
1165
-
1166
- ### BREAKING CHANGES
1167
-
1168
- - if you need READ_EXTERNAL_STORAGE/WRITE_EXTERNAL_STORAGE permission add them in your app AndroidManifest.xml
1169
-
1170
- # [11.5.0](https://github.com/invertase/react-native-firebase/compare/v11.4.1...v11.5.0) (2021-05-12)
1171
-
1172
- ### Bug Fixes
1173
-
1174
- - **app, json-schema:** admob_delay_app_measurement_init type is boolean ([#5297](https://github.com/invertase/react-native-firebase/issues/5297)) ([d931b48](https://github.com/invertase/react-native-firebase/commit/d931b48f9e2a5caca47d354e26eaca2bd210dc8f)), closes [#5295](https://github.com/invertase/react-native-firebase/issues/5295)
1175
-
1176
- ## [11.4.1](https://github.com/invertase/react-native-firebase/compare/v11.4.0...v11.4.1) (2021-04-29)
1177
-
1178
- **Note:** Version bump only for package @react-native-firebase/app
1179
-
1180
- # [11.4.0](https://github.com/invertase/react-native-firebase/compare/v11.3.3...v11.4.0) (2021-04-29)
1181
-
1182
- ### Release Status
1183
-
1184
- This release was partial, npmjs.com rejected some of the monorepo packages while releasing 11.4.0. 11.4.1 to follow with no changes from 11.4.0.
1185
-
1186
- ### Bug Fixes
1187
-
1188
- - **app, android:** correct TaskExecutor shutdown error ([a7729a5](https://github.com/invertase/react-native-firebase/commit/a7729a5dfac1f70b3a442452a99da9977d89d9e3)), closes [#5225](https://github.com/invertase/react-native-firebase/issues/5225)
1189
-
1190
- ### Features
1191
-
1192
- - **app, android:** support list of Activities to ignore when detecting AppState ([#5235](https://github.com/invertase/react-native-firebase/issues/5235)) ([50a384f](https://github.com/invertase/react-native-firebase/commit/50a384f2a2ba61d078521e89594f4e576f1e1f46))
1193
- - **app, firebase-ios-sdk:** move to version 7.11.0 ([f25d25d](https://github.com/invertase/react-native-firebase/commit/f25d25d36d2df204f58f69700509a1ccb23784a9))
1194
-
1195
- ## [11.3.3](https://github.com/invertase/react-native-firebase/compare/v11.3.2...v11.3.3) (2021-04-24)
1196
-
1197
- ### Bug Fixes
1198
-
1199
- - **app, android:** avoid API24-only APIs, fix Android < 7 crash from 11.3.0 ([#5206](https://github.com/invertase/react-native-firebase/issues/5206)) ([49c15f8](https://github.com/invertase/react-native-firebase/commit/49c15f81c9cb51fef5cf6f8140d13f12911670eb))
1200
-
1201
- ## [11.3.2](https://github.com/invertase/react-native-firebase/compare/v11.3.1...v11.3.2) (2021-04-19)
1202
-
1203
- ### Bug Fixes
1204
-
1205
- - **all, android:** purge jcenter() from android build ([2c6a6a8](https://github.com/invertase/react-native-firebase/commit/2c6a6a82ec363fd948ea880fd397acb886c97453))
1206
-
1207
- ## [11.3.1](https://github.com/invertase/react-native-firebase/compare/v11.3.0...v11.3.1) (2021-04-18)
1208
-
1209
- **Note:** Version bump only for package @react-native-firebase/app
1210
-
1211
- # [11.3.0](https://github.com/invertase/react-native-firebase/compare/v11.2.0...v11.3.0) (2021-04-16)
1212
-
1213
- ### Bug Fixes
1214
-
1215
- - **android, utils:** fix rare crash getting documents directory ([#5118](https://github.com/invertase/react-native-firebase/issues/5118)) ([f0a2957](https://github.com/invertase/react-native-firebase/commit/f0a29573e748035468f13f9c03c6cf3b9148dafe))
1216
- - **app, ios:** formally note cocoapods v1.10+ requirement in podspec ([3c90c59](https://github.com/invertase/react-native-firebase/commit/3c90c5931e9777eda1614ae1f443c6de79540f01))
1217
- - **app, ios-plist:** make sure Info.plist exists before processing ([245149c](https://github.com/invertase/react-native-firebase/commit/245149c635aeb9a02528a00f0a4451644e1fdf3a)), closes [#5152](https://github.com/invertase/react-native-firebase/issues/5152)
1218
- - **app, secondary:** reject if initializeApp fails on iOS ([d76eba3](https://github.com/invertase/react-native-firebase/commit/d76eba3a4d1c6ffddf6c38ae59c0b529dde106e9)), closes [#5134](https://github.com/invertase/react-native-firebase/issues/5134)
1219
-
1220
- ### Features
1221
-
1222
- - **crashlytics:** add configuration to exception handler chaining behavior ([4c640ff](https://github.com/invertase/react-native-firebase/commit/4c640ff52e1fb692bddcbeb76a2ff2a302e56334))
1223
- - **ios, sdks:** bump firebase-ios-sdk to 7.10.0 ([d2838ff](https://github.com/invertase/react-native-firebase/commit/d2838ffeda34816219539fd1ac0c651b232e8a46))
1224
-
1225
- ### Performance Improvements
1226
-
1227
- - increase task throughput in Android using thread pool executor ([#4981](https://github.com/invertase/react-native-firebase/issues/4981)) ([0e4e331](https://github.com/invertase/react-native-firebase/commit/0e4e3312315c020ecd760f8d3fea4f0347d2276b))
1228
-
1229
- # [11.2.0](https://github.com/invertase/react-native-firebase/compare/v11.1.2...v11.2.0) (2021-03-26)
1230
-
1231
- ### Features
1232
-
1233
- - **sdks:** firebase-ios-sdk 7.9.0 / firebase-android-sdk 26.8.0 ([324f8ff](https://github.com/invertase/react-native-firebase/commit/324f8ffa0baf759c000efa1f4a024e527eddf8d7))
1234
-
1235
- ## [11.1.2](https://github.com/invertase/react-native-firebase/compare/v11.1.1...v11.1.2) (2021-03-17)
1236
-
1237
- **Note:** Version bump only for package @react-native-firebase/app
1238
-
1239
- ## [11.1.1](https://github.com/invertase/react-native-firebase/compare/v11.1.0...v11.1.1) (2021-03-16)
1240
-
1241
- ### Bug Fixes
1242
-
1243
- - **app, firebase-ios-sdk:** bump to firebase-ios-sdk v7.8.1 for analytics fix ([8cd1d6e](https://github.com/invertase/react-native-firebase/commit/8cd1d6e77e124a0d21c64d146bfe62e351a754c7))
1244
-
1245
- # [11.1.0](https://github.com/invertase/react-native-firebase/compare/v11.0.0...v11.1.0) (2021-03-13)
1246
-
1247
- ### Bug Fixes
1248
-
1249
- - **app, android:** fixes possible crash on first launch ([#4990](https://github.com/invertase/react-native-firebase/issues/4990)) ([06eebad](https://github.com/invertase/react-native-firebase/commit/06eebada2c74c57504d8cc1cdfa446ee77d48fce)), closes [#4979](https://github.com/invertase/react-native-firebase/issues/4979)
1250
- - **app, types:** initializeApp returns Promise<FirebaseApp> ([f3b955c](https://github.com/invertase/react-native-firebase/commit/f3b955c0f4ea5e50920499c917576f587f149f93))
1251
-
1252
- ### Features
1253
-
1254
- - **app, sdks:** firebase-ios-sdk v7.8.0 / firebase-android-sdk v26.7.0 ([d2b0074](https://github.com/invertase/react-native-firebase/commit/d2b0074b36254743ce980a23e3e61771b79be52a))
1255
-
1256
- # [11.0.0](https://github.com/invertase/react-native-firebase/compare/v10.8.1...v11.0.0) (2021-03-03)
1257
-
1258
- ### Bug Fixes
1259
-
1260
- - **app, ios:** failing to resolve ios sdk from package.json is an error ([29d797d](https://github.com/invertase/react-native-firebase/commit/29d797dd7f7201104547961a7db702bfff635b57))
1261
-
1262
- ### Features
1263
-
1264
- - **android, sdk:** update firebase-android-sdk to 26.6.0 ([5786641](https://github.com/invertase/react-native-firebase/commit/5786641ea68dc4c0c1899a12b0a56491cff3b894)), closes [/firebase.google.com/support/release-notes/android#bom_v26-6-0](https://github.com/invertase/react-native-firebase/issues/bom_v26-6-0)
1265
- - **ios, sdk:** bump firebase-ios-sdk to v7.7.0 ([bc893ab](https://github.com/invertase/react-native-firebase/commit/bc893ab8f44193a58ca6a119838d0464dc6081ba))
1266
-
1267
- ## [10.8.1](https://github.com/invertase/react-native-firebase/compare/v10.8.0...v10.8.1) (2021-02-22)
1268
-
1269
- **Note:** Version bump only for package @react-native-firebase/app
1270
-
1271
- # [10.8.0](https://github.com/invertase/react-native-firebase/compare/v10.7.0...v10.8.0) (2021-02-13)
1272
-
1273
- ### Features
1274
-
1275
- - **app, android-sdk:** 26.5.0 (requires gradle v5.6.4+ / android gradle plugin v3.4.2+) ([1132f16](https://github.com/invertase/react-native-firebase/commit/1132f1629dd6b2d0ff9fdb00e47e075773a1dc60))
1276
-
1277
- # [10.7.0](https://github.com/invertase/react-native-firebase/compare/v10.6.4...v10.7.0) (2021-02-09)
1278
-
1279
- ### Bug Fixes
1280
-
1281
- - **auth, android:** do not timezone offset when getting UTC timestamp ([#4886](https://github.com/invertase/react-native-firebase/issues/4886)) ([85d6801](https://github.com/invertase/react-native-firebase/commit/85d6801ecbe9b3922225c55ca3628675ad848764))
1282
-
1283
- ### Features
1284
-
1285
- - **ios, sdk:** bump firebase-ios-sdk from 7.5.0 to 7.6.0 ([2e283f7](https://github.com/invertase/react-native-firebase/commit/2e283f72322e612a0c82b1d116f3ecfa58904ea9)), closes [/firebase.google.com/support/release-notes/ios#7](https://github.com/invertase/react-native-firebase/issues/7)
1286
-
1287
- ## [10.6.4](https://github.com/invertase/react-native-firebase/compare/v10.6.3...v10.6.4) (2021-02-05)
1288
-
1289
- **Note:** Version bump only for package @react-native-firebase/app
1290
-
1291
- ## [10.6.3](https://github.com/invertase/react-native-firebase/compare/v10.6.2...v10.6.3) (2021-02-05)
1292
-
1293
- **Note:** Version bump only for package @react-native-firebase/app
1294
-
1295
- ## [10.6.2](https://github.com/invertase/react-native-firebase/compare/v10.6.1...v10.6.2) (2021-02-05)
1296
-
1297
- **Note:** Version bump only for package @react-native-firebase/app
1298
-
1299
- ## [10.6.1](https://github.com/invertase/react-native-firebase/compare/v10.6.0...v10.6.1) (2021-02-04)
1300
-
1301
- **Note:** Version bump only for package @react-native-firebase/app
1302
-
1303
- # [10.6.0](https://github.com/invertase/react-native-firebase/compare/v10.5.1...v10.6.0) (2021-02-04)
1304
-
1305
- ### Features
1306
-
1307
- - **app:** firebase-ios-sdk 7.4.0 -> 7.5.0, firebase-android-sdk 26.3.0 -> 26.4.0 ([9c4ada8](https://github.com/invertase/react-native-firebase/commit/9c4ada893c8c49afc454d1fe6084ba2572f2a25f))
1308
- - **perf:** support "perf_auto_collection_enabled" flag in firebase.json ([#4870](https://github.com/invertase/react-native-firebase/issues/4870)) ([e54bf49](https://github.com/invertase/react-native-firebase/commit/e54bf49ec880b309f8ffc244d3bb0da74a5d4ddd))
1309
-
1310
- # [10.5.0](https://github.com/invertase/react-native-firebase/compare/v10.4.1...v10.5.0) (2021-01-18)
1311
-
1312
- ### Bug Fixes
1313
-
1314
- - **app, android:** require default firebase.json boolean key ([#4791](https://github.com/invertase/react-native-firebase/issues/4791)) ([483d9d3](https://github.com/invertase/react-native-firebase/commit/483d9d3655844e4c40cb42f3b0da865ada971515))
1315
-
1316
- ### Features
1317
-
1318
- - **app, sdks:** firebase-ios-sdk 7.4.0 / firebase-android-sdk 26.3.0 ([#4792](https://github.com/invertase/react-native-firebase/issues/4792)) ([f915c82](https://github.com/invertase/react-native-firebase/commit/f915c823d6765b21096ea3b7e52f22bb71630bec))
1319
-
1320
- # [10.4.0](https://github.com/invertase/react-native-firebase/compare/v10.3.1...v10.4.0) (2020-12-30)
1321
-
1322
- ### Bug Fixes
1323
-
1324
- - **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))
1325
-
1326
- ### Features
1327
-
1328
- - **analytics:** add support for analytics_auto_collection_enabled in firebase.json ([#4730](https://github.com/invertase/react-native-firebase/issues/4730)) ([9a24ecd](https://github.com/invertase/react-native-firebase/commit/9a24ecd2826bfa8ab30657287432ccaeff8b7c7c))
1329
-
1330
- # [10.3.0](https://github.com/invertase/react-native-firebase/compare/v10.2.0...v10.3.0) (2020-12-18)
1331
-
1332
- ### Features
1333
-
1334
- - **app:** bump firebase-android-sdk / firebase-ios-sdk versions ([cd5a451](https://github.com/invertase/react-native-firebase/commit/cd5a451cece27204a657780ebdbcf7fa909f5100))
1335
-
1336
- # [10.2.0](https://github.com/invertase/react-native-firebase/compare/v10.1.1...v10.2.0) (2020-12-11)
1337
-
1338
- ### Features
1339
-
1340
- - 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))
1341
-
1342
- # [10.1.0](https://github.com/invertase/react-native-firebase/compare/v10.0.0...v10.1.0) (2020-11-26)
1343
-
1344
- ### Bug Fixes
1345
-
1346
- - **app:** convert NativeFirebaseError.getStackWithMessage to static to fix crash ([#4619](https://github.com/invertase/react-native-firebase/issues/4619)) ([090b0bb](https://github.com/invertase/react-native-firebase/commit/090b0bb509d4b3a71db9b84096d89effd4e2d865))
1347
- - **app, android:** remove firebase-core from dependencies ([#4597](https://github.com/invertase/react-native-firebase/issues/4597)) ([22c615c](https://github.com/invertase/react-native-firebase/commit/22c615c39fe17dbf8915ae08c5d46431713495a0))
1348
-
1349
- # [10.0.0](https://github.com/invertase/react-native-firebase/compare/fc8c4c0622f8e6814879d0306f66012df5b83cd8...v10.0.0) (2020-11-17)
1350
-
1351
- ### Features
1352
-
1353
- - **app, ios:** bump firebase-ios-sdk to 7.1.0 from 7.0.0 ([#4533](https://github.com/
1354
-
1355
- ### BREAKING CHANGES
1356
-
1357
- - breaking change to mark new internal versioning requirements.
1358
-
1359
- # [9.0.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@8.4.7...@react-native-firebase/app@9.0.0) (2020-11-10)
1360
-
1361
- ### Bug Fixes
1362
-
1363
- - **tests, emulator:** centralize startup, correct CWD ([79c1f80](https://github.com/invertase/react-native-firebase/commit/79c1f801965f74f9fc0233c96f05db103e9f8e84))
1364
-
1365
- ### Features
1366
-
1367
- - BREAKING forward-port to firebase-android-sdk v26 / firebase-ios-sdk v7 ([70974d4](https://github.com/invertase/react-native-firebase/commit/70974d41f857a0f7fc09cb5235856d3748b30117)), **CHECK UNDERLYING SDK NOTES FOR FURTHER BREAKING CHANGE INFORMATION:** https://firebase.google.com/support/release-notes/android#bom_v26-0-0 / https://firebase.google.com/support/release-notes/ios#version_700_-_october_26_2020
1368
-
1369
- ### BREAKING CHANGES
1370
-
1371
- - alter ML imports, check iOS linking, remove old API as noted
1372
-
1373
- ## [8.4.7](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@8.4.6...@react-native-firebase/app@8.4.7) (2020-10-30)
1374
-
1375
- **Note:** Version bump only for package @react-native-firebase/app
1376
-
1377
- ## [8.4.6](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@8.4.5...@react-native-firebase/app@8.4.6) (2020-10-16)
1378
-
1379
- **Note:** Version bump only for package @react-native-firebase/app
1380
-
1381
- **Note:** You _may_ need to re-download your firebase config files (android json / ios plist) to handle changes in the underlying SDKs as they migrate from instance id to installations. A symptom would be `NativeFirebaseError: [messaging/unknown] FIS_AUTH_ERROR`. [Upstream reference doc](https://github.com/firebase/firebase-android-sdk/blob/main/firebase-installations/REQUIRED_FIREBASE_OPTIONS_ANDROID.md#what-do-i-need-to-do) / [Related issue #4466](https://github.com/invertase/react-native-firebase/issues/4466)
1382
-
1383
- ## [8.4.5](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@8.4.4...@react-native-firebase/app@8.4.5) (2020-09-30)
1384
-
1385
- ### Bug Fixes
1386
-
1387
- - **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))
1388
-
1389
- ## [8.4.4](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@8.4.3...@react-native-firebase/app@8.4.4) (2020-09-30)
1390
-
1391
- ### Bug Fixes
1392
-
1393
- - **app, ios:** avoid photo API not present on Catalyst ([#4328](https://github.com/invertase/react-native-firebase/issues/4328)) ([86f1f63](https://github.com/invertase/react-native-firebase/commit/86f1f633c06c7f054ff55b802482f36be61580f8))
1394
-
1395
- ## [8.4.3](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@8.4.2...@react-native-firebase/app@8.4.3) (2020-09-17)
1396
-
1397
- ### Bug Fixes
1398
-
1399
- - **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))
1400
-
1401
- ## [8.4.2](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@8.4.1...@react-native-firebase/app@8.4.2) (2020-09-11)
1402
-
1403
- ### Bug Fixes
1404
-
1405
- - **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))
1406
-
1407
- ## [8.4.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@8.4.0...@react-native-firebase/app@8.4.1) (2020-08-28)
1408
-
1409
- **Note:** Version bump only for package @react-native-firebase/app
1410
-
1411
- # [8.4.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@8.3.1...@react-native-firebase/app@8.4.0) (2020-08-26)
1412
-
1413
- ### Features
1414
-
1415
- - 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))
1416
-
1417
- **NOTE: UPDATE ALL REACT-NATIVE-FIREBASE PACKAGES TO CURRENT STABLE FOR COMPATIBILITY - [#4154](https://github.com/invertase/react-native-firebase/issues/4154)**
1418
-
1419
- ## [8.3.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@8.3.0...@react-native-firebase/app@8.3.1) (2020-08-15)
1420
-
1421
- ### Bug Fixes
1422
-
1423
- - **android, timezones:** timezone offset already millis, do not adjust it ([#4055](https://github.com/invertase/react-native-firebase/issues/4055)) ([8b0e189](https://github.com/invertase/react-native-firebase/commit/8b0e1893b8dc20abcf8c3a09a512c2e8ff6707b1)), closes [#4053](https://github.com/invertase/react-native-firebase/issues/4053)
1424
- - **core:** timezone offset issues in utils ([cb6a1d4](https://github.com/invertase/react-native-firebase/commit/cb6a1d41cc8e89fba8a8f81d50cea1c65e7e49ef))
1425
- - **Storage:** AL (asset library) methodology deprecated since iOS 8 ([#4054](https://github.com/invertase/react-native-firebase/issues/4054)) ([bf3b252](https://github.com/invertase/react-native-firebase/commit/bf3b25220cde1ae8d5fdbabc217fe20957dbdf8e))
1426
-
1427
- # [8.3.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@8.2.0...@react-native-firebase/app@8.3.0) (2020-08-03)
1428
-
1429
- ### Features
1430
-
1431
- - 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))
1432
-
1433
- # [8.2.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@8.1.0...@react-native-firebase/app@8.2.0) (2020-07-09)
1434
-
1435
- ### Features
1436
-
1437
- - **analytics:** add & deprecate pre-defined analytics events ([#3385](https://github.com/invertase/react-native-firebase/issues/3385)) ([6c53f47](https://github.com/invertase/react-native-firebase/commit/6c53f479d9d86f686d52f258ed51b5dc6a8ef25a))
1438
-
1439
- # [8.1.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@8.0.1...@react-native-firebase/app@8.1.0) (2020-07-07)
1440
-
1441
- ### Features
1442
-
1443
- - **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))
1444
-
1445
- ## [8.0.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@8.0.0...@react-native-firebase/app@8.0.1) (2020-07-05)
1446
-
1447
- ### Bug Fixes
1448
-
1449
- - correct androidResolutionForPlayServices API ([afcd794](https://github.com/invertase/react-native-firebase/commit/afcd79479baf6e371719eb1b14e5d7619e4b7ad6)), closes [#3864](https://github.com/invertase/react-native-firebase/issues/3864)
1450
-
1451
- # [8.0.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@7.3.1...@react-native-firebase/app@8.0.0) (2020-06-30)
1452
-
1453
- - 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)
1454
-
1455
- ### BREAKING CHANGES
1456
-
1457
- - This is a breaking change to remove the use of the Fabric SDKs.
1458
-
1459
- Co-authored-by: David Buchan-Swanson <david.buchanswanson@gmail.com>
1460
- Co-authored-by: Mike Diarmid <mike.diarmid@gmail.com>
1461
- [publish]
1462
-
1463
- ## [7.3.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@7.3.0...@react-native-firebase/app@7.3.1) (2020-06-26)
1464
-
1465
- ### Bug Fixes
1466
-
1467
- - **app,ios:** build fails when targeting Mac (Project Catalyst) ([13bc6a7](https://github.com/invertase/react-native-firebase/commit/13bc6a75764a17ffa89d31b2523aca89ad875f0d))
1468
-
1469
- # [7.3.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@7.2.1...@react-native-firebase/app@7.3.0) (2020-06-22)
1470
-
1471
- ### Features
1472
-
1473
- - **firestore:** support clearPersistence() & terminate() APIs ([#3591](https://github.com/invertase/react-native-firebase/issues/3591)) ([57ff900](https://github.com/invertase/react-native-firebase/commit/57ff9003b664b94aa6b5b1997138bdb2220dba65))
1474
-
1475
- ## [7.2.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@7.2.0...@react-native-firebase/app@7.2.1) (2020-06-10)
1476
-
1477
- ### Bug Fixes
1478
-
1479
- - **android:** generate version for ReactNativeFirebaseAppRegistrar.java ([#3766](https://github.com/invertase/react-native-firebase/issues/3766)) ([1324985](https://github.com/invertase/react-native-firebase/commit/13249857c7303d44b9a2ca92d2604a27e949bad9))
1480
-
1481
- # [7.2.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@7.1.4...@react-native-firebase/app@7.2.0) (2020-06-03)
1482
-
1483
- ### Features
1484
-
1485
- - **app:** add Play Services available utilities ([#3601](https://github.com/invertase/react-native-firebase/issues/3601)) ([0b0f858](https://github.com/invertase/react-native-firebase/commit/0b0f858527b8c0757db7021533f84425f79d0ea5))
1486
-
1487
- ## [7.1.4](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@7.1.3...@react-native-firebase/app@7.1.4) (2020-05-29)
1488
-
1489
- **Note:** Version bump only for package @react-native-firebase/app
1490
-
1491
- ## [7.1.3](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@7.1.2...@react-native-firebase/app@7.1.3) (2020-05-29)
1492
-
1493
- **Note:** Version bump only for package @react-native-firebase/app
1494
-
1495
- ## [7.1.2](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@7.1.1...@react-native-firebase/app@7.1.2) (2020-05-29)
1496
-
1497
- **Note:** Version bump only for package @react-native-firebase/app
1498
-
1499
- ## [7.1.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@7.1.0...@react-native-firebase/app@7.1.1) (2020-05-29)
1500
-
1501
- ### Bug Fixes
1502
-
1503
- - **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))
1504
-
1505
- # [7.1.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@7.0.1...@react-native-firebase/app@7.1.0) (2020-05-22)
1506
-
1507
- ### Features
1508
-
1509
- - 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))
1510
-
1511
- ## [7.0.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@7.0.0...@react-native-firebase/app@7.0.1) (2020-05-13)
1512
-
1513
- **Note:** Version bump only for package @react-native-firebase/app
1514
-
1515
- ## [7.0.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/app@7.0.0...@react-native-firebase/app@7.0.0) (2020-05-13)
1516
-
1517
- - 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)
1518
-
1519
- ### Features
1520
-
1521
- - **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))
1522
-
1523
- ### BREAKING CHANGES
1524
-
1525
- - breaking change to mark new internal versioning requirements.