-
Notifications
You must be signed in to change notification settings - Fork 576
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: mege develop #917
chore: mege develop #917
Commits on Aug 3, 2020
-
feat: support non-english http header (#842)
* feat: support non-english http header * test: Add test cases for non-English request header information * feat: add headerEncoding option * feat: add encoder types * fix: remove object spread syntax Co-authored-by: biejia <wb-bj559483@alibaba-inc.com>
Configuration menu - View commit details
-
Copy full SHA for 4b6f511 - Browse repository at this point
Copy the full SHA 4b6f511View commit details
Commits on Aug 14, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 4e38050 - Browse repository at this point
Copy the full SHA 4e38050View commit details
Commits on Sep 18, 2020
-
Configuration menu - View commit details
-
Copy full SHA for c0dc40c - Browse repository at this point
Copy the full SHA c0dc40cView commit details
Commits on Sep 22, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 6fa9f3f - Browse repository at this point
Copy the full SHA 6fa9f3fView commit details
Commits on Sep 23, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 7435c56 - Browse repository at this point
Copy the full SHA 7435c56View commit details
Commits on Sep 27, 2020
-
feat: auto set stsConfig when sts expires (#856)
* feat: auto set stsConfig when sts expires * test: add auto set sts test case
Configuration menu - View commit details
-
Copy full SHA for 158d294 - Browse repository at this point
Copy the full SHA 158d294View commit details
Commits on Sep 28, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 1f91c3d - Browse repository at this point
Copy the full SHA 1f91c3dView commit details
Commits on Sep 29, 2020
-
Configuration menu - View commit details
-
Copy full SHA for b7b2f1c - Browse repository at this point
Copy the full SHA b7b2f1cView commit details
Commits on Nov 13, 2020
-
fix: use put insteadof putStream when calling multipartUpload to proc…
…ess small file in browser (#890)
Configuration menu - View commit details
-
Copy full SHA for cdd9995 - Browse repository at this point
Copy the full SHA cdd9995View commit details -
fix(browser):setTimeout has minimum time interval when tab is inactive (
Configuration menu - View commit details
-
Copy full SHA for 31fbd2c - Browse repository at this point
Copy the full SHA 31fbd2cView commit details
Commits on Nov 23, 2020
-
fix: merge conflict #726 (#892)
* fix: merge conflict * test: ResponseTimeoutError
Configuration menu - View commit details
-
Copy full SHA for 6c77ecc - Browse repository at this point
Copy the full SHA 6c77eccView commit details -
Configuration menu - View commit details
-
Copy full SHA for afb07f3 - Browse repository at this point
Copy the full SHA afb07f3View commit details
Commits on Nov 26, 2020
-
feat: retry when net err or timeout (#876)
* feat: retry when net err or timeout * test: should not retry when params.stream is not readable * test: retry in browser Co-authored-by: beajer <919060679@qq.com>
Configuration menu - View commit details
-
Copy full SHA for db4969e - Browse repository at this point
Copy the full SHA db4969eView commit details -
fix: getBucketVersions should use NextKeyMarker property (#896)
* fix: getBucketVersions should use NextKeyMarker property * docs: getBucketVersions should use NextKeyMarker property * docs: Compatible wrong property
Configuration menu - View commit details
-
Copy full SHA for b9076d4 - Browse repository at this point
Copy the full SHA b9076d4View commit details
Commits on Nov 30, 2020
-
* fix: multipartUpload zancun * fix: test case * test: multipartUploadStreams * test: cov * fix: error method * fix: test and destory(err) when cancel Co-authored-by: weiyie <912881342@qq.com>
Configuration menu - View commit details
-
Copy full SHA for cfc72f7 - Browse repository at this point
Copy the full SHA cfc72f7View commit details
Commits on Dec 1, 2020
-
Merge branch 'master' into develop
# Conflicts: # lib/browser/client.js # lib/client.js
Configuration menu - View commit details
-
Copy full SHA for 29a9ac6 - Browse repository at this point
Copy the full SHA 29a9ac6View commit details -
* feat: listObjectsV2 * style: trailingComma none
Configuration menu - View commit details
-
Copy full SHA for f75ad23 - Browse repository at this point
Copy the full SHA f75ad23View commit details -
fix: check region and endpoint for ssrf (#874)
* fix: check region and endpoint for ssrf * fix: retry in browser Co-authored-by: beajer <919060679@qq.com>
Configuration menu - View commit details
-
Copy full SHA for 5457ecf - Browse repository at this point
Copy the full SHA 5457ecfView commit details
Commits on Dec 2, 2020
-
Configuration menu - View commit details
-
Copy full SHA for a6d11fd - Browse repository at this point
Copy the full SHA a6d11fdView commit details
Commits on Dec 3, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 67f0e5f - Browse repository at this point
Copy the full SHA 67f0e5fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9f78505 - Browse repository at this point
Copy the full SHA 9f78505View commit details -
Configuration menu - View commit details
-
Copy full SHA for 51cd7e9 - Browse repository at this point
Copy the full SHA 51cd7e9View commit details
Commits on Dec 9, 2020
-
fix: the continuation-token params in listV2 (#906)
* fix: the continuation-token params in listV2 * docs: update headers.Expires
Configuration menu - View commit details
-
Copy full SHA for df18401 - Browse repository at this point
Copy the full SHA df18401View commit details
Commits on Dec 10, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 3775dc4 - Browse repository at this point
Copy the full SHA 3775dc4View commit details
Commits on Dec 25, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 9dceb70 - Browse repository at this point
Copy the full SHA 9dceb70View commit details -
fix: use lowercase header when calculating signatures (#910)
* fix: use lowercase header when calculating signatures * fix: should throw error when neither bucket nor cname; docs;
Configuration menu - View commit details
-
Copy full SHA for 8e1adfd - Browse repository at this point
Copy the full SHA 8e1adfdView commit details
Commits on Dec 29, 2020
-
fix(node): deepCopy not working for large Buffers (#909)
deepCopy does not work when copying an object with a large Buffer (see test case). This causes issues when using multipartUpload with the `checkpoint` option: e.g. ```js const file = Buffer.alloc(Math.pow(2, 30) - 1); // throws RangeError in utils/deepCopy multipartUpload("name", file, {checkpoint: {file, ...}}); ```
Configuration menu - View commit details
-
Copy full SHA for f52cd2e - Browse repository at this point
Copy the full SHA f52cd2eView commit details
Commits on Jan 4, 2021
-
feat: prevent caching for the get api (#916)
* feat: prevent caching for the get api * fix: support responseCacheControl for browser `get` * fix: unnecessary query parameters * fix: test case because Image Process updated compression algorithm * fix: test case of buffer replication in Nodejs8 * fix: remove test.only
Configuration menu - View commit details
-
Copy full SHA for f16fc50 - Browse repository at this point
Copy the full SHA f16fc50View commit details -
fix: do not copy buffer in completeMultipartUpload (#915)
* fix: do not copy buffer in completeMultipartUpload * fix: test case because Image Process updated compression algorithm * fix: test case of buffer replication in Nodejs8 * fix: remove test.only * fix: codecov
Configuration menu - View commit details
-
Copy full SHA for c18f4ea - Browse repository at this point
Copy the full SHA c18f4eaView commit details
Commits on Jan 5, 2021
-
Configuration menu - View commit details
-
Copy full SHA for eff95ae - Browse repository at this point
Copy the full SHA eff95aeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 860cf32 - Browse repository at this point
Copy the full SHA 860cf32View commit details