@react-native-firebase/messaging 14.2.4 → 14.3.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [14.3.0](https://github.com/invertase/react-native-firebase/compare/v14.2.4...v14.3.0) (2022-01-26)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **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))
11
+
6
12
  ## [14.2.4](https://github.com/invertase/react-native-firebase/compare/v14.2.3...v14.2.4) (2022-01-24)
7
13
 
8
14
  **Note:** Version bump only for package @react-native-firebase/messaging
package/lib/index.js CHANGED
@@ -41,6 +41,7 @@ const statics = {
41
41
  PROVISIONAL: 2,
42
42
  },
43
43
  NotificationAndroidPriority: {
44
+ PRIORITY_MIN: -2,
44
45
  PRIORITY_LOW: -1,
45
46
  PRIORITY_DEFAULT: 0,
46
47
  PRIORITY_HIGH: 1,
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // generated by genversion
2
- module.exports = '14.2.4';
2
+ module.exports = '14.3.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/messaging",
3
- "version": "14.2.4",
3
+ "version": "14.3.0",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "React Native Firebase - React Native Firebase provides native integration of Firebase Cloud Messaging (FCM) for both Android & iOS. FCM is a cost free service, allowing for server-device and device-device communication. The React Native Firebase Messaging module provides a simple JavaScript API to interact with FCM.",
6
6
  "main": "lib/index.js",
@@ -22,10 +22,10 @@
22
22
  "messaging"
23
23
  ],
24
24
  "peerDependencies": {
25
- "@react-native-firebase/app": "14.2.4"
25
+ "@react-native-firebase/app": "14.3.0"
26
26
  },
27
27
  "publishConfig": {
28
28
  "access": "public"
29
29
  },
30
- "gitHead": "ef4189597f21955266a444e39700b5f0c13ea30a"
30
+ "gitHead": "240cabb06b34af67f20a68db4e1d9247eb7b6903"
31
31
  }