@react-native-firebase/storage 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/storage
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/storage
@@ -62,21 +62,21 @@ 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.storage'
65
+ namespace = 'io.invertase.firebase.storage'
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
 
76
76
  if (agpVersion < 8) {
77
77
  compileOptions {
78
- sourceCompatibility JavaVersion.VERSION_11
79
- targetCompatibility JavaVersion.VERSION_11
78
+ sourceCompatibility = JavaVersion.VERSION_11
79
+ targetCompatibility = JavaVersion.VERSION_11
80
80
  }
81
81
  }
82
82
  }
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/storage",
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 Cloud Storage, providing support to upload and download files directly from your device and from your Firebase Cloud Storage bucket.",
6
6
  "main": "lib/index.js",
@@ -29,10 +29,11 @@
29
29
  "download"
30
30
  ],
31
31
  "peerDependencies": {
32
- "@react-native-firebase/app": "21.14.0"
32
+ "@react-native-firebase/app": "22.1.0"
33
33
  },
34
34
  "publishConfig": {
35
- "access": "public"
35
+ "access": "public",
36
+ "provenance": true
36
37
  },
37
- "gitHead": "7c7beaab9cf8a619927a33ef7a15b8000e2874c2"
38
+ "gitHead": "af6096ed9df878f0f169e899564b0aab68d396e5"
38
39
  }