diff --git a/sdk/storage/storage-blob/CHANGELOG.md b/sdk/storage/storage-blob/CHANGELOG.md index db2894f71ffa..aa95d6bd9f59 100644 --- a/sdk/storage/storage-blob/CHANGELOG.md +++ b/sdk/storage/storage-blob/CHANGELOG.md @@ -1,15 +1,12 @@ # Release History -## 12.25.0-beta.2 (Unreleased) +## 12.25.0 (2024-09-22) ### Features Added +- Includes all features released in 12.25.0-beta.1. - Added support for customer provided key in BlockBlobClient.uploadStream(). -### Breaking Changes - -### Bugs Fixed - ### Other Changes - Upgraded dependency on `@azure/core-xml` to version `1.4.3`. diff --git a/sdk/storage/storage-blob/package.json b/sdk/storage/storage-blob/package.json index 2acb5d094d0e..ca519c399d8d 100644 --- a/sdk/storage/storage-blob/package.json +++ b/sdk/storage/storage-blob/package.json @@ -1,7 +1,7 @@ { "name": "@azure/storage-blob", "sdk-type": "client", - "version": "12.25.0-beta.2", + "version": "12.25.0", "description": "Microsoft Azure Storage SDK for JavaScript - Blob", "main": "./dist/index.js", "module": "./dist-esm/storage-blob/src/index.js", diff --git a/sdk/storage/storage-blob/src/generated/src/storageClient.ts b/sdk/storage/storage-blob/src/generated/src/storageClient.ts index 5164c0c88752..ac1879fcfdc3 100644 --- a/sdk/storage/storage-blob/src/generated/src/storageClient.ts +++ b/sdk/storage/storage-blob/src/generated/src/storageClient.ts @@ -48,7 +48,7 @@ export class StorageClient extends coreHttpCompat.ExtendedServiceClient { requestContentType: "application/json; charset=utf-8", }; - const packageDetails = `azsdk-js-azure-storage-blob/12.25.0-beta.1`; + const packageDetails = `azsdk-js-azure-storage-blob/12.25.0`; const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}` diff --git a/sdk/storage/storage-blob/src/utils/constants.ts b/sdk/storage/storage-blob/src/utils/constants.ts index 391f4a0ec482..56c9ba82039c 100644 --- a/sdk/storage/storage-blob/src/utils/constants.ts +++ b/sdk/storage/storage-blob/src/utils/constants.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -export const SDK_VERSION: string = "12.25.0-beta.2"; +export const SDK_VERSION: string = "12.25.0"; export const SERVICE_VERSION: string = "2024-11-04"; export const BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES: number = 256 * 1024 * 1024; // 256MB diff --git a/sdk/storage/storage-blob/swagger/README.md b/sdk/storage/storage-blob/swagger/README.md index 935ef1346c04..a1c21fb939a3 100644 --- a/sdk/storage/storage-blob/swagger/README.md +++ b/sdk/storage/storage-blob/swagger/README.md @@ -21,7 +21,7 @@ add-credentials: false core-http-compat-mode: true use-extension: "@autorest/typescript": "latest" -package-version: 12.25.0-beta.2 +package-version: 12.25.0 ``` ## Customizations for Track 2 Generator diff --git a/sdk/storage/storage-file-datalake/CHANGELOG.md b/sdk/storage/storage-file-datalake/CHANGELOG.md index ead90eb2136d..eab26220576e 100644 --- a/sdk/storage/storage-file-datalake/CHANGELOG.md +++ b/sdk/storage/storage-file-datalake/CHANGELOG.md @@ -1,12 +1,10 @@ # Release History -## 12.24.0-beta.2 (Unreleased) +## 12.24.0 (2024-09-22) ### Features Added -### Breaking Changes - -### Bugs Fixed +- Includes all features released in 12.24.0-beta.1. ### Other Changes diff --git a/sdk/storage/storage-file-datalake/package.json b/sdk/storage/storage-file-datalake/package.json index 85cc3c47b8ff..01e0b4238a54 100644 --- a/sdk/storage/storage-file-datalake/package.json +++ b/sdk/storage/storage-file-datalake/package.json @@ -1,6 +1,6 @@ { "name": "@azure/storage-file-datalake", - "version": "12.24.0-beta.2", + "version": "12.24.0", "description": "Microsoft Azure Storage SDK for JavaScript - DataLake", "sdk-type": "client", "main": "./dist/index.js", @@ -125,7 +125,7 @@ "@azure/core-xml": "^1.4.3", "@azure/core-util": "^1.1.1", "@azure/logger": "^1.0.0", - "@azure/storage-blob": "^12.25.0-beta.1", + "@azure/storage-blob": "^12.25.0", "events": "^3.0.0", "tslib": "^2.2.0" }, diff --git a/sdk/storage/storage-file-datalake/src/generated/src/storageClient.ts b/sdk/storage/storage-file-datalake/src/generated/src/storageClient.ts index 46d34fbf5f5b..cc77c2d37529 100644 --- a/sdk/storage/storage-file-datalake/src/generated/src/storageClient.ts +++ b/sdk/storage/storage-file-datalake/src/generated/src/storageClient.ts @@ -44,7 +44,7 @@ export class StorageClient extends coreHttpCompat.ExtendedServiceClient { requestContentType: "application/json; charset=utf-8" }; - const packageDetails = `azsdk-js-azure-storage-datalake/12.24.0-beta.1`; + const packageDetails = `azsdk-js-azure-storage-datalake/12.24.0`; const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}` diff --git a/sdk/storage/storage-file-datalake/src/utils/constants.ts b/sdk/storage/storage-file-datalake/src/utils/constants.ts index f7f05e2a148e..36d1087f6b26 100644 --- a/sdk/storage/storage-file-datalake/src/utils/constants.ts +++ b/sdk/storage/storage-file-datalake/src/utils/constants.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -export const SDK_VERSION: string = "12.24.0-beta.2"; +export const SDK_VERSION: string = "12.24.0"; export const SERVICE_VERSION: string = "2024-11-04"; export const KB: number = 1024; diff --git a/sdk/storage/storage-file-datalake/swagger/README.md b/sdk/storage/storage-file-datalake/swagger/README.md index 244bae11a998..e4825b41f4d4 100644 --- a/sdk/storage/storage-file-datalake/swagger/README.md +++ b/sdk/storage/storage-file-datalake/swagger/README.md @@ -21,7 +21,7 @@ core-http-compat-mode: true add-credentials: false use-extension: "@autorest/typescript": "6.0.0" -package-version: 12.24.0-beta.2 +package-version: 12.24.0 ``` ## Customizations for Track 2 Generator diff --git a/sdk/storage/storage-file-share/CHANGELOG.md b/sdk/storage/storage-file-share/CHANGELOG.md index ab30634cce17..30ff90c49b5b 100644 --- a/sdk/storage/storage-file-share/CHANGELOG.md +++ b/sdk/storage/storage-file-share/CHANGELOG.md @@ -1,12 +1,10 @@ # Release History -## 12.25.0-beta.2 (Unreleased) +## 12.25.0 (2024-09-22) ### Features Added -### Breaking Changes - -### Bugs Fixed +- Includes all features released in 12.25.0-beta.1. ### Other Changes diff --git a/sdk/storage/storage-file-share/package.json b/sdk/storage/storage-file-share/package.json index d324568e575a..054537fd1c07 100644 --- a/sdk/storage/storage-file-share/package.json +++ b/sdk/storage/storage-file-share/package.json @@ -1,7 +1,7 @@ { "name": "@azure/storage-file-share", "sdk-type": "client", - "version": "12.25.0-beta.2", + "version": "12.25.0", "description": "Microsoft Azure Storage SDK for JavaScript - File", "main": "./dist/index.js", "module": "./dist-esm/storage-file-share/src/index.js", diff --git a/sdk/storage/storage-file-share/src/generated/src/storageClient.ts b/sdk/storage/storage-file-share/src/generated/src/storageClient.ts index d0969893dfa4..db61cc04e780 100644 --- a/sdk/storage/storage-file-share/src/generated/src/storageClient.ts +++ b/sdk/storage/storage-file-share/src/generated/src/storageClient.ts @@ -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.25.0-beta.1`; + const packageDetails = `azsdk-js-azure-storage-file-share/12.25.0`; const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}` diff --git a/sdk/storage/storage-file-share/src/utils/constants.ts b/sdk/storage/storage-file-share/src/utils/constants.ts index f9e2d0fc1c28..58e3f8153c6c 100644 --- a/sdk/storage/storage-file-share/src/utils/constants.ts +++ b/sdk/storage/storage-file-share/src/utils/constants.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -export const SDK_VERSION: string = "12.25.0-beta.2"; +export const SDK_VERSION: string = "12.25.0"; export const SERVICE_VERSION: string = "2024-11-04"; export const FILE_MAX_SIZE_BYTES: number = 4 * 1024 * 1024 * 1024 * 1024; // 4TB diff --git a/sdk/storage/storage-file-share/swagger/README.md b/sdk/storage/storage-file-share/swagger/README.md index 5d1c2d1824e8..53f9a1678d9e 100644 --- a/sdk/storage/storage-file-share/swagger/README.md +++ b/sdk/storage/storage-file-share/swagger/README.md @@ -21,7 +21,7 @@ add-credentials: false core-http-compat-mode: true use-extension: "@autorest/typescript": "6.0.2" -package-version: 12.25.0-beta.2 +package-version: 12.25.0 ``` ## Customizations for Track 2 Generator diff --git a/sdk/storage/storage-queue/CHANGELOG.md b/sdk/storage/storage-queue/CHANGELOG.md index 9e9affdaedf3..57e9868e8b52 100644 --- a/sdk/storage/storage-queue/CHANGELOG.md +++ b/sdk/storage/storage-queue/CHANGELOG.md @@ -1,12 +1,10 @@ # Release History -## 12.24.0-beta.2 (Unreleased) +## 12.24.0 (2024-09-22) ### Features Added -### Breaking Changes - -### Bugs Fixed +- Includes all features released in 12.24.0-beta.1. ### Other Changes diff --git a/sdk/storage/storage-queue/package.json b/sdk/storage/storage-queue/package.json index b226400cbf1a..43de3bb6caa0 100644 --- a/sdk/storage/storage-queue/package.json +++ b/sdk/storage/storage-queue/package.json @@ -1,7 +1,7 @@ { "name": "@azure/storage-queue", "sdk-type": "client", - "version": "12.24.0-beta.2", + "version": "12.24.0", "description": "Microsoft Azure Storage SDK for JavaScript - Queue", "main": "./dist/index.js", "module": "./dist-esm/storage-queue/src/index.js", diff --git a/sdk/storage/storage-queue/src/generated/src/storageClient.ts b/sdk/storage/storage-queue/src/generated/src/storageClient.ts index 8181d7f78199..a76f33f05eaa 100644 --- a/sdk/storage/storage-queue/src/generated/src/storageClient.ts +++ b/sdk/storage/storage-queue/src/generated/src/storageClient.ts @@ -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-beta.1`; + const packageDetails = `azsdk-js-azure-storage-queue/12.24.0`; const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}` diff --git a/sdk/storage/storage-queue/src/utils/constants.ts b/sdk/storage/storage-queue/src/utils/constants.ts index 2bf03c60d2ba..f90ee2318037 100644 --- a/sdk/storage/storage-queue/src/utils/constants.ts +++ b/sdk/storage/storage-queue/src/utils/constants.ts @@ -1,7 +1,7 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT License. -export const SDK_VERSION: string = "12.24.0-beta.2"; +export const SDK_VERSION: string = "12.24.0"; export const SERVICE_VERSION: string = "2024-11-04"; /** diff --git a/sdk/storage/storage-queue/swagger/README.md b/sdk/storage/storage-queue/swagger/README.md index bfaac3ce81ff..d2c5dc4212b6 100644 --- a/sdk/storage/storage-queue/swagger/README.md +++ b/sdk/storage/storage-queue/swagger/README.md @@ -21,7 +21,7 @@ add-credentials: false core-http-compat-mode: true use-extension: "@autorest/typescript": "6.0.3" -package-version: 12.24.0-beta.2 +package-version: 12.24.0 ``` ## Customizations for Track 2 Generator