@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.
Files changed (52) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/README.md +5 -4
  3. package/dist/index.js +269 -218
  4. package/dist/index.js.map +1 -1
  5. package/dist-esm/storage-file-datalake/src/DataLakeFileSystemClient.js +15 -15
  6. package/dist-esm/storage-file-datalake/src/DataLakeFileSystemClient.js.map +1 -1
  7. package/dist-esm/storage-file-datalake/src/DataLakeLeaseClient.js +5 -5
  8. package/dist-esm/storage-file-datalake/src/DataLakeLeaseClient.js.map +1 -1
  9. package/dist-esm/storage-file-datalake/src/DataLakeServiceClient.js +14 -12
  10. package/dist-esm/storage-file-datalake/src/DataLakeServiceClient.js.map +1 -1
  11. package/dist-esm/storage-file-datalake/src/Pipeline.js +6 -6
  12. package/dist-esm/storage-file-datalake/src/Pipeline.js.map +1 -1
  13. package/dist-esm/storage-file-datalake/src/TelemetryPolicyFactory.js +1 -1
  14. package/dist-esm/storage-file-datalake/src/TelemetryPolicyFactory.js.map +1 -1
  15. package/dist-esm/storage-file-datalake/src/clients.js +53 -53
  16. package/dist-esm/storage-file-datalake/src/clients.js.map +1 -1
  17. package/dist-esm/storage-file-datalake/src/credentials/StorageSharedKeyCredential.js +1 -3
  18. package/dist-esm/storage-file-datalake/src/credentials/StorageSharedKeyCredential.js.map +1 -1
  19. package/dist-esm/storage-file-datalake/src/credentials/UserDelegationKeyCredential.js +1 -3
  20. package/dist-esm/storage-file-datalake/src/credentials/UserDelegationKeyCredential.js.map +1 -1
  21. package/dist-esm/storage-file-datalake/src/generated/src/models/parameters.js +1 -1
  22. package/dist-esm/storage-file-datalake/src/generated/src/models/parameters.js.map +1 -1
  23. package/dist-esm/storage-file-datalake/src/generated/src/storageClientContext.js +2 -2
  24. package/dist-esm/storage-file-datalake/src/generated/src/storageClientContext.js.map +1 -1
  25. package/dist-esm/storage-file-datalake/src/index.js.map +1 -1
  26. package/dist-esm/storage-file-datalake/src/models.js.map +1 -1
  27. package/dist-esm/storage-file-datalake/src/policies/StorageBrowserPolicy.js +1 -1
  28. package/dist-esm/storage-file-datalake/src/policies/StorageBrowserPolicy.js.map +1 -1
  29. package/dist-esm/storage-file-datalake/src/policies/StorageRetryPolicy.js +5 -5
  30. package/dist-esm/storage-file-datalake/src/policies/StorageRetryPolicy.js.map +1 -1
  31. package/dist-esm/storage-file-datalake/src/policies/StorageSharedKeyCredentialPolicy.js +4 -2
  32. package/dist-esm/storage-file-datalake/src/policies/StorageSharedKeyCredentialPolicy.js.map +1 -1
  33. package/dist-esm/storage-file-datalake/src/policies/TelemetryPolicy.js +1 -1
  34. package/dist-esm/storage-file-datalake/src/policies/TelemetryPolicy.js.map +1 -1
  35. package/dist-esm/storage-file-datalake/src/sas/AccountSASSignatureValues.js +2 -2
  36. package/dist-esm/storage-file-datalake/src/sas/AccountSASSignatureValues.js.map +1 -1
  37. package/dist-esm/storage-file-datalake/src/sas/DataLakeSASSignatureValues.js +6 -6
  38. package/dist-esm/storage-file-datalake/src/sas/DataLakeSASSignatureValues.js.map +1 -1
  39. package/dist-esm/storage-file-datalake/src/sas/SASQueryParameters.js +2 -2
  40. package/dist-esm/storage-file-datalake/src/sas/SASQueryParameters.js.map +1 -1
  41. package/dist-esm/storage-file-datalake/src/transforms.js +7 -7
  42. package/dist-esm/storage-file-datalake/src/transforms.js.map +1 -1
  43. package/dist-esm/storage-file-datalake/src/utils/Batch.js.map +1 -1
  44. package/dist-esm/storage-file-datalake/src/utils/constants.js +11 -11
  45. package/dist-esm/storage-file-datalake/src/utils/constants.js.map +1 -1
  46. package/dist-esm/storage-file-datalake/src/utils/tracing.js +2 -2
  47. package/dist-esm/storage-file-datalake/src/utils/tracing.js.map +1 -1
  48. package/dist-esm/storage-file-datalake/src/utils/utils.common.js +1 -1
  49. package/dist-esm/storage-file-datalake/src/utils/utils.common.js.map +1 -1
  50. package/package.json +38 -40
  51. package/{typings → types}/3.1/storage-file-datalake.d.ts +20 -0
  52. /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