@react-native-firebase/messaging 23.8.0 → 23.8.2

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 (48) hide show
  1. package/CHANGELOG.md +1197 -0
  2. package/RNFBMessaging.podspec +50 -0
  3. package/android/.editorconfig +10 -0
  4. package/android/build.gradle +149 -0
  5. package/android/lint.xml +5 -0
  6. package/android/settings.gradle +1 -0
  7. package/android/src/main/AndroidManifest.xml +43 -0
  8. package/android/src/main/java/io/invertase/firebase/messaging/JsonConvert.java +127 -0
  9. package/android/src/main/java/io/invertase/firebase/messaging/ReactNativeFirebaseMessagingHeadlessService.java +30 -0
  10. package/android/src/main/java/io/invertase/firebase/messaging/ReactNativeFirebaseMessagingModule.java +332 -0
  11. package/android/src/main/java/io/invertase/firebase/messaging/ReactNativeFirebaseMessagingPackage.java +41 -0
  12. package/android/src/main/java/io/invertase/firebase/messaging/ReactNativeFirebaseMessagingReceiver.java +66 -0
  13. package/android/src/main/java/io/invertase/firebase/messaging/ReactNativeFirebaseMessagingSerializer.java +225 -0
  14. package/android/src/main/java/io/invertase/firebase/messaging/ReactNativeFirebaseMessagingService.java +37 -0
  15. package/android/src/main/java/io/invertase/firebase/messaging/ReactNativeFirebaseMessagingStore.java +15 -0
  16. package/android/src/main/java/io/invertase/firebase/messaging/ReactNativeFirebaseMessagingStoreHelper.java +23 -0
  17. package/android/src/main/java/io/invertase/firebase/messaging/ReactNativeFirebaseMessagingStoreImpl.java +97 -0
  18. package/android/src/main/res/values/colors.xml +143 -0
  19. package/app.plugin.js +1 -0
  20. package/dist/commonjs/version.js +1 -1
  21. package/dist/module/version.js +1 -1
  22. package/dist/typescript/commonjs/lib/namespaced.d.ts +1 -1
  23. package/dist/typescript/commonjs/lib/version.d.ts +1 -1
  24. package/dist/typescript/module/lib/namespaced.d.ts +1 -1
  25. package/dist/typescript/module/lib/version.d.ts +1 -1
  26. package/ios/RNFBMessaging/RNFBMessaging+AppDelegate.h +54 -0
  27. package/ios/RNFBMessaging/RNFBMessaging+AppDelegate.m +251 -0
  28. package/ios/RNFBMessaging/RNFBMessaging+FIRMessagingDelegate.h +31 -0
  29. package/ios/RNFBMessaging/RNFBMessaging+FIRMessagingDelegate.m +70 -0
  30. package/ios/RNFBMessaging/RNFBMessaging+NSNotificationCenter.h +29 -0
  31. package/ios/RNFBMessaging/RNFBMessaging+NSNotificationCenter.m +173 -0
  32. package/ios/RNFBMessaging/RNFBMessaging+UNUserNotificationCenter.h +37 -0
  33. package/ios/RNFBMessaging/RNFBMessaging+UNUserNotificationCenter.m +185 -0
  34. package/ios/RNFBMessaging/RNFBMessagingModule.h +26 -0
  35. package/ios/RNFBMessaging/RNFBMessagingModule.m +431 -0
  36. package/ios/RNFBMessaging/RNFBMessagingSerializer.h +32 -0
  37. package/ios/RNFBMessaging/RNFBMessagingSerializer.m +235 -0
  38. package/ios/RNFBMessaging.xcodeproj/project.pbxproj +384 -0
  39. package/ios/RNFBMessaging.xcodeproj/xcshareddata/IDETemplateMacros.plist +24 -0
  40. package/lib/version.ts +1 -1
  41. package/package.json +5 -15
  42. package/plugin/build/android/index.d.ts +2 -0
  43. package/plugin/build/android/index.js +5 -0
  44. package/plugin/build/android/setupFirebaseNotifationIcon.d.ts +8 -0
  45. package/plugin/build/android/setupFirebaseNotifationIcon.js +62 -0
  46. package/plugin/build/index.d.ts +3 -0
  47. package/plugin/build/index.js +16 -0
  48. package/plugin/tsconfig.tsbuildinfo +1 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1197 @@
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.8.2](https://github.com/invertase/react-native-firebase/compare/v23.8.1...v23.8.2) (2026-01-14)
7
+
8
+ **Note:** Version bump only for package @react-native-firebase/messaging
9
+
10
+ ## [23.8.1](https://github.com/invertase/react-native-firebase/compare/v23.8.0...v23.8.1) (2026-01-13)
11
+
12
+ ### Bug Fixes
13
+
14
+ - remove newly-added files array from package.json ([474036d](https://github.com/invertase/react-native-firebase/commit/474036d0d82191401539a8fc91bd8f177a617d36))
15
+
16
+ ## [23.8.0](https://github.com/invertase/react-native-firebase/compare/v23.7.0...v23.8.0) (2026-01-13)
17
+
18
+ ### Bug Fixes
19
+
20
+ - **messaging, types:** isSupported signature should be `Promise<boolean>` not `boolean` ([#8798](https://github.com/invertase/react-native-firebase/issues/8798)) ([4d54636](https://github.com/invertase/react-native-firebase/commit/4d5463609edd2831edc34cfe8a39b0fd1f6fe8fa))
21
+
22
+ ## [23.7.0](https://github.com/invertase/react-native-firebase/compare/v23.6.0...v23.7.0) (2025-12-08)
23
+
24
+ **Note:** Version bump only for package @react-native-firebase/messaging
25
+
26
+ ## [23.6.0](https://github.com/invertase/react-native-firebase/compare/v23.5.0...v23.6.0) (2025-12-08)
27
+
28
+ ### Bug Fixes
29
+
30
+ - **messaging, android:** properly remove remote message from prefs ([336901b](https://github.com/invertase/react-native-firebase/commit/336901b00f0553f57fa18ce416f513f915c9a8ed))
31
+ - **messaging, android:** properly shrink stored messages to limit ([53fb8c8](https://github.com/invertase/react-native-firebase/commit/53fb8c86e0ab2559a69c1309e7a1c9afec4bcb1f))
32
+ - **messaging, android:** purge message store to limit first, add second ([47ea774](https://github.com/invertase/react-native-firebase/commit/47ea774e2830c0ef3e95c06acfb3960a3ae0bc74))
33
+
34
+ ## [23.5.0](https://github.com/invertase/react-native-firebase/compare/v23.4.1...v23.5.0) (2025-10-30)
35
+
36
+ **Note:** Version bump only for package @react-native-firebase/messaging
37
+
38
+ ## [23.4.1](https://github.com/invertase/react-native-firebase/compare/v23.4.0...v23.4.1) (2025-10-14)
39
+
40
+ **Note:** Version bump only for package @react-native-firebase/messaging
41
+
42
+ ## [23.4.0](https://github.com/invertase/react-native-firebase/compare/v23.3.1...v23.4.0) (2025-09-24)
43
+
44
+ **Note:** Version bump only for package @react-native-firebase/messaging
45
+
46
+ ## [23.3.1](https://github.com/invertase/react-native-firebase/compare/v23.3.0...v23.3.1) (2025-09-08)
47
+
48
+ **Note:** Version bump only for package @react-native-firebase/messaging
49
+
50
+ ## [23.3.0](https://github.com/invertase/react-native-firebase/compare/v23.2.2...v23.3.0) (2025-09-04)
51
+
52
+ **Note:** Version bump only for package @react-native-firebase/messaging
53
+
54
+ ## [23.2.2](https://github.com/invertase/react-native-firebase/compare/v23.2.1...v23.2.2) (2025-09-03)
55
+
56
+ **Note:** Version bump only for package @react-native-firebase/messaging
57
+
58
+ ## [23.2.1](https://github.com/invertase/react-native-firebase/compare/v23.2.0...v23.2.1) (2025-09-01)
59
+
60
+ **Note:** Version bump only for package @react-native-firebase/messaging
61
+
62
+ ## [23.2.0](https://github.com/invertase/react-native-firebase/compare/v23.1.2...v23.2.0) (2025-08-29)
63
+
64
+ **Note:** Version bump only for package @react-native-firebase/messaging
65
+
66
+ ## [23.1.2](https://github.com/invertase/react-native-firebase/compare/v23.1.1...v23.1.2) (2025-08-25)
67
+
68
+ **Note:** Version bump only for package @react-native-firebase/messaging
69
+
70
+ ## [23.1.1](https://github.com/invertase/react-native-firebase/compare/v23.1.0...v23.1.1) (2025-08-22)
71
+
72
+ **Note:** Version bump only for package @react-native-firebase/messaging
73
+
74
+ ## [23.1.0](https://github.com/invertase/react-native-firebase/compare/v23.0.1...v23.1.0) (2025-08-19)
75
+
76
+ **Note:** Version bump only for package @react-native-firebase/messaging
77
+
78
+ ## [23.0.1](https://github.com/invertase/react-native-firebase/compare/v23.0.0...v23.0.1) (2025-08-12)
79
+
80
+ **Note:** Version bump only for package @react-native-firebase/messaging
81
+
82
+ ## [23.0.0](https://github.com/invertase/react-native-firebase/compare/v22.4.0...v23.0.0) (2025-08-07)
83
+
84
+ **Note:** Version bump only for package @react-native-firebase/messaging
85
+
86
+ ## [22.4.0](https://github.com/invertase/react-native-firebase/compare/v22.3.0...v22.4.0) (2025-07-10)
87
+
88
+ **Note:** Version bump only for package @react-native-firebase/messaging
89
+
90
+ ## [22.3.0](https://github.com/invertase/react-native-firebase/compare/v22.2.1...v22.3.0) (2025-07-08)
91
+
92
+ **Note:** Version bump only for package @react-native-firebase/messaging
93
+
94
+ ## [22.2.1](https://github.com/invertase/react-native-firebase/compare/v22.2.0...v22.2.1) (2025-06-10)
95
+
96
+ **Note:** Version bump only for package @react-native-firebase/messaging
97
+
98
+ ## [22.2.0](https://github.com/invertase/react-native-firebase/compare/v22.1.0...v22.2.0) (2025-05-12)
99
+
100
+ **Note:** Version bump only for package @react-native-firebase/messaging
101
+
102
+ ## [22.1.0](https://github.com/invertase/react-native-firebase/compare/v22.0.0...v22.1.0) (2025-04-30)
103
+
104
+ ### Bug Fixes
105
+
106
+ - **messaging:** correctly pass options in modular getToken/deleteToken ([d29dfc8](https://github.com/invertase/react-native-firebase/commit/d29dfc8ee153c68cb9a1840c105061776403fe26))
107
+
108
+ ## [22.0.0](https://github.com/invertase/react-native-firebase/compare/v21.14.0...v22.0.0) (2025-04-25)
109
+
110
+ ### Bug Fixes
111
+
112
+ - **android:** use `=` assignment vs deprecated space-assignment ([39c2ecb](https://github.com/invertase/react-native-firebase/commit/39c2ecb0069a8a5a65b04fb7f86ccecf83273868))
113
+ - enable provenance signing during publish ([4535f0d](https://github.com/invertase/react-native-firebase/commit/4535f0d5756c89aeb8f8e772348c71d8176348be))
114
+
115
+ ## [21.14.0](https://github.com/invertase/react-native-firebase/compare/v21.13.0...v21.14.0) (2025-04-14)
116
+
117
+ ### Features
118
+
119
+ - **messaging, android:** notification delegation APIs, firebase.json feature toggle ([c0c5054](https://github.com/invertase/react-native-firebase/commit/c0c505432e95c85fa6621b548b24e755e2894c37))
120
+ - **messaging, android:** support BigQuery export setting in firebase.json ([fa0e967](https://github.com/invertase/react-native-firebase/commit/fa0e967f9a06719c159a4980749f80c5ff2e2c39))
121
+
122
+ ## [21.13.0](https://github.com/invertase/react-native-firebase/compare/v21.12.3...v21.13.0) (2025-03-31)
123
+
124
+ **Note:** Version bump only for package @react-native-firebase/messaging
125
+
126
+ ## [21.12.3](https://github.com/invertase/react-native-firebase/compare/v21.12.2...v21.12.3) (2025-03-26)
127
+
128
+ **Note:** Version bump only for package @react-native-firebase/messaging
129
+
130
+ ## [21.12.2](https://github.com/invertase/react-native-firebase/compare/v21.12.1...v21.12.2) (2025-03-23)
131
+
132
+ **Note:** Version bump only for package @react-native-firebase/messaging
133
+
134
+ ## [21.12.1](https://github.com/invertase/react-native-firebase/compare/v21.12.0...v21.12.1) (2025-03-22)
135
+
136
+ **Note:** Version bump only for package @react-native-firebase/messaging
137
+
138
+ ## [21.12.0](https://github.com/invertase/react-native-firebase/compare/v21.11.0...v21.12.0) (2025-03-03)
139
+
140
+ **Note:** Version bump only for package @react-native-firebase/messaging
141
+
142
+ ## [21.11.0](https://github.com/invertase/react-native-firebase/compare/v21.10.1...v21.11.0) (2025-02-20)
143
+
144
+ ### Bug Fixes
145
+
146
+ - **messaging, ios:** serialize access to background handler state ([4d166ca](https://github.com/invertase/react-native-firebase/commit/4d166ca77bcc1a6c53b4a7e652654eb000d7f0fe))
147
+
148
+ ## [21.10.1](https://github.com/invertase/react-native-firebase/compare/v21.10.0...v21.10.1) (2025-02-18)
149
+
150
+ ### Bug Fixes
151
+
152
+ - **messaging, types:** export correct module types ([#8336](https://github.com/invertase/react-native-firebase/issues/8336)) ([b39f5a4](https://github.com/invertase/react-native-firebase/commit/b39f5a4b8d6c91971c94decd3c2dddeaca85a289))
153
+ - **messaging:** 3 statics not correctly exported ([#8318](https://github.com/invertase/react-native-firebase/issues/8318)) ([9a4b6e5](https://github.com/invertase/react-native-firebase/commit/9a4b6e54ed6dc8146334d0ccc88a7774bbd87569))
154
+
155
+ ## [21.10.0](https://github.com/invertase/react-native-firebase/compare/v21.9.0...v21.10.0) (2025-02-11)
156
+
157
+ ### Features
158
+
159
+ - **messaging, ios:** background completion handler from JS ([#8128](https://github.com/invertase/react-native-firebase/issues/8128)) ([f00fa8d](https://github.com/invertase/react-native-firebase/commit/f00fa8d26071c33b30a3d0a155e19a90a221a828))
160
+
161
+ ## [21.9.0](https://github.com/invertase/react-native-firebase/compare/v21.8.0...v21.9.0) (2025-02-11)
162
+
163
+ **Note:** Version bump only for package @react-native-firebase/messaging
164
+
165
+ ## [21.8.0](https://github.com/invertase/react-native-firebase/compare/v21.7.4...v21.8.0) (2025-02-10)
166
+
167
+ ### Bug Fixes
168
+
169
+ - do not ship unit tests in released packages ([e71dadf](https://github.com/invertase/react-native-firebase/commit/e71dadfc1c0cad2e89c94100913af31ddf7d9c91))
170
+
171
+ ## [21.7.4](https://github.com/invertase/react-native-firebase/compare/v21.7.3...v21.7.4) (2025-02-08)
172
+
173
+ ### Bug Fixes
174
+
175
+ - the init calls for modular should use modular getApp() ([79da98b](https://github.com/invertase/react-native-firebase/commit/79da98bf4ecf7860db61b2813b87673f1cd0adfd))
176
+
177
+ ## [21.7.3](https://github.com/invertase/react-native-firebase/compare/v21.7.2...v21.7.3) (2025-02-08)
178
+
179
+ ### Bug Fixes
180
+
181
+ - **auth:** resolve type issue when migrating to v9 ([#8277](https://github.com/invertase/react-native-firebase/issues/8277)) ([f4e44ad](https://github.com/invertase/react-native-firebase/commit/f4e44ad50ec85604b7ba0ea835490f473ed5447c))
182
+
183
+ ## [21.7.2](https://github.com/invertase/react-native-firebase/compare/v21.7.1...v21.7.2) (2025-02-05)
184
+
185
+ **Note:** Version bump only for package @react-native-firebase/messaging
186
+
187
+ ## [21.7.1](https://github.com/invertase/react-native-firebase/compare/v21.7.0...v21.7.1) (2025-01-20)
188
+
189
+ **Note:** Version bump only for package @react-native-firebase/messaging
190
+
191
+ ## [21.7.0](https://github.com/invertase/react-native-firebase/compare/v21.6.2...v21.7.0) (2025-01-16)
192
+
193
+ **Note:** Version bump only for package @react-native-firebase/messaging
194
+
195
+ ## [21.6.2](https://github.com/invertase/react-native-firebase/compare/v21.6.1...v21.6.2) (2025-01-02)
196
+
197
+ **Note:** Version bump only for package @react-native-firebase/messaging
198
+
199
+ ## [21.6.1](https://github.com/invertase/react-native-firebase/compare/v21.6.0...v21.6.1) (2024-11-25)
200
+
201
+ **Note:** Version bump only for package @react-native-firebase/messaging
202
+
203
+ ## [21.6.0](https://github.com/invertase/react-native-firebase/compare/v21.5.0...v21.6.0) (2024-11-20)
204
+
205
+ **Note:** Version bump only for package @react-native-firebase/messaging
206
+
207
+ ## [21.5.0](https://github.com/invertase/react-native-firebase/compare/v21.4.1...v21.5.0) (2024-11-16)
208
+
209
+ **Note:** Version bump only for package @react-native-firebase/messaging
210
+
211
+ ## [21.4.1](https://github.com/invertase/react-native-firebase/compare/v21.4.0...v21.4.1) (2024-11-13)
212
+
213
+ ### Reverts
214
+
215
+ - Revert "fix(ios, sdk): constrain transitive dependencies more tightly" ([1ff247c](https://github.com/invertase/react-native-firebase/commit/1ff247cd73804efbd52eb9490f68087685de814c))
216
+
217
+ ## [21.4.0](https://github.com/invertase/react-native-firebase/compare/v21.3.0...v21.4.0) (2024-11-07)
218
+
219
+ **Note:** Version bump only for package @react-native-firebase/messaging
220
+
221
+ ## [21.3.0](https://github.com/invertase/react-native-firebase/compare/v21.2.0...v21.3.0) (2024-10-31)
222
+
223
+ **Note:** Version bump only for package @react-native-firebase/messaging
224
+
225
+ ## [21.2.0](https://github.com/invertase/react-native-firebase/compare/v21.1.1...v21.2.0) (2024-10-22)
226
+
227
+ **Note:** Version bump only for package @react-native-firebase/messaging
228
+
229
+ ## [21.1.1](https://github.com/invertase/react-native-firebase/compare/v21.1.0...v21.1.1) (2024-10-22)
230
+
231
+ ### Bug Fixes
232
+
233
+ - **ios, sdk:** constrain transitive dependencies more tightly ([d03ab42](https://github.com/invertase/react-native-firebase/commit/d03ab42a163a17268bac344ccd135dc18849e1be))
234
+
235
+ ## [21.1.0](https://github.com/invertase/react-native-firebase/compare/v21.0.0...v21.1.0) (2024-10-21)
236
+
237
+ ### Features
238
+
239
+ - **messaging, android:** add priority + originalPriority to RemoteMessage ([c324932](https://github.com/invertase/react-native-firebase/commit/c324932bbfafd32e956e9dae71d32330b37d1e98))
240
+
241
+ ## [21.0.0](https://github.com/invertase/react-native-firebase/compare/v20.5.0...v21.0.0) (2024-09-26)
242
+
243
+ **Note:** Version bump only for package @react-native-firebase/messaging
244
+
245
+ ## [20.5.0](https://github.com/invertase/react-native-firebase/compare/v20.4.0...v20.5.0) (2024-09-11)
246
+
247
+ ### Bug Fixes
248
+
249
+ - **messaging, android:** handle nullable broadcast intent ([#7893](https://github.com/invertase/react-native-firebase/issues/7893)) ([#7960](https://github.com/invertase/react-native-firebase/issues/7960)) ([c1ac022](https://github.com/invertase/react-native-firebase/commit/c1ac022e4e9d3effb2f0fb3404ad375d9fcbe4b6))
250
+ - **messaging, ios:** fixed isHeadless for react-native-navigation ([#7868](https://github.com/invertase/react-native-firebase/issues/7868)) ([3875cc6](https://github.com/invertase/react-native-firebase/commit/3875cc6077e5fd6b35e201356aca632e43a2e301))
251
+
252
+ ## [20.4.0](https://github.com/invertase/react-native-firebase/compare/v20.3.0...v20.4.0) (2024-08-13)
253
+
254
+ **Note:** Version bump only for package @react-native-firebase/messaging
255
+
256
+ ## [20.3.0](https://github.com/invertase/react-native-firebase/compare/v20.2.1...v20.3.0) (2024-07-19)
257
+
258
+ **Note:** Version bump only for package @react-native-firebase/messaging
259
+
260
+ ## [20.2.1](https://github.com/invertase/react-native-firebase/compare/v20.2.0...v20.2.1) (2024-07-17)
261
+
262
+ **Note:** Version bump only for package @react-native-firebase/messaging
263
+
264
+ ## [20.2.0](https://github.com/invertase/react-native-firebase/compare/v20.1.0...v20.2.0) (2024-07-15)
265
+
266
+ **Note:** Version bump only for package @react-native-firebase/messaging
267
+
268
+ ## [20.1.0](https://github.com/invertase/react-native-firebase/compare/v20.0.0...v20.1.0) (2024-06-04)
269
+
270
+ **Note:** Version bump only for package @react-native-firebase/messaging
271
+
272
+ ## [20.0.0](https://github.com/invertase/react-native-firebase/compare/v19.3.0...v20.0.0) (2024-05-20)
273
+
274
+ **Note:** Version bump only for package @react-native-firebase/messaging
275
+
276
+ ## [19.3.0](https://github.com/invertase/react-native-firebase/compare/v19.2.2...v19.3.0) (2024-05-20)
277
+
278
+ ### Bug Fixes
279
+
280
+ - **messaging, ios:** register for notifications on permission grant ([ccd78b9](https://github.com/invertase/react-native-firebase/commit/ccd78b9cf5d6961f5252e582ede785932599d25d)), closes [#7272](https://github.com/invertase/react-native-firebase/issues/7272)
281
+ - **messaging, ios:** reject notification registration after 10 seconds ([1f86483](https://github.com/invertase/react-native-firebase/commit/1f8648329ce812644f4bbd0f0caadcfe6a0bbddf)), closes [#7272](https://github.com/invertase/react-native-firebase/issues/7272)
282
+
283
+ ## [19.2.2](https://github.com/invertase/react-native-firebase/compare/v19.2.1...v19.2.2) (2024-04-13)
284
+
285
+ **Note:** Version bump only for package @react-native-firebase/messaging
286
+
287
+ ## [19.2.1](https://github.com/invertase/react-native-firebase/compare/v19.2.0...v19.2.1) (2024-04-12)
288
+
289
+ **Note:** Version bump only for package @react-native-firebase/messaging
290
+
291
+ ## [19.2.0](https://github.com/invertase/react-native-firebase/compare/v19.1.2...v19.2.0) (2024-04-10)
292
+
293
+ **Note:** Version bump only for package @react-native-firebase/messaging
294
+
295
+ ## [19.1.2](https://github.com/invertase/react-native-firebase/compare/v19.1.1...v19.1.2) (2024-04-03)
296
+
297
+ ### Bug Fixes
298
+
299
+ - **deps, ios:** FirebaseCoreExtension is not always versioned ([cb7ed0e](https://github.com/invertase/react-native-firebase/commit/cb7ed0eb15758a4324d2ce785513a48bfe54fe1e))
300
+
301
+ ## [19.1.1](https://github.com/invertase/react-native-firebase/compare/v19.1.0...v19.1.1) (2024-03-26)
302
+
303
+ **Note:** Version bump only for package @react-native-firebase/messaging
304
+
305
+ ## [19.1.0](https://github.com/invertase/react-native-firebase/compare/v19.0.1...v19.1.0) (2024-03-23)
306
+
307
+ **Note:** Version bump only for package @react-native-firebase/messaging
308
+
309
+ ## [19.0.1](https://github.com/invertase/react-native-firebase/compare/v19.0.0...v19.0.1) (2024-03-07)
310
+
311
+ **Note:** Version bump only for package @react-native-firebase/messaging
312
+
313
+ ## [19.0.0](https://github.com/invertase/react-native-firebase/compare/v18.9.0...v19.0.0) (2024-02-26)
314
+
315
+ **Note:** Version bump only for package @react-native-firebase/messaging
316
+
317
+ ## [18.9.0](https://github.com/invertase/react-native-firebase/compare/v18.8.0...v18.9.0) (2024-02-21)
318
+
319
+ ### Bug Fixes
320
+
321
+ - **auth:** use correct app instance (vs always default) in multifactor and phone auth ([#7564](https://github.com/invertase/react-native-firebase/issues/7564)) ([ff32fd3](https://github.com/invertase/react-native-firebase/commit/ff32fd37b39557e9a55fce016cbf986348436b92))
322
+ - **messaging, ios:** resolve getAPNSToken promise in all cases ([b30eee1](https://github.com/invertase/react-native-firebase/commit/b30eee1b97b4290474c00607342befda55272075)), closes [#7272](https://github.com/invertase/react-native-firebase/issues/7272)
323
+
324
+ ## [18.8.0](https://github.com/invertase/react-native-firebase/compare/v18.7.3...v18.8.0) (2024-01-25)
325
+
326
+ **Note:** Version bump only for package @react-native-firebase/messaging
327
+
328
+ ## [18.7.3](https://github.com/invertase/react-native-firebase/compare/v18.7.2...v18.7.3) (2023-12-13)
329
+
330
+ **Note:** Version bump only for package @react-native-firebase/messaging
331
+
332
+ ## [18.7.2](https://github.com/invertase/react-native-firebase/compare/v18.7.1...v18.7.2) (2023-12-08)
333
+
334
+ **Note:** Version bump only for package @react-native-firebase/messaging
335
+
336
+ ## [18.7.1](https://github.com/invertase/react-native-firebase/compare/v18.7.0...v18.7.1) (2023-11-29)
337
+
338
+ **Note:** Version bump only for package @react-native-firebase/messaging
339
+
340
+ ## [18.7.0](https://github.com/invertase/react-native-firebase/compare/v18.6.2...v18.7.0) (2023-11-28)
341
+
342
+ ### Features
343
+
344
+ - **messaging:** Adding support for Firebase Messaging via Expo config plugin. ([#7369](https://github.com/invertase/react-native-firebase/issues/7369)) ([34152ed](https://github.com/invertase/react-native-firebase/commit/34152edd189bc899e85cb4ceee92d44f1175a422))
345
+
346
+ ## [18.6.2](https://github.com/invertase/react-native-firebase/compare/v18.6.1...v18.6.2) (2023-11-23)
347
+
348
+ **Note:** Version bump only for package @react-native-firebase/messaging
349
+
350
+ ## [18.6.1](https://github.com/invertase/react-native-firebase/compare/v18.6.0...v18.6.1) (2023-11-01)
351
+
352
+ **Note:** Version bump only for package @react-native-firebase/messaging
353
+
354
+ ## [18.6.0](https://github.com/invertase/react-native-firebase/compare/v18.5.0...v18.6.0) (2023-10-26)
355
+
356
+ ### Bug Fixes
357
+
358
+ - **android:** required compatibility for Gradle 8 in android modules ([b52d0ce](https://github.com/invertase/react-native-firebase/commit/b52d0ce6723c077190618641ce0f33ced9fd4090))
359
+
360
+ ## [18.5.0](https://github.com/invertase/react-native-firebase/compare/v18.4.0...v18.5.0) (2023-09-22)
361
+
362
+ ### Bug Fixes
363
+
364
+ - **messaging:** RemoteMessage.data may be JSON-serializable object as well as string ([#7316](https://github.com/invertase/react-native-firebase/issues/7316)) ([7945a24](https://github.com/invertase/react-native-firebase/commit/7945a2485a4a93fa40c509e518da23317a82b489))
365
+
366
+ ## [18.4.0](https://github.com/invertase/react-native-firebase/compare/v18.3.2...v18.4.0) (2023-09-11)
367
+
368
+ **Note:** Version bump only for package @react-native-firebase/messaging
369
+
370
+ ## [18.3.2](https://github.com/invertase/react-native-firebase/compare/v18.3.1...v18.3.2) (2023-09-02)
371
+
372
+ **Note:** Version bump only for package @react-native-firebase/messaging
373
+
374
+ ## [18.3.1](https://github.com/invertase/react-native-firebase/compare/v18.3.0...v18.3.1) (2023-08-23)
375
+
376
+ **Note:** Version bump only for package @react-native-firebase/messaging
377
+
378
+ ## [18.3.0](https://github.com/invertase/react-native-firebase/compare/v18.2.0...v18.3.0) (2023-07-19)
379
+
380
+ **Note:** Version bump only for package @react-native-firebase/messaging
381
+
382
+ ## [18.2.0](https://github.com/invertase/react-native-firebase/compare/v18.1.0...v18.2.0) (2023-07-13)
383
+
384
+ **Note:** Version bump only for package @react-native-firebase/messaging
385
+
386
+ ## [18.1.0](https://github.com/invertase/react-native-firebase/compare/v18.0.0...v18.1.0) (2023-06-22)
387
+
388
+ **Note:** Version bump only for package @react-native-firebase/messaging
389
+
390
+ ## [18.0.0](https://github.com/invertase/react-native-firebase/compare/v17.5.0...v18.0.0) (2023-06-05)
391
+
392
+ **Note:** Version bump only for package @react-native-firebase/messaging
393
+
394
+ ## [17.5.0](https://github.com/invertase/react-native-firebase/compare/v17.4.3...v17.5.0) (2023-05-11)
395
+
396
+ **Note:** Version bump only for package @react-native-firebase/messaging
397
+
398
+ ### [17.4.3](https://github.com/invertase/react-native-firebase/compare/v17.4.2...v17.4.3) (2023-04-26)
399
+
400
+ **Note:** Version bump only for package @react-native-firebase/messaging
401
+
402
+ ### [17.4.2](https://github.com/invertase/react-native-firebase/compare/v17.4.1...v17.4.2) (2023-04-05)
403
+
404
+ **Note:** Version bump only for package @react-native-firebase/messaging
405
+
406
+ ### [17.4.1](https://github.com/invertase/react-native-firebase/compare/v17.4.0...v17.4.1) (2023-04-01)
407
+
408
+ **Note:** Version bump only for package @react-native-firebase/messaging
409
+
410
+ ## [17.4.0](https://github.com/invertase/react-native-firebase/compare/v17.3.2...v17.4.0) (2023-03-25)
411
+
412
+ **Note:** Version bump only for package @react-native-firebase/messaging
413
+
414
+ ### [17.3.2](https://github.com/invertase/react-native-firebase/compare/v17.3.1...v17.3.2) (2023-03-05)
415
+
416
+ **Note:** Version bump only for package @react-native-firebase/messaging
417
+
418
+ ### [17.3.1](https://github.com/invertase/react-native-firebase/compare/v17.3.0...v17.3.1) (2023-02-23)
419
+
420
+ **Note:** Version bump only for package @react-native-firebase/messaging
421
+
422
+ ## [17.3.0](https://github.com/invertase/react-native-firebase/compare/v17.2.0...v17.3.0) (2023-02-15)
423
+
424
+ **Note:** Version bump only for package @react-native-firebase/messaging
425
+
426
+ ## [17.2.0](https://github.com/invertase/react-native-firebase/compare/v17.1.0...v17.2.0) (2023-02-15)
427
+
428
+ **Note:** Version bump only for package @react-native-firebase/messaging
429
+
430
+ ## [17.1.0](https://github.com/invertase/react-native-firebase/compare/v17.0.0...v17.1.0) (2023-02-09)
431
+
432
+ **Note:** Version bump only for package @react-native-firebase/messaging
433
+
434
+ ## [17.0.0](https://github.com/invertase/react-native-firebase/compare/v16.7.0...v17.0.0) (2023-02-02)
435
+
436
+ ### ⚠ BREAKING CHANGES
437
+
438
+ - **app, ios:** You must have an APNS token before calling getToken to
439
+ get an FCM token on iOS. Previously it was not required. See documentation
440
+ for setAPNSToken if you are using getToken in testing or have disabled
441
+ FCM Swizzling, and use setAPNSToken to set a token before using getToken
442
+
443
+ ### Features
444
+
445
+ - **app, ios:** adopt firebase-ios-sdk 10.4.0 ([1b8df4c](https://github.com/invertase/react-native-firebase/commit/1b8df4c8e55d474c09e301f9c7b58b6128ae6485))
446
+ - **messaging, ios:** new setAPNSToken API / getToken works on M1 Simulator ([8d75b36](https://github.com/invertase/react-native-firebase/commit/8d75b36f485af07ecfa653192ca56f761d0cc5b7))
447
+
448
+ ## [16.7.0](https://github.com/invertase/react-native-firebase/compare/v16.6.0...v16.7.0) (2023-01-28)
449
+
450
+ **Note:** Version bump only for package @react-native-firebase/messaging
451
+
452
+ ## [16.6.0](https://github.com/invertase/react-native-firebase/compare/v16.5.2...v16.6.0) (2023-01-27)
453
+
454
+ ### Features
455
+
456
+ - **messaging:** Expose modular API that matches the Firebase web JS SDK v9 API ([#6806](https://github.com/invertase/react-native-firebase/issues/6806)) ([da82c10](https://github.com/invertase/react-native-firebase/commit/da82c1036051f0518da0401de24cef24c7ac091f))
457
+
458
+ ### [16.5.2](https://github.com/invertase/react-native-firebase/compare/v16.5.1...v16.5.2) (2023-01-23)
459
+
460
+ **Note:** Version bump only for package @react-native-firebase/messaging
461
+
462
+ ### [16.5.1](https://github.com/invertase/react-native-firebase/compare/v16.5.0...v16.5.1) (2023-01-20)
463
+
464
+ **Note:** Version bump only for package @react-native-firebase/messaging
465
+
466
+ ## [16.5.0](https://github.com/invertase/react-native-firebase/compare/v16.4.6...v16.5.0) (2022-12-16)
467
+
468
+ **Note:** Version bump only for package @react-native-firebase/messaging
469
+
470
+ ### [16.4.6](https://github.com/invertase/react-native-firebase/compare/v16.4.5...v16.4.6) (2022-11-18)
471
+
472
+ ### Bug Fixes
473
+
474
+ - **app, android:** firebase-android-sdk 31.1.0 ([af089c0](https://github.com/invertase/react-native-firebase/commit/af089c00496aa55e66ea83e87b8cf54c8144c9fb))
475
+
476
+ ### [16.4.5](https://github.com/invertase/react-native-firebase/compare/v16.4.4...v16.4.5) (2022-11-16)
477
+
478
+ **Note:** Version bump only for package @react-native-firebase/messaging
479
+
480
+ ### [16.4.4](https://github.com/invertase/react-native-firebase/compare/v16.4.3...v16.4.4) (2022-11-14)
481
+
482
+ **Note:** Version bump only for package @react-native-firebase/messaging
483
+
484
+ ### [16.4.3](https://github.com/invertase/react-native-firebase/compare/v16.4.2...v16.4.3) (2022-11-06)
485
+
486
+ **Note:** Version bump only for package @react-native-firebase/messaging
487
+
488
+ ### [16.4.2](https://github.com/invertase/react-native-firebase/compare/v16.4.1...v16.4.2) (2022-11-04)
489
+
490
+ **Note:** Version bump only for package @react-native-firebase/messaging
491
+
492
+ ### [16.4.1](https://github.com/invertase/react-native-firebase/compare/v16.4.0...v16.4.1) (2022-11-02)
493
+
494
+ **Note:** Version bump only for package @react-native-firebase/messaging
495
+
496
+ ## [16.4.0](https://github.com/invertase/react-native-firebase/compare/v16.3.1...v16.4.0) (2022-10-30)
497
+
498
+ **Note:** Version bump only for package @react-native-firebase/messaging
499
+
500
+ ### [16.3.1](https://github.com/invertase/react-native-firebase/compare/v16.3.0...v16.3.1) (2022-10-28)
501
+
502
+ **Note:** Version bump only for package @react-native-firebase/messaging
503
+
504
+ ## [16.3.0](https://github.com/invertase/react-native-firebase/compare/v16.2.0...v16.3.0) (2022-10-26)
505
+
506
+ **Note:** Version bump only for package @react-native-firebase/messaging
507
+
508
+ ## [16.2.0](https://github.com/invertase/react-native-firebase/compare/v16.1.1...v16.2.0) (2022-10-23)
509
+
510
+ **Note:** Version bump only for package @react-native-firebase/messaging
511
+
512
+ ### [16.1.1](https://github.com/invertase/react-native-firebase/compare/v16.1.0...v16.1.1) (2022-10-21)
513
+
514
+ **Note:** Version bump only for package @react-native-firebase/messaging
515
+
516
+ ## [16.1.0](https://github.com/invertase/react-native-firebase/compare/v16.0.0...v16.1.0) (2022-10-20)
517
+
518
+ **Note:** Version bump only for package @react-native-firebase/messaging
519
+
520
+ ## [16.0.0](https://github.com/invertase/react-native-firebase/compare/v15.7.1...v16.0.0) (2022-10-19)
521
+
522
+ **Note:** Version bump only for package @react-native-firebase/messaging
523
+
524
+ ## [15.7.1](https://github.com/invertase/react-native-firebase/compare/v15.7.0...v15.7.1) (2022-10-19)
525
+
526
+ **Note:** Version bump only for package @react-native-firebase/messaging
527
+
528
+ # [15.7.0](https://github.com/invertase/react-native-firebase/compare/v15.6.0...v15.7.0) (2022-10-01)
529
+
530
+ **Note:** Version bump only for package @react-native-firebase/messaging
531
+
532
+ # [15.6.0](https://github.com/invertase/react-native-firebase/compare/v15.5.0...v15.6.0) (2022-09-17)
533
+
534
+ ### Features
535
+
536
+ - **messaging:** add support for setDeliveryMetricsExportToBigQuery ([#6529](https://github.com/invertase/react-native-firebase/issues/6529)) ([930abd6](https://github.com/invertase/react-native-firebase/commit/930abd6920f70c89bdc70a674ff93f080b3b968d))
537
+
538
+ # [15.5.0](https://github.com/invertase/react-native-firebase/compare/v15.4.0...v15.5.0) (2022-09-16)
539
+
540
+ **Note:** Version bump only for package @react-native-firebase/messaging
541
+
542
+ # [15.4.0](https://github.com/invertase/react-native-firebase/compare/v15.3.0...v15.4.0) (2022-08-27)
543
+
544
+ ### Bug Fixes
545
+
546
+ - **messaging, ios:** Support Ephemeral authorization state ([#6478](https://github.com/invertase/react-native-firebase/issues/6478)) ([795b684](https://github.com/invertase/react-native-firebase/commit/795b68472deb0089ac4ddf7270e361a2db1da351))
547
+
548
+ # [15.3.0](https://github.com/invertase/react-native-firebase/compare/v15.2.0...v15.3.0) (2022-08-07)
549
+
550
+ ### Bug Fixes
551
+
552
+ - **ios, messaging:** depend directly on FirebaseCoreExtension pod ([62ee54b](https://github.com/invertase/react-native-firebase/commit/62ee54b8a7d273430cbebf88af1d8a96fed6a6a6)), closes [#6403](https://github.com/invertase/react-native-firebase/issues/6403) [#6352](https://github.com/invertase/react-native-firebase/issues/6352)
553
+ - **messaging, ios:** eliminate auth/messaging notification race ([#6455](https://github.com/invertase/react-native-firebase/issues/6455)) ([7183118](https://github.com/invertase/react-native-firebase/commit/71831188a4d90800cce424a5a3cfb29978391bd3))
554
+
555
+ # [15.2.0](https://github.com/invertase/react-native-firebase/compare/v15.1.1...v15.2.0) (2022-07-21)
556
+
557
+ ### Features
558
+
559
+ - **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))
560
+
561
+ ## [15.1.1](https://github.com/invertase/react-native-firebase/compare/v15.1.0...v15.1.1) (2022-06-28)
562
+
563
+ **Note:** Version bump only for package @react-native-firebase/messaging
564
+
565
+ # [15.1.0](https://github.com/invertase/react-native-firebase/compare/v15.0.0...v15.1.0) (2022-06-28)
566
+
567
+ **Note:** Version bump only for package @react-native-firebase/messaging
568
+
569
+ # [15.0.0](https://github.com/invertase/react-native-firebase/compare/v14.11.1...v15.0.0) (2022-06-20)
570
+
571
+ - fix(storage, android)!: android now updates customMetadata as a group ([d602436](https://github.com/invertase/react-native-firebase/commit/d602436795bfb78f24bc69c42880133505738c00))
572
+
573
+ ### BREAKING CHANGES
574
+
575
+ - android works like web+iOS now: customMetadata if passed in will be
576
+ updated as a single atomic unit, all keys at once. Any key you want to keep in customMetadata
577
+ must be passed in during update; any missing keys will be removed. Set customMetadata to null
578
+ in order to remove customMetadata entirely, omit it during update to leave it unchanged.
579
+
580
+ ## [14.11.1](https://github.com/invertase/react-native-firebase/compare/v14.11.0...v14.11.1) (2022-06-17)
581
+
582
+ ### Bug Fixes
583
+
584
+ - **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)
585
+
586
+ # [14.11.0](https://github.com/invertase/react-native-firebase/compare/v14.10.1...v14.11.0) (2022-05-27)
587
+
588
+ **Note:** Version bump only for package @react-native-firebase/messaging
589
+
590
+ ## [14.10.1](https://github.com/invertase/react-native-firebase/compare/v14.10.0...v14.10.1) (2022-05-26)
591
+
592
+ **Note:** Version bump only for package @react-native-firebase/messaging
593
+
594
+ # [14.10.0](https://github.com/invertase/react-native-firebase/compare/v14.9.4...v14.10.0) (2022-05-26)
595
+
596
+ ### Bug Fixes
597
+
598
+ - **messaging, getToken:** add options for messaging instance ([88e218e](https://github.com/invertase/react-native-firebase/commit/88e218e7c5c9459197e4469c02de9efadcc14568))
599
+
600
+ ## [14.9.4](https://github.com/invertase/react-native-firebase/compare/v14.9.3...v14.9.4) (2022-05-14)
601
+
602
+ **Note:** Version bump only for package @react-native-firebase/messaging
603
+
604
+ ## [14.9.3](https://github.com/invertase/react-native-firebase/compare/v14.9.2...v14.9.3) (2022-05-10)
605
+
606
+ **Note:** Version bump only for package @react-native-firebase/messaging
607
+
608
+ ## [14.9.2](https://github.com/invertase/react-native-firebase/compare/v14.9.1...v14.9.2) (2022-05-10)
609
+
610
+ **Note:** Version bump only for package @react-native-firebase/messaging
611
+
612
+ ## [14.9.1](https://github.com/invertase/react-native-firebase/compare/v14.9.0...v14.9.1) (2022-04-28)
613
+
614
+ **Note:** Version bump only for package @react-native-firebase/messaging
615
+
616
+ # [14.9.0](https://github.com/invertase/react-native-firebase/compare/v14.8.1...v14.9.0) (2022-04-27)
617
+
618
+ **Note:** Version bump only for package @react-native-firebase/messaging
619
+
620
+ ## [14.8.1](https://github.com/invertase/react-native-firebase/compare/v14.8.0...v14.8.1) (2022-04-25)
621
+
622
+ **Note:** Version bump only for package @react-native-firebase/messaging
623
+
624
+ # [14.8.0](https://github.com/invertase/react-native-firebase/compare/v14.7.0...v14.8.0) (2022-04-19)
625
+
626
+ **Note:** Version bump only for package @react-native-firebase/messaging
627
+
628
+ # [14.7.0](https://github.com/invertase/react-native-firebase/compare/v14.6.0...v14.7.0) (2022-03-23)
629
+
630
+ **Note:** Version bump only for package @react-native-firebase/messaging
631
+
632
+ # [14.6.0](https://github.com/invertase/react-native-firebase/compare/v14.5.1...v14.6.0) (2022-03-23)
633
+
634
+ **Note:** Version bump only for package @react-native-firebase/messaging
635
+
636
+ ## [14.5.1](https://github.com/invertase/react-native-firebase/compare/v14.5.0...v14.5.1) (2022-03-05)
637
+
638
+ **Note:** Version bump only for package @react-native-firebase/messaging
639
+
640
+ # [14.5.0](https://github.com/invertase/react-native-firebase/compare/v14.4.0...v14.5.0) (2022-02-15)
641
+
642
+ **Note:** Version bump only for package @react-native-firebase/messaging
643
+
644
+ # [14.4.0](https://github.com/invertase/react-native-firebase/compare/v14.3.3...v14.4.0) (2022-02-13)
645
+
646
+ **Note:** Version bump only for package @react-native-firebase/messaging
647
+
648
+ ## [14.3.3](https://github.com/invertase/react-native-firebase/compare/v14.3.2...v14.3.3) (2022-02-12)
649
+
650
+ **Note:** Version bump only for package @react-native-firebase/messaging
651
+
652
+ ## [14.3.2](https://github.com/invertase/react-native-firebase/compare/v14.3.1...v14.3.2) (2022-02-10)
653
+
654
+ **Note:** Version bump only for package @react-native-firebase/messaging
655
+
656
+ ## [14.3.1](https://github.com/invertase/react-native-firebase/compare/v14.3.0...v14.3.1) (2022-02-07)
657
+
658
+ **Note:** Version bump only for package @react-native-firebase/messaging
659
+
660
+ # [14.3.0](https://github.com/invertase/react-native-firebase/compare/v14.2.4...v14.3.0) (2022-01-26)
661
+
662
+ ### Bug Fixes
663
+
664
+ - **messaging:** add missing PRIORITY_MIN value in JS to match TS ([#6033](https://github.com/invertase/react-native-firebase/issues/6033)) ([d34112a](https://github.com/invertase/react-native-firebase/commit/d34112aa91b18d1d105adaf52eb98bb197cffaa6))
665
+
666
+ ## [14.2.4](https://github.com/invertase/react-native-firebase/compare/v14.2.3...v14.2.4) (2022-01-24)
667
+
668
+ **Note:** Version bump only for package @react-native-firebase/messaging
669
+
670
+ ## [14.2.3](https://github.com/invertase/react-native-firebase/compare/v14.2.2...v14.2.3) (2022-01-20)
671
+
672
+ **Note:** Version bump only for package @react-native-firebase/messaging
673
+
674
+ ## [14.2.2](https://github.com/invertase/react-native-firebase/compare/v14.2.1...v14.2.2) (2022-01-06)
675
+
676
+ ### Bug Fixes
677
+
678
+ - **ios, messaging:** add ios version guard for `UNAuthorizationOptionProvidesAppNotificationSettings` ([#5986](https://github.com/invertase/react-native-firebase/issues/5986)) ([e8922c0](https://github.com/invertase/react-native-firebase/commit/e8922c0a98eb62c52bd25e84a10d30cd93c89db0))
679
+ - **ios, messaging:** serialize google.c.sender.id to message.from ([d3621eb](https://github.com/invertase/react-native-firebase/commit/d3621ebee9a081c7f7c11c1d4bf8cf8f43e6182b))
680
+
681
+ ## [14.2.1](https://github.com/invertase/react-native-firebase/compare/v14.2.0...v14.2.1) (2021-12-31)
682
+
683
+ **Note:** Version bump only for package @react-native-firebase/messaging
684
+
685
+ # [14.2.0](https://github.com/invertase/react-native-firebase/compare/v14.1.0...v14.2.0) (2021-12-31)
686
+
687
+ ### Features
688
+
689
+ - **messaging, ios:** add provideAppNotificationSettings iOS permission / handler ([#5972](https://github.com/invertase/react-native-firebase/issues/5972)) ([59cbe9f](https://github.com/invertase/react-native-firebase/commit/59cbe9f0feab5e70104725c2a764f4b6e3ec161c))
690
+
691
+ # [14.1.0](https://github.com/invertase/react-native-firebase/compare/v14.0.1...v14.1.0) (2021-12-18)
692
+
693
+ **Note:** Version bump only for package @react-native-firebase/messaging
694
+
695
+ ## [14.0.1](https://github.com/invertase/react-native-firebase/compare/v14.0.0...v14.0.1) (2021-12-15)
696
+
697
+ **Note:** Version bump only for package @react-native-firebase/messaging
698
+
699
+ # [14.0.0](https://github.com/invertase/react-native-firebase/compare/v13.1.1...v14.0.0) (2021-12-14)
700
+
701
+ **Note:** Version bump only for package @react-native-firebase/messaging
702
+
703
+ ## [13.1.1](https://github.com/invertase/react-native-firebase/compare/v13.1.0...v13.1.1) (2021-12-14)
704
+
705
+ ### Bug Fixes
706
+
707
+ - **deps:** AGP7.0.4, firebase-android-sdk 29.0.2, javascript deps ([55d0a36](https://github.com/invertase/react-native-firebase/commit/55d0a36a0addc54e347f26bb8ee88bb38b0fa4a6))
708
+ - **messaging, ios:** native.getInitialNotification can be undefined ([#5926](https://github.com/invertase/react-native-firebase/issues/5926)) ([f0318d2](https://github.com/invertase/react-native-firebase/commit/f0318d2465f24369479a92e5501e9e6078445458))
709
+
710
+ # [13.1.0](https://github.com/invertase/react-native-firebase/compare/v13.0.1...v13.1.0) (2021-12-02)
711
+
712
+ **Note:** Version bump only for package @react-native-firebase/messaging
713
+
714
+ ## [13.0.1](https://github.com/invertase/react-native-firebase/compare/v13.0.0...v13.0.1) (2021-11-05)
715
+
716
+ **Note:** Version bump only for package @react-native-firebase/messaging
717
+
718
+ # [13.0.0](https://github.com/invertase/react-native-firebase/compare/v12.9.3...v13.0.0) (2021-10-31)
719
+
720
+ ### Bug Fixes
721
+
722
+ - rename default branch to main ([25e1d3d](https://github.com/invertase/react-native-firebase/commit/25e1d3d5a1a8311588938dc9d8fdf71d11cd9963))
723
+
724
+ ## [12.9.3](https://github.com/invertase/react-native-firebase/compare/v12.9.2...v12.9.3) (2021-10-22)
725
+
726
+ **Note:** Version bump only for package @react-native-firebase/messaging
727
+
728
+ ## [12.9.2](https://github.com/invertase/react-native-firebase/compare/v12.9.1...v12.9.2) (2021-10-17)
729
+
730
+ **Note:** Version bump only for package @react-native-firebase/messaging
731
+
732
+ ## [12.9.1](https://github.com/invertase/react-native-firebase/compare/v12.9.0...v12.9.1) (2021-10-10)
733
+
734
+ **Note:** Version bump only for package @react-native-firebase/messaging
735
+
736
+ # [12.9.0](https://github.com/invertase/react-native-firebase/compare/v12.8.0...v12.9.0) (2021-10-03)
737
+
738
+ **Note:** Version bump only for package @react-native-firebase/messaging
739
+
740
+ # [12.8.0](https://github.com/invertase/react-native-firebase/compare/v12.7.5...v12.8.0) (2021-09-14)
741
+
742
+ **Note:** Version bump only for package @react-native-firebase/messaging
743
+
744
+ ## [12.7.5](https://github.com/invertase/react-native-firebase/compare/v12.7.4...v12.7.5) (2021-09-04)
745
+
746
+ **Note:** Version bump only for package @react-native-firebase/messaging
747
+
748
+ ## [12.7.4](https://github.com/invertase/react-native-firebase/compare/v12.7.3...v12.7.4) (2021-08-31)
749
+
750
+ **Note:** Version bump only for package @react-native-firebase/messaging
751
+
752
+ ## [12.7.3](https://github.com/invertase/react-native-firebase/compare/v12.7.2...v12.7.3) (2021-08-24)
753
+
754
+ ### Bug Fixes
755
+
756
+ - **messaging, ios): revert "fix(messaging, ios:** only call onMessage handler if message is data-only or undelivered" ([#5641](https://github.com/invertase/react-native-firebase/issues/5641)) ([f2162b7](https://github.com/invertase/react-native-firebase/commit/f2162b74e06b9f1163937e4cfd3671012c5e902d))
757
+
758
+ ## [12.7.2](https://github.com/invertase/react-native-firebase/compare/v12.7.1...v12.7.2) (2021-08-21)
759
+
760
+ **Note:** Version bump only for package @react-native-firebase/messaging
761
+
762
+ ## [12.7.1](https://github.com/invertase/react-native-firebase/compare/v12.7.0...v12.7.1) (2021-08-20)
763
+
764
+ **Note:** Version bump only for package @react-native-firebase/messaging
765
+
766
+ # [12.7.0](https://github.com/invertase/react-native-firebase/compare/v12.6.1...v12.7.0) (2021-08-19)
767
+
768
+ ### Bug Fixes
769
+
770
+ - onMessage to only trigger for data-only or undelivered messages ([a31643b](https://github.com/invertase/react-native-firebase/commit/a31643ba1712cafc2af4291dc3b5f1a61a7373ad))
771
+
772
+ ## [12.6.1](https://github.com/invertase/react-native-firebase/compare/v12.6.0...v12.6.1) (2021-08-17)
773
+
774
+ **Note:** Version bump only for package @react-native-firebase/messaging
775
+
776
+ # [12.6.0](https://github.com/invertase/react-native-firebase/compare/v12.5.0...v12.6.0) (2021-08-16)
777
+
778
+ ### Bug Fixes
779
+
780
+ - **messaging, ios:** return after resolving to avoid useless work ([491436f](https://github.com/invertase/react-native-firebase/commit/491436fe31cc4c0b8fafc3af91a62d581bc495a0))
781
+
782
+ ### Features
783
+
784
+ - **app, config:** implement app_data_collection_default_enabled firebase.json key ([1e47d45](https://github.com/invertase/react-native-firebase/commit/1e47d455aa3a99b4ad6e08caf491be3df63a7f55))
785
+
786
+ # [12.5.0](https://github.com/invertase/react-native-firebase/compare/v12.4.0...v12.5.0) (2021-08-12)
787
+
788
+ **Note:** Version bump only for package @react-native-firebase/messaging
789
+
790
+ # [12.4.0](https://github.com/invertase/react-native-firebase/compare/v12.3.0...v12.4.0) (2021-07-29)
791
+
792
+ ### Performance Improvements
793
+
794
+ - **messaging, ios:** Improve time to delivery of background messages on iOS ([#5547](https://github.com/invertase/react-native-firebase/issues/5547)) ([f4168b1](https://github.com/invertase/react-native-firebase/commit/f4168b154d6194cbc87e03d91787e59c8d97ea10))
795
+
796
+ # [12.3.0](https://github.com/invertase/react-native-firebase/compare/v12.2.0...v12.3.0) (2021-07-21)
797
+
798
+ **Note:** Version bump only for package @react-native-firebase/messaging
799
+
800
+ # [12.2.0](https://github.com/invertase/react-native-firebase/compare/v12.1.0...v12.2.0) (2021-07-16)
801
+
802
+ ### Bug Fixes
803
+
804
+ - **messaging:** Refactor code to avoid bugs ([5039759](https://github.com/invertase/react-native-firebase/commit/503975909383582d8850470455eeef8f18194ba8))
805
+
806
+ # [12.1.0](https://github.com/invertase/react-native-firebase/compare/v12.0.0...v12.1.0) (2021-06-11)
807
+
808
+ **Note:** Version bump only for package @react-native-firebase/messaging
809
+
810
+ # [12.0.0](https://github.com/invertase/react-native-firebase/compare/v11.5.0...v12.0.0) (2021-05-19)
811
+
812
+ **Note:** Version bump only for package @react-native-firebase/messaging
813
+
814
+ # [11.5.0](https://github.com/invertase/react-native-firebase/compare/v11.4.1...v11.5.0) (2021-05-12)
815
+
816
+ ### Bug Fixes
817
+
818
+ - **messaging, android:** avoid using rn61+ symbol ([4637332](https://github.com/invertase/react-native-firebase/commit/4637332bbdb857de650a604a138e2d5dd07be75f)), closes [#5236](https://github.com/invertase/react-native-firebase/issues/5236)
819
+
820
+ ## [11.4.1](https://github.com/invertase/react-native-firebase/compare/v11.4.0...v11.4.1) (2021-04-29)
821
+
822
+ **Note:** Version bump only for package @react-native-firebase/messaging
823
+
824
+ # [11.4.0](https://github.com/invertase/react-native-firebase/compare/v11.3.3...v11.4.0) (2021-04-29)
825
+
826
+ ### Bug Fixes
827
+
828
+ - **messaging, android:** repair crash handling remote notifications ([6a30d4b](https://github.com/invertase/react-native-firebase/commit/6a30d4b4798c0ff9f0d5e406d4da5fb47e313069))
829
+
830
+ ## [11.3.3](https://github.com/invertase/react-native-firebase/compare/v11.3.2...v11.3.3) (2021-04-24)
831
+
832
+ **Note:** Version bump only for package @react-native-firebase/messaging
833
+
834
+ ## [11.3.2](https://github.com/invertase/react-native-firebase/compare/v11.3.1...v11.3.2) (2021-04-19)
835
+
836
+ ### Bug Fixes
837
+
838
+ - **all, android:** purge jcenter() from android build ([2c6a6a8](https://github.com/invertase/react-native-firebase/commit/2c6a6a82ec363fd948ea880fd397acb886c97453))
839
+ - **messaging:** Missing notification on restart ([#5181](https://github.com/invertase/react-native-firebase/issues/5181)) ([ea6e138](https://github.com/invertase/react-native-firebase/commit/ea6e138121fff4d4d8d73d9ca1f6b8be8bed79c1))
840
+
841
+ ## [11.3.1](https://github.com/invertase/react-native-firebase/compare/v11.3.0...v11.3.1) (2021-04-18)
842
+
843
+ **Note:** Version bump only for package @react-native-firebase/messaging
844
+
845
+ # [11.3.0](https://github.com/invertase/react-native-firebase/compare/v11.2.0...v11.3.0) (2021-04-16)
846
+
847
+ **Note:** Version bump only for package @react-native-firebase/messaging
848
+
849
+ # [11.2.0](https://github.com/invertase/react-native-firebase/compare/v11.1.2...v11.2.0) (2021-03-26)
850
+
851
+ **Note:** Version bump only for package @react-native-firebase/messaging
852
+
853
+ ## [11.1.2](https://github.com/invertase/react-native-firebase/compare/v11.1.1...v11.1.2) (2021-03-17)
854
+
855
+ **Note:** Version bump only for package @react-native-firebase/messaging
856
+
857
+ ## [11.1.1](https://github.com/invertase/react-native-firebase/compare/v11.1.0...v11.1.1) (2021-03-16)
858
+
859
+ **Note:** Version bump only for package @react-native-firebase/messaging
860
+
861
+ # [11.1.0](https://github.com/invertase/react-native-firebase/compare/v11.0.0...v11.1.0) (2021-03-13)
862
+
863
+ **Note:** Version bump only for package @react-native-firebase/messaging
864
+
865
+ # [11.0.0](https://github.com/invertase/react-native-firebase/compare/v10.8.1...v11.0.0) (2021-03-03)
866
+
867
+ **Note:** Version bump only for package @react-native-firebase/messaging
868
+
869
+ ## [10.8.1](https://github.com/invertase/react-native-firebase/compare/v10.8.0...v10.8.1) (2021-02-22)
870
+
871
+ **Note:** Version bump only for package @react-native-firebase/messaging
872
+
873
+ # [10.8.0](https://github.com/invertase/react-native-firebase/compare/v10.7.0...v10.8.0) (2021-02-13)
874
+
875
+ **Note:** Version bump only for package @react-native-firebase/messaging
876
+
877
+ # [10.7.0](https://github.com/invertase/react-native-firebase/compare/v10.6.4...v10.7.0) (2021-02-09)
878
+
879
+ **Note:** Version bump only for package @react-native-firebase/messaging
880
+
881
+ ## [10.6.4](https://github.com/invertase/react-native-firebase/compare/v10.6.3...v10.6.4) (2021-02-05)
882
+
883
+ **Note:** Version bump only for package @react-native-firebase/messaging
884
+
885
+ ## [10.6.3](https://github.com/invertase/react-native-firebase/compare/v10.6.2...v10.6.3) (2021-02-05)
886
+
887
+ **Note:** Version bump only for package @react-native-firebase/messaging
888
+
889
+ ## [10.6.1](https://github.com/invertase/react-native-firebase/compare/v10.6.0...v10.6.1) (2021-02-04)
890
+
891
+ **Note:** Version bump only for package @react-native-firebase/messaging
892
+
893
+ # [10.6.0](https://github.com/invertase/react-native-firebase/compare/v10.5.1...v10.6.0) (2021-02-04)
894
+
895
+ **Note:** Version bump only for package @react-native-firebase/messaging
896
+
897
+ ## [10.5.1](https://github.com/invertase/react-native-firebase/compare/v10.5.0...v10.5.1) (2021-01-19)
898
+
899
+ **Note:** Version bump only for package @react-native-firebase/messaging
900
+
901
+ # [10.5.0](https://github.com/invertase/react-native-firebase/compare/v10.4.1...v10.5.0) (2021-01-18)
902
+
903
+ ### Bug Fixes
904
+
905
+ - **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))
906
+
907
+ ## [10.4.1](https://github.com/invertase/react-native-firebase/compare/v10.4.0...v10.4.1) (2021-01-08)
908
+
909
+ **Note:** Version bump only for package @react-native-firebase/messaging
910
+
911
+ # [10.4.0](https://github.com/invertase/react-native-firebase/compare/v10.3.1...v10.4.0) (2020-12-30)
912
+
913
+ ### Bug Fixes
914
+
915
+ - **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))
916
+
917
+ ## [10.3.1](https://github.com/invertase/react-native-firebase/compare/v10.3.0...v10.3.1) (2020-12-18)
918
+
919
+ **Note:** Version bump only for package @react-native-firebase/messaging
920
+
921
+ # [10.3.0](https://github.com/invertase/react-native-firebase/compare/v10.2.0...v10.3.0) (2020-12-18)
922
+
923
+ **Note:** Version bump only for package @react-native-firebase/messaging
924
+
925
+ # [10.2.0](https://github.com/invertase/react-native-firebase/compare/v10.1.1...v10.2.0) (2020-12-11)
926
+
927
+ ### Features
928
+
929
+ - 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))
930
+
931
+ ## [10.1.1](https://github.com/invertase/react-native-firebase/compare/v10.1.0...v10.1.1) (2020-12-02)
932
+
933
+ ### Bug Fixes
934
+
935
+ - **messaging:** remote message from messaging store on new intent ([#4634](https://github.com/invertase/react-native-firebase/issues/4634)) ([00b83af](https://github.com/invertase/react-native-firebase/commit/00b83af15ca23d667e4258a1cf3e5b6a830a8f2d))
936
+
937
+ # [10.1.0](https://github.com/invertase/react-native-firebase/compare/v10.0.0...v10.1.0) (2020-11-26)
938
+
939
+ ### Bug Fixes
940
+
941
+ - **messaging, badge:** use new iOS JSON location for FCM badge information ([#4560](https://github.com/invertase/react-native-firebase/issues/4560)) ([bda2d67](https://github.com/invertase/react-native-firebase/commit/bda2d67ddaf7f12ac3143b564e7e94974e8356db))
942
+
943
+ ### Features
944
+
945
+ - **messaging, android:** make native serializer object + events builder APIs public ([#4618](https://github.com/invertase/react-native-firebase/issues/4618)) ([e54fecc](https://github.com/invertase/react-native-firebase/commit/e54feccea41fdbe4a7b10554b32ce2cef6068c66))
946
+
947
+ # [10.0.0](https://github.com/invertase/react-native-firebase/compare/fc8c4c0622f8e6814879d0306f66012df5b83cd8...v10.0.0) (2020-11-17)
948
+
949
+ ### BREAKING CHANGES
950
+
951
+ - breaking change to mark new internal versioning requirements.
952
+
953
+ ## [8.0.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@8.0.0...@react-native-firebase/messaging@8.0.1) (2020-11-10)
954
+
955
+ **Note:** Version bump only for package @react-native-firebase/messaging
956
+
957
+ # [8.0.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.9.2...@react-native-firebase/messaging@8.0.0) (2020-11-10)
958
+
959
+ ### Bug Fixes
960
+
961
+ - **messaging:** BREAKING drop iOS FCM direct channel + upstream send APIs ([22ede33](https://github.com/invertase/react-native-firebase/commit/22ede3303d640364782a14a6813a5b8efc9e459e))
962
+
963
+ ### BREAKING CHANGES
964
+
965
+ - **messaging:** Upstream send should be done with cloud functions. FCM Direct channel has no replacement.
966
+
967
+ ## [7.9.2](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.9.1...@react-native-firebase/messaging@7.9.2) (2020-10-30)
968
+
969
+ **Note:** Version bump only for package @react-native-firebase/messaging
970
+
971
+ ## [7.9.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.9.0...@react-native-firebase/messaging@7.9.1) (2020-10-16)
972
+
973
+ **Note:** Version bump only for package @react-native-firebase/messaging
974
+
975
+ # [7.9.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.8.11...@react-native-firebase/messaging@7.9.0) (2020-10-07)
976
+
977
+ ### Features
978
+
979
+ - **ios, messaging:** add getIsHeadless method to access iOS launch state ([#4304](https://github.com/invertase/react-native-firebase/issues/4304)) ([8a4e9a5](https://github.com/invertase/react-native-firebase/commit/8a4e9a5259fd89885f3f5e825328899476e9e3ee))
980
+
981
+ ## [7.8.11](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.8.10...@react-native-firebase/messaging@7.8.11) (2020-09-30)
982
+
983
+ **Note:** Version bump only for package @react-native-firebase/messaging
984
+
985
+ ## [7.8.10](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.8.9...@react-native-firebase/messaging@7.8.10) (2020-09-30)
986
+
987
+ ### Bug Fixes
988
+
989
+ - **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))
990
+ - **android, messaging:** fix(android, messaging): store notifications for initial/open attribution [#4317](https://github.com/invertase/react-native-firebase/issues/4317) ([a7cafc9](https://github.com/invertase/react-native-firebase/commit/a7cafc92f4250d2ccb16cb181a4029f14b76b8ca))
991
+
992
+ ## [7.8.9](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.8.8...@react-native-firebase/messaging@7.8.9) (2020-09-30)
993
+
994
+ **Note:** Version bump only for package @react-native-firebase/messaging
995
+
996
+ ## [7.8.8](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.8.7...@react-native-firebase/messaging@7.8.8) (2020-09-17)
997
+
998
+ **Note:** Version bump only for package @react-native-firebase/messaging
999
+
1000
+ ## [7.8.7](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.8.6...@react-native-firebase/messaging@7.8.7) (2020-09-17)
1001
+
1002
+ ### Bug Fixes
1003
+
1004
+ - **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))
1005
+
1006
+ ## [7.8.6](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.8.5...@react-native-firebase/messaging@7.8.6) (2020-09-11)
1007
+
1008
+ **Note:** Version bump only for package @react-native-firebase/messaging
1009
+
1010
+ ## [7.8.5](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.8.4...@react-native-firebase/messaging@7.8.5) (2020-09-11)
1011
+
1012
+ ### Bug Fixes
1013
+
1014
+ - **ios, messaging:** remove UNNotificationServiceExtension / use local target extension ([#4226](https://github.com/invertase/react-native-firebase/issues/4226)) ([1be2a39](https://github.com/invertase/react-native-firebase/commit/1be2a3915ad4e5062779e86e7c9b78c970ca9c64))
1015
+
1016
+ ## [7.8.4](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.8.3...@react-native-firebase/messaging@7.8.4) (2020-08-31)
1017
+
1018
+ ### Bug Fixes
1019
+
1020
+ - **ios, messaging:** register background handler task for FCM events ([#4180](https://github.com/invertase/react-native-firebase/issues/4180)) ([cf706c6](https://github.com/invertase/react-native-firebase/commit/cf706c683dd1d23860f15df636cc345cb6f3b60a))
1021
+
1022
+ ## [7.8.3](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.8.2...@react-native-firebase/messaging@7.8.3) (2020-08-28)
1023
+
1024
+ **Note:** Version bump only for package @react-native-firebase/messaging
1025
+
1026
+ ## [7.8.2](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.8.1...@react-native-firebase/messaging@7.8.2) (2020-08-28)
1027
+
1028
+ **Note:** Version bump only for package @react-native-firebase/messaging
1029
+
1030
+ ## [7.8.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.8.0...@react-native-firebase/messaging@7.8.1) (2020-08-26)
1031
+
1032
+ **Note:** Version bump only for package @react-native-firebase/messaging
1033
+
1034
+ # [7.8.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.7.4...@react-native-firebase/messaging@7.8.0) (2020-08-26)
1035
+
1036
+ ### Features
1037
+
1038
+ - 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))
1039
+
1040
+ ## [7.7.4](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.7.3...@react-native-firebase/messaging@7.7.4) (2020-08-26)
1041
+
1042
+ ### Bug Fixes
1043
+
1044
+ - undelivered background data message ios ([#4144](https://github.com/invertase/react-native-firebase/issues/4144)) ([415dba4](https://github.com/invertase/react-native-firebase/commit/415dba496ddf0551019e1bcfea4080809c300980))
1045
+
1046
+ ## [7.7.3](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.7.2...@react-native-firebase/messaging@7.7.3) (2020-08-25)
1047
+
1048
+ ### Bug Fixes
1049
+
1050
+ - **ios, analytics:** remove now-optional analytics dependencies ([#4131](https://github.com/invertase/react-native-firebase/issues/4131)) ([fdb5e9f](https://github.com/invertase/react-native-firebase/commit/fdb5e9f5786822343b11d3257d9f466a9d593fa4))
1051
+
1052
+ ## [7.7.2](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.7.1...@react-native-firebase/messaging@7.7.2) (2020-08-21)
1053
+
1054
+ ### Bug Fixes
1055
+
1056
+ - **messaging,ios:** fix build error ([#4119](https://github.com/invertase/react-native-firebase/issues/4119)) ([06fcd84](https://github.com/invertase/react-native-firebase/commit/06fcd84c9b3968a0f4d408c2db7bafe4323591ac))
1057
+
1058
+ ## [7.7.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.7.0...@react-native-firebase/messaging@7.7.1) (2020-08-15)
1059
+
1060
+ **Note:** Version bump only for package @react-native-firebase/messaging
1061
+
1062
+ # [7.7.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.6.1...@react-native-firebase/messaging@7.7.0) (2020-08-15)
1063
+
1064
+ ### Bug Fixes
1065
+
1066
+ - **messaging:** initialize app props method to fix isHeadless property ([#4082](https://github.com/invertase/react-native-firebase/issues/4082)) ([2bdebb1](https://github.com/invertase/react-native-firebase/commit/2bdebb1d3d82915d0aa9a49431d26658721a2f86))
1067
+ - **messaging, ios:** call original delegate when intercepting willPresentNotification ([#4088](https://github.com/invertase/react-native-firebase/issues/4088)) ([62ee961](https://github.com/invertase/react-native-firebase/commit/62ee961d6ebffe529bdfa938443e1f25a0201e0e))
1068
+
1069
+ ### Features
1070
+
1071
+ - **messaging:** allow messaging services to hook into FCM ([#4087](https://github.com/invertase/react-native-firebase/issues/4087)) ([bff8f9f](https://github.com/invertase/react-native-firebase/commit/bff8f9fba8dd46a5cea71461fc7a2c4f0fddb48e))
1072
+ - **messaging, ios:** add notification extension for ios notification images ([#4085](https://github.com/invertase/react-native-firebase/issues/4085)) ([32ab205](https://github.com/invertase/react-native-firebase/commit/32ab2054c0f8c8db4b6127f4ba1f50c9064e83d9))
1073
+
1074
+ ## [7.6.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.6.0...@react-native-firebase/messaging@7.6.1) (2020-08-03)
1075
+
1076
+ **Note:** Version bump only for package @react-native-firebase/messaging
1077
+
1078
+ # [7.6.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.5.0...@react-native-firebase/messaging@7.6.0) (2020-08-03)
1079
+
1080
+ ### Bug Fixes
1081
+
1082
+ - **messaging:** added missing `from` property in Remote Message type ([#4030](https://github.com/invertase/react-native-firebase/issues/4030)) ([ce39abf](https://github.com/invertase/react-native-firebase/commit/ce39abf9c0affe00ea13e2ad1580ac42bbb54a30))
1083
+
1084
+ ### Features
1085
+
1086
+ - 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))
1087
+ - **messaging,android:** save notification payload for messages that arrive in the foreground ([#3896](https://github.com/invertase/react-native-firebase/issues/3896)) ([ff768fc](https://github.com/invertase/react-native-firebase/commit/ff768fce54b2185a67958ea7d253a18ba40404b8))
1088
+
1089
+ # [7.5.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.4.2...@react-native-firebase/messaging@7.5.0) (2020-07-23)
1090
+
1091
+ ### Features
1092
+
1093
+ - disable direct channels API on iOS, fixes [#3674](https://github.com/invertase/react-native-firebase/issues/3674) ([#3733](https://github.com/invertase/react-native-firebase/issues/3733)) ([8c9f4f5](https://github.com/invertase/react-native-firebase/commit/8c9f4f5e31bac6bfe95d75e1b088df59e51113e9))
1094
+
1095
+ ## [7.4.2](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.4.1...@react-native-firebase/messaging@7.4.2) (2020-07-09)
1096
+
1097
+ **Note:** Version bump only for package @react-native-firebase/messaging
1098
+
1099
+ ## [7.4.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.4.0...@react-native-firebase/messaging@7.4.1) (2020-07-07)
1100
+
1101
+ **Note:** Version bump only for package @react-native-firebase/messaging
1102
+
1103
+ # [7.4.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.3.2...@react-native-firebase/messaging@7.4.0) (2020-07-07)
1104
+
1105
+ ### Features
1106
+
1107
+ - **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))
1108
+
1109
+ ## [7.3.2](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.3.1...@react-native-firebase/messaging@7.3.2) (2020-07-06)
1110
+
1111
+ ### Bug Fixes
1112
+
1113
+ - **types:** add sentTime to FirebaseMessagingTypes.RemoteMessage ([#3885](https://github.com/invertase/react-native-firebase/issues/3885)) ([0b87a15](https://github.com/invertase/react-native-firebase/commit/0b87a15de04bbde065a4fd76ce8ab7a5c04f5b13))
1114
+
1115
+ ## [7.3.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.3.0...@react-native-firebase/messaging@7.3.1) (2020-07-05)
1116
+
1117
+ **Note:** Version bump only for package @react-native-firebase/messaging
1118
+
1119
+ # [7.3.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.2.1...@react-native-firebase/messaging@7.3.0) (2020-07-05)
1120
+
1121
+ ### Features
1122
+
1123
+ - **messaging:** Call original delegate when intercepting notification response on iOS ([b17df84](https://github.com/invertase/react-native-firebase/commit/b17df846d291cd6f507680f6415e78392c32b0b0))
1124
+
1125
+ ## [7.2.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.2.0...@react-native-firebase/messaging@7.2.1) (2020-06-30)
1126
+
1127
+ **Note:** Version bump only for package @react-native-firebase/messaging
1128
+
1129
+ # [7.2.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.1.8...@react-native-firebase/messaging@7.2.0) (2020-06-30)
1130
+
1131
+ ### Features
1132
+
1133
+ - support critical alert permissions ([#3852](https://github.com/invertase/react-native-firebase/issues/3852)) ([c8f7c31](https://github.com/invertase/react-native-firebase/commit/c8f7c3180250dd491ef57ddc0b66f7e491319c35))
1134
+
1135
+ ## [7.1.8](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.1.7...@react-native-firebase/messaging@7.1.8) (2020-06-26)
1136
+
1137
+ **Note:** Version bump only for package @react-native-firebase/messaging
1138
+
1139
+ ## [7.1.7](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.1.6...@react-native-firebase/messaging@7.1.7) (2020-06-22)
1140
+
1141
+ **Note:** Version bump only for package @react-native-firebase/messaging
1142
+
1143
+ ## [7.1.6](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.1.5...@react-native-firebase/messaging@7.1.6) (2020-06-18)
1144
+
1145
+ ### Bug Fixes
1146
+
1147
+ - **ios:** handle nil messaging token ([#3790](https://github.com/invertase/react-native-firebase/issues/3790)) ([b2ffe11](https://github.com/invertase/react-native-firebase/commit/b2ffe115874c422414d58038d5d01e1b411c5a6c))
1148
+
1149
+ ## [7.1.5](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.1.4...@react-native-firebase/messaging@7.1.5) (2020-06-10)
1150
+
1151
+ **Note:** Version bump only for package @react-native-firebase/messaging
1152
+
1153
+ ## [7.1.4](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.1.3...@react-native-firebase/messaging@7.1.4) (2020-06-03)
1154
+
1155
+ **Note:** Version bump only for package @react-native-firebase/messaging
1156
+
1157
+ ## [7.1.3](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.1.2...@react-native-firebase/messaging@7.1.3) (2020-05-29)
1158
+
1159
+ **Note:** Version bump only for package @react-native-firebase/messaging
1160
+
1161
+ ## [7.1.2](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.1.1...@react-native-firebase/messaging@7.1.2) (2020-05-29)
1162
+
1163
+ **Note:** Version bump only for package @react-native-firebase/messaging
1164
+
1165
+ ## [7.1.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.1.0...@react-native-firebase/messaging@7.1.1) (2020-05-28)
1166
+
1167
+ ### Bug Fixes
1168
+
1169
+ - **messaging,ios:** crash receiving notification with image ([#3701](https://github.com/invertase/react-native-firebase/issues/3701)) ([f889646](https://github.com/invertase/react-native-firebase/commit/f889646d2ecbede9f06fde67a63e877f14df8ced)), closes [#3447](https://github.com/invertase/react-native-firebase/issues/3447) [#3616](https://github.com/invertase/react-native-firebase/issues/3616) [#3447](https://github.com/invertase/react-native-firebase/issues/3447)
1170
+
1171
+ # [7.1.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.0.1...@react-native-firebase/messaging@7.1.0) (2020-05-22)
1172
+
1173
+ ### Features
1174
+
1175
+ - 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))
1176
+
1177
+ ## [7.0.1](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.0.0...@react-native-firebase/messaging@7.0.1) (2020-05-13)
1178
+
1179
+ **Note:** Version bump only for package @react-native-firebase/messaging
1180
+
1181
+ ## [7.0.0](https://github.com/invertase/react-native-firebase/compare/@react-native-firebase/messaging@7.0.0...@react-native-firebase/messaging@7.0.0) (2020-05-13)
1182
+
1183
+ - 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)
1184
+
1185
+ ### Bug Fixes
1186
+
1187
+ - onTokenChange method causing app to crash ([#3552](https://github.com/invertase/react-native-firebase/issues/3552)) ([1d7cd28](https://github.com/invertase/react-native-firebase/commit/1d7cd28f85d09d35805b59896809ca93aa436285))
1188
+ - **messaging:** onNotificationOpenedApp callable return type ([#3641](https://github.com/invertase/react-native-firebase/issues/3641)) ([cd5cb23](https://github.com/invertase/react-native-firebase/commit/cd5cb23d6353f617b5af350169e929c88f90aafb))
1189
+
1190
+ ### Features
1191
+
1192
+ - **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))
1193
+ - **messaging:** support loc keys on notification payloads ([#3579](https://github.com/invertase/react-native-firebase/issues/3579)) ([9b294b3](https://github.com/invertase/react-native-firebase/commit/9b294b3e161d604aa3c8900355c7b638974ea4ae))
1194
+
1195
+ ### BREAKING CHANGES
1196
+
1197
+ - breaking change to mark new internal versioning requirements.