@react-native-firebase/messaging 21.14.0 → 22.0.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,13 @@
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
+ ## [22.0.0](https://github.com/invertase/react-native-firebase/compare/v21.14.0...v22.0.0) (2025-04-25)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **android:** use `=` assignment vs deprecated space-assignment ([39c2ecb](https://github.com/invertase/react-native-firebase/commit/39c2ecb0069a8a5a65b04fb7f86ccecf83273868))
11
+ - enable provenance signing during publish ([4535f0d](https://github.com/invertase/react-native-firebase/commit/4535f0d5756c89aeb8f8e772348c71d8176348be))
12
+
6
13
  ## [21.14.0](https://github.com/invertase/react-native-firebase/compare/v21.13.0...v21.14.0) (2025-04-14)
7
14
 
8
15
  ### Features
@@ -103,11 +103,11 @@ if (rootProject.ext && rootProject.ext.firebaseJson) {
103
103
  android {
104
104
  def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')[0].toInteger()
105
105
  if (agpVersion >= 7) {
106
- namespace 'io.invertase.firebase.messaging'
106
+ namespace = 'io.invertase.firebase.messaging'
107
107
  }
108
108
 
109
109
  defaultConfig {
110
- multiDexEnabled true
110
+ multiDexEnabled = true
111
111
  manifestPlaceholders = [
112
112
  firebaseJsonDeliveryMetricsExportEnabled: deliveryMetricsExportEnabled,
113
113
  firebaseJsonAutoInitEnabled: dataCollectionEnabled,
@@ -119,18 +119,18 @@ android {
119
119
 
120
120
  buildFeatures {
121
121
  // AGP 8 no longer builds config by default
122
- buildConfig true
122
+ buildConfig = true
123
123
  }
124
124
 
125
125
  lintOptions {
126
126
  disable 'GradleCompatible'
127
- abortOnError false
127
+ abortOnError = false
128
128
  }
129
129
 
130
130
  if (agpVersion < 8) {
131
131
  compileOptions {
132
- sourceCompatibility JavaVersion.VERSION_11
133
- targetCompatibility JavaVersion.VERSION_11
132
+ sourceCompatibility = JavaVersion.VERSION_11
133
+ targetCompatibility = JavaVersion.VERSION_11
134
134
  }
135
135
  }
136
136
  }
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '21.14.0';
2
+ module.exports = '22.0.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/messaging",
3
- "version": "21.14.0",
3
+ "version": "22.0.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",
@@ -24,11 +24,11 @@
24
24
  "messaging"
25
25
  ],
26
26
  "peerDependencies": {
27
- "@react-native-firebase/app": "21.14.0",
27
+ "@react-native-firebase/app": "22.0.0",
28
28
  "expo": ">=47.0.0"
29
29
  },
30
30
  "devDependencies": {
31
- "expo": "^52.0.35"
31
+ "expo": "^52.0.46"
32
32
  },
33
33
  "peerDependenciesMeta": {
34
34
  "expo": {
@@ -36,7 +36,8 @@
36
36
  }
37
37
  },
38
38
  "publishConfig": {
39
- "access": "public"
39
+ "access": "public",
40
+ "provenance": true
40
41
  },
41
- "gitHead": "7c7beaab9cf8a619927a33ef7a15b8000e2874c2"
42
+ "gitHead": "e9fee87b413c90e243347d5c60272f07f41d99b8"
42
43
  }
@@ -1 +1 @@
1
- {"root":["./src/index.ts","./src/android/index.ts","./src/android/setupFirebaseNotifationIcon.ts"],"version":"5.7.3"}
1
+ {"root":["./src/index.ts","./src/android/index.ts","./src/android/setupFirebaseNotifationIcon.ts"],"version":"5.8.3"}