@azure/storage-file-share 12.9.0-alpha.20220128.2 → 12.9.0-beta.3

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 CHANGED
@@ -1,14 +1,11 @@
1
1
  # Release History
2
2
 
3
- ## 12.9.0-beta.3 (Unreleased)
3
+ ## 12.9.0-beta.3 (2022-02-11)
4
4
 
5
5
  ### Features Added
6
6
 
7
- ### Breaking Changes
8
-
9
- ### Bugs Fixed
10
-
11
- ### Other Changes
7
+ - Added support for service version 2021-04-10.
8
+ - Added support for renaming a file or a directory.
12
9
 
13
10
  ## 12.9.0-beta.2 (2021-12-03)
14
11
 
@@ -206,14 +203,14 @@
206
203
  Before this change the option is specified as
207
204
  ```js
208
205
  fileServiceClient.listShares({
209
- include: ["metadata", "snapshots"]
206
+ include: ["metadata", "snapshots"],
210
207
  });
211
208
  ```
212
209
  After this change:
213
210
  ```js
214
211
  fileServiceClient.listShares({
215
212
  includeMetadata: true,
216
- includeSnapshots: true
213
+ includeSnapshots: true,
217
214
  });
218
215
  ```
219
216
 
@@ -244,7 +241,7 @@
244
241
  - Added `DirectoryClient.listHandlesSegment()` and `FileClient.listHandlesSegment()` to returns a list of open handles on a directory or a file.
245
242
  - Added `DirectoryClient.forceCloseHandlesSegment()`, `FileClient.forceCloseHandlesSegment()`, `DirectoryClient.forceCloseHandle()` and `FileClient.forceCloseHandle()` to close handles.
246
243
  - Pass through `options.abortSignal` to the optional `abortSignal` attribute in option bags instead of using `AbortSignal.none` as the default value when `options.abortSignal` is not specified.
247
- - Basic HTTP proxy authentication support is added. Proxy settings can be passed in the options while creating a new client. Example - [typescript/src/proxyAuth.ts](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/storage/storage-file-share/samples/v12/typescript/src/proxyAuth.ts)
244
+ - Basic HTTP proxy authentication support is added. Proxy settings can be passed in the options while creating a new client. Example - [proxyAuth.ts](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/storage/storage-file-share/samples-dev/proxyAuth.ts)
248
245
  - Connection strings for explicit storage endpoints are supported. - [Configure Azure Storage connection strings](https://docs.microsoft.com/azure/storage/common/storage-configure-connection-string#create-a-connection-string-for-an-explicit-storage-endpoint)
249
246
 
250
247
  ## 12.0.0-preview.2 (2019-08-01)