@aws-amplify/storage 4.4.6-unstable.5 → 4.4.6
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 +12 -0
- package/dist/aws-amplify-storage.js +5 -15
- package/dist/aws-amplify-storage.js.map +1 -1
- package/dist/aws-amplify-storage.min.js +1 -1
- package/dist/aws-amplify-storage.min.js.map +1 -1
- package/lib/Storage.js +5 -10
- package/lib/Storage.js.map +1 -1
- package/lib-esm/Storage.js +5 -10
- package/lib-esm/Storage.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
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
|
+
## [4.4.6](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/storage@4.4.5...@aws-amplify/storage@4.4.6) (2021-11-09)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **@aws-amplify/storage:** add useAccelerateEndpoint to create s3client ([#9144](https://github.com/aws-amplify/amplify-js/issues/9144)) ([853adc7](https://github.com/aws-amplify/amplify-js/commit/853adc7554f0a61922e3348d3626c73a5166266d))
|
|
12
|
+
* **@aws-amplify/storage:** Automatically adjust systemClockoffset in Storage ([#9115](https://github.com/aws-amplify/amplify-js/issues/9115)) ([873941c](https://github.com/aws-amplify/amplify-js/commit/873941c655d9fe87a75238eadc0ae57dacc2fa16))
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
6
18
|
## [4.4.5](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/storage@4.4.4...@aws-amplify/storage@4.4.5) (2021-10-28)
|
|
7
19
|
|
|
8
20
|
|
|
@@ -47527,9 +47527,7 @@ function () {
|
|
|
47527
47527
|
};
|
|
47528
47528
|
|
|
47529
47529
|
Storage.prototype.copy = function (src, dest, config) {
|
|
47530
|
-
var
|
|
47531
|
-
|
|
47532
|
-
var provider = ((_a = config) === null || _a === void 0 ? void 0 : _a.provider) || DEFAULT_PROVIDER;
|
|
47530
|
+
var provider = (config === null || config === void 0 ? void 0 : config.provider) || DEFAULT_PROVIDER;
|
|
47533
47531
|
|
|
47534
47532
|
var prov = this._pluggables.find(function (pluggable) {
|
|
47535
47533
|
return pluggable.getProviderName() === provider;
|
|
@@ -47554,9 +47552,7 @@ function () {
|
|
|
47554
47552
|
};
|
|
47555
47553
|
|
|
47556
47554
|
Storage.prototype.get = function (key, config) {
|
|
47557
|
-
var
|
|
47558
|
-
|
|
47559
|
-
var provider = ((_a = config) === null || _a === void 0 ? void 0 : _a.provider) || DEFAULT_PROVIDER;
|
|
47555
|
+
var provider = (config === null || config === void 0 ? void 0 : config.provider) || DEFAULT_PROVIDER;
|
|
47560
47556
|
|
|
47561
47557
|
var prov = this._pluggables.find(function (pluggable) {
|
|
47562
47558
|
return pluggable.getProviderName() === provider;
|
|
@@ -47580,9 +47576,7 @@ function () {
|
|
|
47580
47576
|
};
|
|
47581
47577
|
|
|
47582
47578
|
Storage.prototype.put = function (key, object, config) {
|
|
47583
|
-
var
|
|
47584
|
-
|
|
47585
|
-
var provider = ((_a = config) === null || _a === void 0 ? void 0 : _a.provider) || DEFAULT_PROVIDER;
|
|
47579
|
+
var provider = (config === null || config === void 0 ? void 0 : config.provider) || DEFAULT_PROVIDER;
|
|
47586
47580
|
|
|
47587
47581
|
var prov = this._pluggables.find(function (pluggable) {
|
|
47588
47582
|
return pluggable.getProviderName() === provider;
|
|
@@ -47606,9 +47600,7 @@ function () {
|
|
|
47606
47600
|
};
|
|
47607
47601
|
|
|
47608
47602
|
Storage.prototype.remove = function (key, config) {
|
|
47609
|
-
var
|
|
47610
|
-
|
|
47611
|
-
var provider = ((_a = config) === null || _a === void 0 ? void 0 : _a.provider) || DEFAULT_PROVIDER;
|
|
47603
|
+
var provider = (config === null || config === void 0 ? void 0 : config.provider) || DEFAULT_PROVIDER;
|
|
47612
47604
|
|
|
47613
47605
|
var prov = this._pluggables.find(function (pluggable) {
|
|
47614
47606
|
return pluggable.getProviderName() === provider;
|
|
@@ -47623,9 +47615,7 @@ function () {
|
|
|
47623
47615
|
};
|
|
47624
47616
|
|
|
47625
47617
|
Storage.prototype.list = function (path, config) {
|
|
47626
|
-
var
|
|
47627
|
-
|
|
47628
|
-
var provider = ((_a = config) === null || _a === void 0 ? void 0 : _a.provider) || DEFAULT_PROVIDER;
|
|
47618
|
+
var provider = (config === null || config === void 0 ? void 0 : config.provider) || DEFAULT_PROVIDER;
|
|
47629
47619
|
|
|
47630
47620
|
var prov = this._pluggables.find(function (pluggable) {
|
|
47631
47621
|
return pluggable.getProviderName() === provider;
|