@firebase/storage 0.9.12 → 0.9.13-canary.457fc2eeb

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
@@ -1,5 +1,17 @@
1
1
  #Unreleased
2
2
 
3
+ ## 0.9.13
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/component@0.5.21
13
+ - @firebase/util@1.7.3
14
+
3
15
  ## 0.9.12
4
16
 
5
17
  ### Patch Changes
@@ -536,7 +536,9 @@ function isNativeBlob(p) {
536
536
  return isNativeBlobDefined() && p instanceof Blob;
537
537
  }
538
538
  function isNativeBlobDefined() {
539
- return typeof Blob !== 'undefined';
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.12";
3494
+ var version = "0.9.13-canary.457fc2eeb";
3493
3495
 
3494
3496
  /**
3495
3497
  * @license