diff --git a/sdk/storage/storage-blob/CHANGELOG.md b/sdk/storage/storage-blob/CHANGELOG.md index f62a9c58e272..b160d24025e8 100644 --- a/sdk/storage/storage-blob/CHANGELOG.md +++ b/sdk/storage/storage-blob/CHANGELOG.md @@ -1,16 +1,15 @@ # Release History -## 12.10.0-beta.2 (Unreleased) +## 12.10.0 (2022-05-12) ### Features Added -### Breaking Changes +- Includes all features released in 12.10.0-beta.1. ### Bugs Fixed - Refined user-agent value to avoid failure when os information is not available on some platforms. - -### Other Changes +- Fix an issue of not returning raw blob properties in ContainerClient.listBlobsFlat() and ContainerClient.listBlobsByHierarchy(). ## 12.10.0-beta.1 (2022-04-19) diff --git a/sdk/storage/storage-blob/package.json b/sdk/storage/storage-blob/package.json index f38f8601f53c..5ff3c690243e 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.10.0-beta.2", + "version": "12.10.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/storageClientContext.ts b/sdk/storage/storage-blob/src/generated/src/storageClientContext.ts index c10b55a09828..d5322b575311 100644 --- a/sdk/storage/storage-blob/src/generated/src/storageClientContext.ts +++ b/sdk/storage/storage-blob/src/generated/src/storageClientContext.ts @@ -10,7 +10,7 @@ import * as coreHttp from "@azure/core-http"; import { StorageClientOptionalParams } from "./models"; const packageName = "azure-storage-blob"; -const packageVersion = "12.10.0-beta.2"; +const packageVersion = "12.10.0"; export class StorageClientContext extends coreHttp.ServiceClient { url: string; diff --git a/sdk/storage/storage-blob/src/utils/constants.ts b/sdk/storage/storage-blob/src/utils/constants.ts index 1fc6dce3b66d..544df459c449 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.10.0-beta.2"; +export const SDK_VERSION: string = "12.10.0"; export const SERVICE_VERSION: string = "2021-06-08"; 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 7bf1859d83de..20178e4a78d1 100644 --- a/sdk/storage/storage-blob/swagger/README.md +++ b/sdk/storage/storage-blob/swagger/README.md @@ -20,7 +20,7 @@ disable-async-iterators: true add-credentials: false use-extension: "@autorest/typescript": "6.0.0-dev.20210218.1" -package-version: 12.10.0-beta.2 +package-version: 12.10.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 1388ee14e9e8..e10112e53b56 100644 --- a/sdk/storage/storage-file-datalake/CHANGELOG.md +++ b/sdk/storage/storage-file-datalake/CHANGELOG.md @@ -1,17 +1,15 @@ # Release History -## 12.9.0-beta.2 (Unreleased) +## 12.9.0 (2022-05-12) ### Features Added -### Breaking Changes +- Includes all features released in 12.9.0-beta.1. ### Bugs Fixed - Refined user-agent value to avoid failure when os information is not available on some platforms. -### Other Changes - ## 12.9.0-beta.1 (2022-04-19) ### Features Added diff --git a/sdk/storage/storage-file-datalake/package.json b/sdk/storage/storage-file-datalake/package.json index 1c5444da444b..7422d3287117 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.9.0-beta.2", + "version": "12.9.0", "description": "Microsoft Azure Storage SDK for JavaScript - DataLake", "sdk-type": "client", "main": "./dist/index.js", @@ -122,7 +122,7 @@ "@azure/core-paging": "^1.1.1", "@azure/core-tracing": "1.0.0-preview.13", "@azure/logger": "^1.0.0", - "@azure/storage-blob": "^12.10.0-beta.1", + "@azure/storage-blob": "^12.10.0", "events": "^3.0.0", "tslib": "^2.2.0" }, diff --git a/sdk/storage/storage-file-datalake/src/generated/src/storageClientContext.ts b/sdk/storage/storage-file-datalake/src/generated/src/storageClientContext.ts index 573814740377..2687e996a022 100644 --- a/sdk/storage/storage-file-datalake/src/generated/src/storageClientContext.ts +++ b/sdk/storage/storage-file-datalake/src/generated/src/storageClientContext.ts @@ -10,7 +10,7 @@ import * as coreHttp from "@azure/core-http"; import { StorageClientOptionalParams } from "./models"; const packageName = "azure-storage-datalake"; -const packageVersion = "12.9.0-beta.2"; +const packageVersion = "12.9.0"; export class StorageClientContext extends coreHttp.ServiceClient { url: string; diff --git a/sdk/storage/storage-file-datalake/src/utils/constants.ts b/sdk/storage/storage-file-datalake/src/utils/constants.ts index aa3c10f74632..be6b3ba30b27 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.9.0-beta.2"; +export const SDK_VERSION: string = "12.9.0"; export const SERVICE_VERSION: string = "2021-06-08"; 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 8944564f6d61..514b3f4ea0d1 100644 --- a/sdk/storage/storage-file-datalake/swagger/README.md +++ b/sdk/storage/storage-file-datalake/swagger/README.md @@ -20,7 +20,7 @@ disable-async-iterators: true add-credentials: false use-extension: "@autorest/typescript": "6.0.0-dev.20210223.1" -package-version: 12.9.0-beta.2 +package-version: 12.9.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 eda4598f52ec..b86f46d9dbc9 100644 --- a/sdk/storage/storage-file-share/CHANGELOG.md +++ b/sdk/storage/storage-file-share/CHANGELOG.md @@ -1,17 +1,15 @@ # Release History -## 12.10.0-beta.2 (Unreleased) +## 12.10.0 (2022-05-12) ### Features Added -### Breaking Changes +- Includes all features released in 12.10.0-beta.1. ### Bugs Fixed - Refined user-agent value to avoid failure when os information is not available on some platforms. -### Other Changes - ## 12.10.0-beta.1 (2022-04-19) ### Features Added diff --git a/sdk/storage/storage-file-share/package.json b/sdk/storage/storage-file-share/package.json index 312a9c44daaf..b1191ac16eb0 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.10.0-beta.2", + "version": "12.10.0", "description": "Microsoft Azure Storage SDK for JavaScript - File", "main": "./dist/index.js", "module": "./dist-esm/src/index.js", @@ -132,7 +132,7 @@ "tslib": "^2.2.0" }, "devDependencies": { - "@azure/storage-blob": "^12.9.0", + "@azure/storage-blob": "^12.10.0", "@azure/dev-tool": "^1.0.0", "@azure/eslint-plugin-azure-sdk": "^3.0.0", "@azure/test-utils": "^1.0.0", diff --git a/sdk/storage/storage-file-share/src/generated/src/storageClientContext.ts b/sdk/storage/storage-file-share/src/generated/src/storageClientContext.ts index 9abfcbb655a2..d0fdb2c70ab7 100644 --- a/sdk/storage/storage-file-share/src/generated/src/storageClientContext.ts +++ b/sdk/storage/storage-file-share/src/generated/src/storageClientContext.ts @@ -10,7 +10,7 @@ import * as coreHttp from "@azure/core-http"; import { StorageClientOptionalParams } from "./models"; const packageName = "azure-storage-file-share"; -const packageVersion = "12.10.0-beta.2"; +const packageVersion = "12.10.0"; export class StorageClientContext extends coreHttp.ServiceClient { url: string; diff --git a/sdk/storage/storage-file-share/src/utils/constants.ts b/sdk/storage/storage-file-share/src/utils/constants.ts index 8b982ca8a010..38291fa28fa5 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.10.0-beta.2"; +export const SDK_VERSION: string = "12.10.0"; export const SERVICE_VERSION: string = "2021-06-08"; 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 1398940d1df8..e2c52f3c000b 100644 --- a/sdk/storage/storage-file-share/swagger/README.md +++ b/sdk/storage/storage-file-share/swagger/README.md @@ -20,7 +20,7 @@ disable-async-iterators: true add-credentials: false use-extension: "@autorest/typescript": "6.0.0-dev.20210218.1" -package-version: 12.10.0-beta.2 +package-version: 12.10.0 ``` ## Customizations for Track 2 Generator diff --git a/sdk/storage/storage-queue/CHANGELOG.md b/sdk/storage/storage-queue/CHANGELOG.md index 0228ad700918..b66c9e8278e7 100644 --- a/sdk/storage/storage-queue/CHANGELOG.md +++ b/sdk/storage/storage-queue/CHANGELOG.md @@ -1,10 +1,10 @@ # Release History -## 12.8.1 (Unreleased) +## 12.9.0 (2022-05-12) ### Features Added -### Breaking Changes +- Added support for service version 2021-06-08. ### Bugs Fixed @@ -12,8 +12,6 @@ - Fixed a bug where customized `ProxyOptions` is overwrited by a default one when initializing `QueueServiceClient` or `QueueClient` with connection string. - Refined user-agent value to avoid failure when os information is not available on some platforms. -### Other Changes - ## 12.8.0 (2022-03-11) ### Features Added diff --git a/sdk/storage/storage-queue/package.json b/sdk/storage/storage-queue/package.json index 5d707c48c977..40b03850ce55 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.8.1", + "version": "12.9.0", "description": "Microsoft Azure Storage SDK for JavaScript - Queue", "main": "./dist/index.js", "module": "./dist-esm/src/index.js", diff --git a/sdk/storage/storage-queue/src/generated/src/storageClientContext.ts b/sdk/storage/storage-queue/src/generated/src/storageClientContext.ts index 5cef5fa56190..b34c4751c233 100644 --- a/sdk/storage/storage-queue/src/generated/src/storageClientContext.ts +++ b/sdk/storage/storage-queue/src/generated/src/storageClientContext.ts @@ -10,7 +10,7 @@ import * as coreHttp from "@azure/core-http"; import { StorageClientOptionalParams } from "./models"; const packageName = "azure-storage-queue"; -const packageVersion = "12.8.1"; +const packageVersion = "12.9.0"; export class StorageClientContext extends coreHttp.ServiceClient { url: string; diff --git a/sdk/storage/storage-queue/src/utils/constants.ts b/sdk/storage/storage-queue/src/utils/constants.ts index 07617bb5b1e9..4b5ade2a3e07 100644 --- a/sdk/storage/storage-queue/src/utils/constants.ts +++ b/sdk/storage/storage-queue/src/utils/constants.ts @@ -1,8 +1,8 @@ // Copyright (c) Microsoft Corporation. // Licensed under the MIT license. -export const SDK_VERSION: string = "12.8.1"; -export const SERVICE_VERSION: string = "2021-04-10"; +export const SDK_VERSION: string = "12.9.0"; +export const SERVICE_VERSION: string = "2021-06-08"; /** * The OAuth scope to use with Azure Storage. diff --git a/sdk/storage/storage-queue/swagger/README.md b/sdk/storage/storage-queue/swagger/README.md index 41b26feab119..847721150cf6 100644 --- a/sdk/storage/storage-queue/swagger/README.md +++ b/sdk/storage/storage-queue/swagger/README.md @@ -20,7 +20,7 @@ disable-async-iterators: true add-credentials: false use-extension: "@autorest/typescript": "6.0.0-dev.20210218.1" -package-version: 12.8.1 +package-version: 12.9.0 ``` ## Customizations for Track 2 Generator