@firebase/storage 0.9.12 → 0.9.13-20221025194556
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 +13 -0
- package/dist/index.browser.cjs.js +4 -2
- package/dist/index.browser.cjs.js.map +1 -1
- package/dist/index.esm2017.js +6 -4
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm5.js +6 -4
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +4 -2
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/node-esm/index.node.esm.js +6 -4
- package/dist/node-esm/index.node.esm.js.map +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
#Unreleased
|
|
2
2
|
|
|
3
|
+
## 0.9.13-20221025194556
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`de1c717c2`](https://github.com/firebase/firebase-js-sdk/commit/de1c717c2f69e9f21744135b74f92829927b200b) [#6705](https://github.com/firebase/firebase-js-sdk/pull/6705) - Fixed issue where clients using Node.js v18 would use the native `Blob` object which is incompatible with `node-fetch`
|
|
8
|
+
|
|
9
|
+
- [`4af28c1a4`](https://github.com/firebase/firebase-js-sdk/commit/4af28c1a42bd25ce2353f694ca1724c6101cbce5) [#6682](https://github.com/firebase/firebase-js-sdk/pull/6682) - Upgrade TypeScript to 4.7.4.
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`4af28c1a4`](https://github.com/firebase/firebase-js-sdk/commit/4af28c1a42bd25ce2353f694ca1724c6101cbce5)]:
|
|
12
|
+
- @firebase/app@0.8.3-20221025194556
|
|
13
|
+
- @firebase/component@0.5.21-20221025194556
|
|
14
|
+
- @firebase/util@1.7.3-20221025194556
|
|
15
|
+
|
|
3
16
|
## 0.9.12
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -536,7 +536,9 @@ function isNativeBlob(p) {
|
|
|
536
536
|
return isNativeBlobDefined() && p instanceof Blob;
|
|
537
537
|
}
|
|
538
538
|
function isNativeBlobDefined() {
|
|
539
|
-
|
|
539
|
+
// Note: The `isNode()` check can be removed when `node-fetch` adds native Blob support
|
|
540
|
+
// PR: https://github.com/node-fetch/node-fetch/pull/1664
|
|
541
|
+
return typeof Blob !== 'undefined' && !util.isNode();
|
|
540
542
|
}
|
|
541
543
|
function validateNumber(argument, minValue, maxValue, value) {
|
|
542
544
|
if (value < minValue) {
|
|
@@ -3489,7 +3491,7 @@ var FirebaseStorageImpl = /** @class */ (function () {
|
|
|
3489
3491
|
}());
|
|
3490
3492
|
|
|
3491
3493
|
var name = "@firebase/storage";
|
|
3492
|
-
var version = "0.9.
|
|
3494
|
+
var version = "0.9.13-20221025194556";
|
|
3493
3495
|
|
|
3494
3496
|
/**
|
|
3495
3497
|
* @license
|