@react-native-firebase/remote-config 21.14.0 → 22.1.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,17 @@
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.1.0](https://github.com/invertase/react-native-firebase/compare/v22.0.0...v22.1.0) (2025-04-30)
7
+
8
+ **Note:** Version bump only for package @react-native-firebase/remote-config
9
+
10
+ ## [22.0.0](https://github.com/invertase/react-native-firebase/compare/v21.14.0...v22.0.0) (2025-04-25)
11
+
12
+ ### Bug Fixes
13
+
14
+ - **android:** use `=` assignment vs deprecated space-assignment ([39c2ecb](https://github.com/invertase/react-native-firebase/commit/39c2ecb0069a8a5a65b04fb7f86ccecf83273868))
15
+ - enable provenance signing during publish ([4535f0d](https://github.com/invertase/react-native-firebase/commit/4535f0d5756c89aeb8f8e772348c71d8176348be))
16
+
6
17
  ## [21.14.0](https://github.com/invertase/react-native-firebase/compare/v21.13.0...v21.14.0) (2025-04-14)
7
18
 
8
19
  **Note:** Version bump only for package @react-native-firebase/remote-config
@@ -62,20 +62,20 @@ project.ext {
62
62
  android {
63
63
  def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')[0].toInteger()
64
64
  if (agpVersion >= 7) {
65
- namespace 'io.invertase.firebase.config'
65
+ namespace = 'io.invertase.firebase.config'
66
66
  }
67
67
 
68
68
  defaultConfig {
69
- multiDexEnabled true
69
+ multiDexEnabled = true
70
70
  }
71
71
  lintOptions {
72
72
  disable 'GradleCompatible'
73
- abortOnError false
73
+ abortOnError = false
74
74
  }
75
75
  if (agpVersion < 8) {
76
76
  compileOptions {
77
- sourceCompatibility JavaVersion.VERSION_11
78
- targetCompatibility JavaVersion.VERSION_11
77
+ sourceCompatibility = JavaVersion.VERSION_11
78
+ targetCompatibility = JavaVersion.VERSION_11
79
79
  }
80
80
  }
81
81
  sourceSets {
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '21.14.0';
2
+ module.exports = '22.1.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/remote-config",
3
- "version": "21.14.0",
3
+ "version": "22.1.0",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "React Native Firebase - React Native Firebase provides native integration with Remote Config, allowing you to change the appearance and/or functionality of your app without requiring an app update.",
6
6
  "main": "lib/index.js",
@@ -24,11 +24,12 @@
24
24
  "remote-config"
25
25
  ],
26
26
  "peerDependencies": {
27
- "@react-native-firebase/analytics": "21.14.0",
28
- "@react-native-firebase/app": "21.14.0"
27
+ "@react-native-firebase/analytics": "22.1.0",
28
+ "@react-native-firebase/app": "22.1.0"
29
29
  },
30
30
  "publishConfig": {
31
- "access": "public"
31
+ "access": "public",
32
+ "provenance": true
32
33
  },
33
- "gitHead": "7c7beaab9cf8a619927a33ef7a15b8000e2874c2"
34
+ "gitHead": "af6096ed9df878f0f169e899564b0aab68d396e5"
34
35
  }