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