[Storage] Bump version for STG96 GA release (#31755)
[Storage] Bump version for STG96 GA release (#31755)
This commit is contained in:
Родитель
1a78604cc8
Коммит
e42618ca0e
|
@ -1,5 +1,11 @@
|
|||
# Release History
|
||||
|
||||
## 12.26.0 (2024-11-13)
|
||||
|
||||
### Features Added
|
||||
|
||||
- Includes all features released in 12.26.0-beta.1.
|
||||
|
||||
## 12.26.0-beta.1 (2024-10-15)
|
||||
|
||||
### Features Added
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@azure/storage-blob",
|
||||
"sdk-type": "client",
|
||||
"version": "12.26.0-beta.1",
|
||||
"version": "12.26.0",
|
||||
"description": "Microsoft Azure Storage SDK for JavaScript - Blob",
|
||||
"main": "./dist/index.js",
|
||||
"module": "./dist-esm/storage-blob/src/index.js",
|
||||
|
|
|
@ -48,7 +48,7 @@ export class StorageClient extends coreHttpCompat.ExtendedServiceClient {
|
|||
requestContentType: "application/json; charset=utf-8",
|
||||
};
|
||||
|
||||
const packageDetails = `azsdk-js-azure-storage-blob/12.26.0-beta.1`;
|
||||
const packageDetails = `azsdk-js-azure-storage-blob/12.26.0`;
|
||||
const userAgentPrefix =
|
||||
options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
||||
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT License.
|
||||
|
||||
export const SDK_VERSION: string = "12.26.0-beta.1";
|
||||
export const SDK_VERSION: string = "12.26.0";
|
||||
export const SERVICE_VERSION: string = "2025-01-05";
|
||||
|
||||
export const BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES: number = 256 * 1024 * 1024; // 256MB
|
||||
|
|
|
@ -21,7 +21,7 @@ add-credentials: false
|
|||
core-http-compat-mode: true
|
||||
use-extension:
|
||||
"@autorest/typescript": "latest"
|
||||
package-version: 12.26.0-beta.1
|
||||
package-version: 12.26.0
|
||||
```
|
||||
|
||||
## Customizations for Track 2 Generator
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# Release History
|
||||
|
||||
## 12.25.0 (2024-11-13)
|
||||
|
||||
### Features Added
|
||||
|
||||
- Includes all features released in 12.25.0-beta.1.
|
||||
|
||||
## 12.25.0-beta.1 (2024-10-15)
|
||||
|
||||
### Features Added
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@azure/storage-file-datalake",
|
||||
"version": "12.25.0-beta.1",
|
||||
"version": "12.25.0",
|
||||
"description": "Microsoft Azure Storage SDK for JavaScript - DataLake",
|
||||
"sdk-type": "client",
|
||||
"main": "./dist/index.js",
|
||||
|
@ -125,7 +125,7 @@
|
|||
"@azure/core-util": "^1.1.1",
|
||||
"@azure/core-xml": "^1.4.3",
|
||||
"@azure/logger": "^1.0.0",
|
||||
"@azure/storage-blob": "^12.26.0-beta.1",
|
||||
"@azure/storage-blob": "^12.26.0",
|
||||
"events": "^3.0.0",
|
||||
"tslib": "^2.2.0"
|
||||
},
|
||||
|
|
|
@ -44,7 +44,7 @@ export class StorageClient extends coreHttpCompat.ExtendedServiceClient {
|
|||
requestContentType: "application/json; charset=utf-8"
|
||||
};
|
||||
|
||||
const packageDetails = `azsdk-js-azure-storage-datalake/12.25.0-beta.1`;
|
||||
const packageDetails = `azsdk-js-azure-storage-datalake/12.25.0`;
|
||||
const userAgentPrefix =
|
||||
options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
||||
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT License.
|
||||
|
||||
export const SDK_VERSION: string = "12.25.0-beta.1";
|
||||
export const SDK_VERSION: string = "12.25.0";
|
||||
export const SERVICE_VERSION: string = "2025-01-05";
|
||||
|
||||
export const KB: number = 1024;
|
||||
|
|
|
@ -21,7 +21,7 @@ core-http-compat-mode: true
|
|||
add-credentials: false
|
||||
use-extension:
|
||||
"@autorest/typescript": "6.0.0"
|
||||
package-version: 12.25.0-beta.1
|
||||
package-version: 12.25.0
|
||||
```
|
||||
|
||||
## Customizations for Track 2 Generator
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
# Release History
|
||||
|
||||
## 12.26.0 (2024-11-13)
|
||||
|
||||
### Features Added
|
||||
|
||||
- Includes all features released in 12.26.0-beta.1.
|
||||
|
||||
## 12.26.0-beta.1 (2024-10-15)
|
||||
|
||||
### Features Added
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@azure/storage-file-share",
|
||||
"sdk-type": "client",
|
||||
"version": "12.26.0-beta.1",
|
||||
"version": "12.26.0",
|
||||
"description": "Microsoft Azure Storage SDK for JavaScript - File",
|
||||
"main": "./dist/index.js",
|
||||
"module": "./dist-esm/storage-file-share/src/index.js",
|
||||
|
|
|
@ -35,7 +35,7 @@ export class StorageClient extends coreHttpCompat.ExtendedServiceClient {
|
|||
requestContentType: "application/json; charset=utf-8"
|
||||
};
|
||||
|
||||
const packageDetails = `azsdk-js-azure-storage-file-share/12.26.0-beta.1`;
|
||||
const packageDetails = `azsdk-js-azure-storage-file-share/12.26.0`;
|
||||
const userAgentPrefix =
|
||||
options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
||||
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT License.
|
||||
|
||||
export const SDK_VERSION: string = "12.26.0-beta.1";
|
||||
export const SDK_VERSION: string = "12.26.0";
|
||||
export const SERVICE_VERSION: string = "2025-01-05";
|
||||
|
||||
export const FILE_MAX_SIZE_BYTES: number = 4 * 1024 * 1024 * 1024 * 1024; // 4TB
|
||||
|
|
|
@ -21,7 +21,7 @@ add-credentials: false
|
|||
core-http-compat-mode: true
|
||||
use-extension:
|
||||
"@autorest/typescript": "6.0.2"
|
||||
package-version: 12.25.1
|
||||
package-version: 12.26.0
|
||||
```
|
||||
|
||||
## Customizations for Track 2 Generator
|
||||
|
|
|
@ -1,14 +1,10 @@
|
|||
# Release History
|
||||
|
||||
## 12.24.1 (Unreleased)
|
||||
## 12.25.0 (2024-11-13)
|
||||
|
||||
### Features Added
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
### Bugs Fixed
|
||||
|
||||
### Other Changes
|
||||
- Added support for service version 2025-01-05.
|
||||
|
||||
## 12.24.0 (2024-09-22)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@azure/storage-queue",
|
||||
"sdk-type": "client",
|
||||
"version": "12.24.1",
|
||||
"version": "12.25.0",
|
||||
"description": "Microsoft Azure Storage SDK for JavaScript - Queue",
|
||||
"main": "./dist/index.js",
|
||||
"module": "./dist-esm/storage-queue/src/index.js",
|
||||
|
|
|
@ -99,7 +99,7 @@ export const timeoutInSeconds: OperationQueryParameter = {
|
|||
export const version: OperationParameter = {
|
||||
parameterPath: "version",
|
||||
mapper: {
|
||||
defaultValue: "2024-11-04",
|
||||
defaultValue: "2025-01-05",
|
||||
isConstant: true,
|
||||
serializedName: "x-ms-version",
|
||||
type: {
|
||||
|
|
|
@ -39,7 +39,7 @@ export class StorageClient extends coreHttpCompat.ExtendedServiceClient {
|
|||
requestContentType: "application/json; charset=utf-8"
|
||||
};
|
||||
|
||||
const packageDetails = `azsdk-js-azure-storage-queue/12.24.0`;
|
||||
const packageDetails = `azsdk-js-azure-storage-queue/12.25.0`;
|
||||
const userAgentPrefix =
|
||||
options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
||||
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
||||
|
@ -58,7 +58,7 @@ export class StorageClient extends coreHttpCompat.ExtendedServiceClient {
|
|||
this.url = url;
|
||||
|
||||
// Assigning values to Constant parameters
|
||||
this.version = options.version || "2024-11-04";
|
||||
this.version = options.version || "2025-01-05";
|
||||
this.service = new ServiceImpl(this);
|
||||
this.queue = new QueueImpl(this);
|
||||
this.messages = new MessagesImpl(this);
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
// Copyright (c) Microsoft Corporation.
|
||||
// Licensed under the MIT License.
|
||||
|
||||
export const SDK_VERSION: string = "12.24.1";
|
||||
export const SERVICE_VERSION: string = "2024-11-04";
|
||||
export const SDK_VERSION: string = "12.25.0";
|
||||
export const SERVICE_VERSION: string = "2025-01-05";
|
||||
|
||||
/**
|
||||
* The OAuth scope to use with Azure Storage.
|
||||
|
|
|
@ -21,7 +21,7 @@ add-credentials: false
|
|||
core-http-compat-mode: true
|
||||
use-extension:
|
||||
"@autorest/typescript": "6.0.3"
|
||||
package-version: 12.24.1
|
||||
package-version: 12.25.0
|
||||
```
|
||||
|
||||
## Customizations for Track 2 Generator
|
||||
|
@ -227,13 +227,13 @@ directive:
|
|||
$["x-ms-client-name"] = "queueAnalyticsLogging"
|
||||
```
|
||||
|
||||
### Update service version from "2018-03-28" to "2024-11-04"
|
||||
### Update service version from "2018-03-28" to "2025-01-05"
|
||||
|
||||
```yaml
|
||||
directive:
|
||||
- from: swagger-document
|
||||
where: $.parameters.ApiVersionParameter
|
||||
transform: $.enum = [ "2024-11-04" ];
|
||||
transform: $.enum = [ "2025-01-05" ];
|
||||
```
|
||||
|
||||
### Rename AccessPolicy start -> startsOn
|
||||
|
|
Загрузка…
Ссылка в новой задаче