@firebase/storage 0.9.0-canary.f318c7009 → 0.9.1
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 +10 -0
- package/dist/index.browser.cjs.js +17 -1
- package/dist/index.browser.cjs.js.map +1 -1
- package/dist/index.esm2017.js +17 -1
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm5.js +17 -1
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +17 -1
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/node-esm/index.node.esm.js +17 -1
- package/dist/node-esm/index.node.esm.js.map +1 -1
- package/dist/node-esm/src/implementation/error.d.ts +16 -0
- package/dist/src/implementation/error.d.ts +16 -0
- package/dist/storage-public.d.ts +2 -7
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
#Unreleased
|
|
2
2
|
|
|
3
|
+
## 0.9.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`3b481f572`](https://github.com/firebase/firebase-js-sdk/commit/3b481f572456e1eab3435bfc25717770d95a8c49) [#5831](https://github.com/firebase/firebase-js-sdk/pull/5831) (fixes [#5754](https://github.com/firebase/firebase-js-sdk/issues/5754)) - FirestoreError and StorageError now extend FirebaseError
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`3b481f572`](https://github.com/firebase/firebase-js-sdk/commit/3b481f572456e1eab3435bfc25717770d95a8c49)]:
|
|
10
|
+
- @firebase/util@1.4.3
|
|
11
|
+
- @firebase/component@0.5.10
|
|
12
|
+
|
|
3
13
|
## 0.9.0
|
|
4
14
|
|
|
5
15
|
### Minor Changes
|
|
@@ -47,6 +47,22 @@ var DEFAULT_MAX_OPERATION_RETRY_TIME = 2 * 60 * 1000;
|
|
|
47
47
|
*/
|
|
48
48
|
var DEFAULT_MAX_UPLOAD_RETRY_TIME = 10 * 60 * 1000;
|
|
49
49
|
|
|
50
|
+
/**
|
|
51
|
+
* @license
|
|
52
|
+
* Copyright 2017 Google LLC
|
|
53
|
+
*
|
|
54
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
55
|
+
* you may not use this file except in compliance with the License.
|
|
56
|
+
* You may obtain a copy of the License at
|
|
57
|
+
*
|
|
58
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
59
|
+
*
|
|
60
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
61
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
62
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
63
|
+
* See the License for the specific language governing permissions and
|
|
64
|
+
* limitations under the License.
|
|
65
|
+
*/
|
|
50
66
|
/**
|
|
51
67
|
* An error returned by the Firebase Storage SDK.
|
|
52
68
|
* @public
|
|
@@ -3391,7 +3407,7 @@ var FirebaseStorageImpl = /** @class */ (function () {
|
|
|
3391
3407
|
}());
|
|
3392
3408
|
|
|
3393
3409
|
var name = "@firebase/storage";
|
|
3394
|
-
var version = "0.9.
|
|
3410
|
+
var version = "0.9.1";
|
|
3395
3411
|
|
|
3396
3412
|
/**
|
|
3397
3413
|
* @license
|