-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Storage] Azure Storage SDK 2018-11-09 Feature Release (#4418)
* [Storage] Fixed a bug of `downloadBlobToBuffer()` and `downloadAzureFileToBuffer()` when provided offset is not 0. * [Storage] Fixed a bug that `Aborter` cannot work during retry interval. * [Storage] * Export `RetryPolicyType`. * [Storage] Fixed a bug that Aborter throws timeout error even though it succeeds of blobURL or fileURL download * [Storage] Aborter doesn't require `dom` as tsconfig lib requirement anymore for `Event` type. * [Storage] * Fixed a bug that "err.code.toUpperCase is not a function" when retries in browser * [Storage] Resolved CR comments * [Storage-Queue] Updated queue API version to 2018-11-09 * [Storage][Blob] Regenerated blob protocol layer code against swagger 2018-11-09; Updated to autorest 4.1.1 and ms-rest-js ^1.8.1 * [Storage-File] Updated API version to 2018-11-09; Updated to autorest.typescript 4.1.1 and ms-rest-js ^1.8.1; * [Storage-File] Fixed FileURL.create() and setHTTPHeaders() issues introduced by re-generation * Added `DirectoryURL.listHandlesSegment()` and `FileURL.listHandlesSegment()` to returns a list of open handles on a directory or a file. * Added `DirectoryURL.forceCloseHandlesSegment()`, `FileURL.forceCloseHandlesSegment()`, `DirectoryURL.forceCloseHandle()` and `FileURL.forceCloseHandle()` to close handles * [Storage-File] Updated recorded tests * [Storage-File] Updated package version to 10.2.0 * Rename handlerID parameter to handlerId * [Storage] Updated contribution.md about record and play * [Storage-File] Updated changelog and comments to make them clearer * [Storage-Blob] Updated ChangeLog * [Storage-Blob] PageBlobURL.uploadPagesFromURL() AppendBlobURL.appendBlockFromURL() BlobURL.syncCopyFromURL() * [Storage] Resolved CR comments * [Storage][Blob] Added ServiceURL.getUserDelegationKey() * [Storage] Update to [email protected]; Updated HTTP client from axios to node-fetch in Node.js runtime. Support keepalive; * [Storage] Updated samples about keepAliveOptions * [Storage] Updated changelog; Fixed testcases; Updated pnpmlock; * [Storage] Added vinjiang and Jason Fan as storage code owners * [Storage] Record test cases * [Storage] Force to YYYY-MM-DDThh:mmTZD precision for getUserDelegationKey start and expiry time * [Storage] Resolved PR comments; Updated contribution.md & API comments; Optimized generated code import paths;
- Loading branch information
1 parent
ad35404
commit a0e8338
Showing
566 changed files
with
23,091 additions
and
16,532 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@azure/storage-blob", | ||
"sdk-type": "client", | ||
"version": "10.3.0", | ||
"version": "10.4.0", | ||
"description": "Microsoft Azure Storage SDK for JavaScript - Blob", | ||
"main": "./dist/index.js", | ||
"module": "./dist-esm/src/index.js", | ||
|
@@ -19,7 +19,7 @@ | |
}, | ||
"scripts": { | ||
"audit": "node ../../../common/scripts/rush-audit.js && rimraf node_modules package-lock.json && npm i --package-lock-only 2>&1 && npm audit", | ||
"build:autorest": "autorest ./swagger/README.md --typescript [email protected]/autorest.typescript@2.1.3", | ||
"build:autorest": "autorest ./swagger/README.md --typescript [email protected]/autorest.typescript@4.1.1", | ||
"build:browserzip": "gulp zip", | ||
"build:es6": "tsc -p tsconfig.json", | ||
"build:nodebrowser": "rollup -c 2>&1", | ||
|
@@ -74,7 +74,7 @@ | |
"homepage": "https://github.com/Azure/azure-sdk-for-js#readme", | ||
"sideEffects": false, | ||
"dependencies": { | ||
"@azure/ms-rest-js": "^1.2.6", | ||
"@azure/ms-rest-js": "^2.0.0", | ||
"events": "^3.0.0", | ||
"tslib": "^1.9.3" | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ob/recordings/browsers/aborter/recording_should_set_value_and_get_value_successfully.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"recordings": [], | ||
"uniqueTestInfo": { | ||
"container": "container156058697808401937" | ||
"container": "container156404691375200388" | ||
} | ||
} |
Oops, something went wrong.