@azure/storage-file-datalake 12.8.0-beta.1 → 12.8.0
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 +11 -0
- package/README.md +5 -4
- package/dist/index.js +269 -218
- package/dist/index.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/DataLakeFileSystemClient.js +15 -15
- package/dist-esm/storage-file-datalake/src/DataLakeFileSystemClient.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/DataLakeLeaseClient.js +5 -5
- package/dist-esm/storage-file-datalake/src/DataLakeLeaseClient.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/DataLakeServiceClient.js +14 -12
- package/dist-esm/storage-file-datalake/src/DataLakeServiceClient.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/Pipeline.js +6 -6
- package/dist-esm/storage-file-datalake/src/Pipeline.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/TelemetryPolicyFactory.js +1 -1
- package/dist-esm/storage-file-datalake/src/TelemetryPolicyFactory.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/clients.js +53 -53
- package/dist-esm/storage-file-datalake/src/clients.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/credentials/StorageSharedKeyCredential.js +1 -3
- package/dist-esm/storage-file-datalake/src/credentials/StorageSharedKeyCredential.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/credentials/UserDelegationKeyCredential.js +1 -3
- package/dist-esm/storage-file-datalake/src/credentials/UserDelegationKeyCredential.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/generated/src/models/parameters.js +1 -1
- package/dist-esm/storage-file-datalake/src/generated/src/models/parameters.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/generated/src/storageClientContext.js +2 -2
- package/dist-esm/storage-file-datalake/src/generated/src/storageClientContext.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/index.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/models.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/policies/StorageBrowserPolicy.js +1 -1
- package/dist-esm/storage-file-datalake/src/policies/StorageBrowserPolicy.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/policies/StorageRetryPolicy.js +5 -5
- package/dist-esm/storage-file-datalake/src/policies/StorageRetryPolicy.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/policies/StorageSharedKeyCredentialPolicy.js +4 -2
- package/dist-esm/storage-file-datalake/src/policies/StorageSharedKeyCredentialPolicy.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/policies/TelemetryPolicy.js +1 -1
- package/dist-esm/storage-file-datalake/src/policies/TelemetryPolicy.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/sas/AccountSASSignatureValues.js +2 -2
- package/dist-esm/storage-file-datalake/src/sas/AccountSASSignatureValues.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/sas/DataLakeSASSignatureValues.js +6 -6
- package/dist-esm/storage-file-datalake/src/sas/DataLakeSASSignatureValues.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/sas/SASQueryParameters.js +2 -2
- package/dist-esm/storage-file-datalake/src/sas/SASQueryParameters.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/transforms.js +7 -7
- package/dist-esm/storage-file-datalake/src/transforms.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/utils/Batch.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/utils/constants.js +11 -11
- package/dist-esm/storage-file-datalake/src/utils/constants.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/utils/tracing.js +2 -2
- package/dist-esm/storage-file-datalake/src/utils/tracing.js.map +1 -1
- package/dist-esm/storage-file-datalake/src/utils/utils.common.js +1 -1
- package/dist-esm/storage-file-datalake/src/utils/utils.common.js.map +1 -1
- package/package.json +38 -40
- package/{typings → types}/3.1/storage-file-datalake.d.ts +20 -0
- /package/{typings → types}/latest/storage-file-datalake.d.ts +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Release History
|
|
2
2
|
|
|
3
|
+
## 12.8.0 (2022-03-11)
|
|
4
|
+
|
|
5
|
+
### Features Added
|
|
6
|
+
|
|
7
|
+
- Includes all features released in 12.8.0-beta.1.
|
|
8
|
+
|
|
9
|
+
### Bugs Fixed
|
|
10
|
+
|
|
11
|
+
- Fixed a bug where customized `ProxyOptions` is overwrited by a default one when initializing `DataLakeServiceClient` with connection string.
|
|
12
|
+
- Set correct content length in requests for uploading operations to avoid unexpected failure if customized content length is incorrect.
|
|
13
|
+
|
|
3
14
|
## 12.8.0-beta.1 (2021-11-09)
|
|
4
15
|
|
|
5
16
|
### Features Added
|
package/README.md
CHANGED
|
@@ -10,6 +10,7 @@ Use the client libraries in this package to:
|
|
|
10
10
|
- Create/Read/List/Update/Delete Paths, Directories and Files
|
|
11
11
|
|
|
12
12
|
key links:
|
|
13
|
+
|
|
13
14
|
- [Source code](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/storage/storage-file-datalake)
|
|
14
15
|
- [Package (npm)](https://www.npmjs.com/package/@azure/storage-file-datalake)
|
|
15
16
|
- [API Reference Documentation](https://docs.microsoft.com/javascript/api/@azure/storage-file-datalake)
|
|
@@ -28,7 +29,7 @@ See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUP
|
|
|
28
29
|
|
|
29
30
|
### Prerequisites
|
|
30
31
|
|
|
31
|
-
- An [Azure subscription](https://azure.microsoft.com/free/)
|
|
32
|
+
- An [Azure subscription](https://azure.microsoft.com/free/)
|
|
32
33
|
- A [Storage Account](https://docs.microsoft.com/azure/storage/common/storage-account-create)
|
|
33
34
|
|
|
34
35
|
### Install the package
|
|
@@ -215,7 +216,7 @@ const datalakeServiceClient = new DataLakeServiceClient(
|
|
|
215
216
|
);
|
|
216
217
|
```
|
|
217
218
|
|
|
218
|
-
See the [Azure AD Auth sample](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/storage/storage-blob/samples/javascript/azureAdAuth.js) for a complete example using this method.
|
|
219
|
+
See the [Azure AD Auth sample](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/storage/storage-blob/samples/v12/javascript/azureAdAuth.js) for a complete example using this method.
|
|
219
220
|
|
|
220
221
|
[Note - Above steps are only for Node.js]
|
|
221
222
|
|
|
@@ -573,8 +574,8 @@ setLogLevel("info");
|
|
|
573
574
|
|
|
574
575
|
More code samples:
|
|
575
576
|
|
|
576
|
-
- [DataLake Storage Samples (JavaScript)](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/storage/storage-file-datalake/samples/javascript)
|
|
577
|
-
- [DataLake Storage Samples (TypeScript)](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/storage/storage-file-datalake/samples/typescript)
|
|
577
|
+
- [DataLake Storage Samples (JavaScript)](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/storage/storage-file-datalake/samples/v12/javascript)
|
|
578
|
+
- [DataLake Storage Samples (TypeScript)](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/storage/storage-file-datalake/samples/v12/typescript)
|
|
578
579
|
- [DataLake Storage Test Cases](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/storage/storage-file-datalake/test/)
|
|
579
580
|
|
|
580
581
|
## Contributing
|