[Storage] update versions and CHANGELOG entries (#26590)

- ensure service versions are latest
- copy over CHANGELOG entries from storage/stable branch
This commit is contained in:
Jeremy Meng 2023-07-31 14:23:10 -07:00 коммит произвёл GitHub
Родитель 2af3b705e4
Коммит 17e88fa2a7
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
9 изменённых файлов: 141 добавлений и 17 удалений

Просмотреть файл

@ -12,14 +12,56 @@
- Migrated dependency on `@azure/core-http` to `@azure/core-rest-pipeline`.
## 12.13.0 (Unreleased)
## 12.15.0 (2023-07-12)
### Features Added
### Breaking Changes
- Includes all features released in 12.15.0.
## 12.15.0-beta.1 (2023-05-31)
### Features Added
- Added support for service version 2023-01-03.
## 12.14.0 (2023-04-13)
### Features Added
- Includes all features released in 12.14.0-beta.1.
### Bugs Fixed
- Fixed an issue of: StoragePipelineOptions is not passed into constructors for blob clients correctly when using undefined as credential parameter.
## 12.14.0-beta.1 (2023-03-29)
### Features Added
- Added support for service version 2022-11-02.
## 12.13.0 (2023-02-23)
### Features Added
- Includes all features released in 12.13.0-beta.1.
- Added BlobDownloadHeaders.createdOn property for interface BlobClient.Download().
### Bugs Fixed
- Fixed an issue of getting 403 error for file or directory name with './' or '../'
## 12.13.0-beta.1 (2023-02-09)
### Features Added
- Added support for service version 2021-12-02.
- Added support for Blob Cold Tier.
### Bugs Fixed
- Fixed bug where IncrementalCopyOfEarlierVersionSnapshotNotAllowed was spelled incorrectly.
### Other Changes
- Update dependency `@azure/core-http` version to `^3.0.0`.

Просмотреть файл

@ -12,19 +12,51 @@
- Migrated dependency on `@azure/core-http` to `@azure/core-rest-pipeline`.
## 12.12.0 (Unreleased)
## 12.14.0 (2023-07-12)
### Features Added
- Includes all features released in 12.14.0-beta.1.
## 12.14.0-beta.1 (2023-05-31)
### Features Added
- Added support for service version 2023-01-03.
- Added owner, group and permissions properties for response of DataLakePathClient.getProperties(), DataLakeFileClient.getProperties(), DataLakeFileClient,read(), and DataLakeDirectoryClient.getProperties().
## 12.13.0 (2023-04-13)
### Features Added
- Includes all features released in 12.13.0-beta.1.
## 12.13.0-beta.1 (2023-03-29)
### Features Added
- Added support for service version 2022-11-02.
- Added support for Encryption Context.
## 12.12.0 (2023-02-23)
### Features Added
- Includes all features released in 12.12.0-beta.1.
- Added FileReadHeaders.CreatedOn property for interface DataLakeFileClient.read().
### Bugs Fixed
- Renamed option 'leaseDuration' to 'leaseDurationInSeconds' in methods DataLakeFileClient.append() and flush(), the option was added in 12.12.0-beta.1.
- Fixed an issue of getting 403 error for file or directory name with './' or '../'
## 12.12.0-beta.1 (2023-02-09)
### Features Added
- Added support for service version 2021-12-02.
- Add support for acquiring, renewing and releasing lease in methods DataLakeFileClient.append() and flush().
### Breaking Changes
### Bugs Fixed
- Fixes the date properties(`createdOn` and `expiresOn`) in the returned responses of `DataLakeFileSystemClient` by calculating the date more accurately. [#25072](https://github.com/Azure/azure-sdk-for-js/pull/25072)
### Other Changes
- Update dependency `@azure/core-http` version to `^3.0.0`.

Просмотреть файл

@ -348,7 +348,7 @@ directive:
];
```
### Update service version from "2021-06-08" to "2021-12-02"
### Update service version from "2021-06-08" to "2023-01-03"
```yaml
directive:

Просмотреть файл

@ -12,14 +12,51 @@
- Migrated dependency on `@azure/core-http` to `@azure/core-rest-pipeline`.
## 12.13.0 (Unreleased)
## 12.15.0 (2023-07-12)
### Features Added
### Breaking Changes
- Includes all features released in 12.15.0.
## 12.15.0-beta.1 (2023-05-31)
### Features Added
- Added support for service version 2023-01-03.
- Added access rights in each handles returned by ShareDirectoryClient.listHandles()/ShareFileClient.listHandles().
## 12.14.0 (2023-04-13)
### Features Added
- Includes all features released in 12.14.0-beta.1.
## 12.14.0-beta.1 (2023-03-29)
### Features Added
- Added support for service version 2022-11-02.
- Added support OAuth.
- Added support for Trailing Dot.
## 12.13.0 (2023-02-23)
### Features Added
- Includes all features released in 12.13.0-beta.1.
### Bugs Fixed
- Fixed an issue of getting 403 error for blob name with './' or '../'
## 12.13.0-beta.1 (2023-02-09)
### Features Added
- Added support for service version 2021-12-02.
- Added support for invalid XML characters in file and directory names for ShareDirectoryClient.listFilesAndDirectories(), .listHandles(), and ShareFileClient.listHandles().
### Other Changes
- Update dependency `@azure/core-http` version to `^3.0.0`.

Просмотреть файл

@ -2,7 +2,7 @@
// Licensed under the MIT license.
export const SDK_VERSION: string = "12.20.0";
export const SERVICE_VERSION: string = "2022-11-02";
export const SERVICE_VERSION: string = "2023-01-03";
export const FILE_MAX_SIZE_BYTES: number = 4 * 1024 * 1024 * 1024 * 1024; // 4TB
export const FILE_RANGE_MAX_SIZE_BYTES: number = 4 * 1024 * 1024; // 4MB

Просмотреть файл

@ -12,6 +12,19 @@
- Migrated dependency on `@azure/core-http` to `@azure/core-rest-pipeline`.
## 12.14.0 (2023-07-12)
### Features Added
- Added support for service version 2023-01-03.
## 12.13.0 (2023-04-13)
### Features Added
- Added support for service version 2022-11-02.
## 12.12.0 (Unreleased)
### Features Added

Просмотреть файл

@ -99,7 +99,7 @@ export const timeoutInSeconds: OperationQueryParameter = {
export const version: OperationParameter = {
parameterPath: "version",
mapper: {
defaultValue: "2021-10-04",
defaultValue: "2023-01-03",
isConstant: true,
serializedName: "x-ms-version",
type: {

Просмотреть файл

@ -58,7 +58,7 @@ export class StorageClient extends coreHttpCompat.ExtendedServiceClient {
this.url = url;
// Assigning values to Constant parameters
this.version = options.version || "2021-10-04";
this.version = options.version || "2023-01-03";
this.service = new ServiceImpl(this);
this.queue = new QueueImpl(this);
this.messages = new MessagesImpl(this);

Просмотреть файл

@ -227,13 +227,13 @@ directive:
$["x-ms-client-name"] = "queueAnalyticsLogging"
```
### Update service version from "2018-03-28" to "2021-10-04"
### Update service version from "2018-03-28" to "2023-01-03"
```yaml
directive:
- from: swagger-document
where: $.parameters.ApiVersionParameter
transform: $.enum = [ "2021-10-04" ];
transform: $.enum = [ "2023-01-03" ];
```
### Rename AccessPolicy start -> startsOn