Skip to content

Commit 85a1dff

Browse files
authored
Increment version for storage releases (Azure#13581)
* Increment package version after release of azure-storage-blob * Increment package version after release of azure-storage-queue * Increment package version after release of azure-storage-file-share * Increment package version after release of azure-storage-file-datalake
1 parent bfa1f92 commit 85a1dff

File tree

14 files changed

+22
-10
lines changed

14 files changed

+22
-10
lines changed

sdk/storage/storage-blob/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Release History
22

3+
## 12.4.2 (Unreleased)
4+
5+
36
## 12.4.1 (2021-02-03)
47

58
- Fixed a compile failure due to "Can't resolve 'crypto'" in Angular. [Issue #13267](https://github.com/Azure/azure-sdk-for-js/issues/13267).

sdk/storage/storage-blob/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@azure/storage-blob",
33
"sdk-type": "client",
4-
"version": "12.4.1",
4+
"version": "12.4.2",
55
"description": "Microsoft Azure Storage SDK for JavaScript - Blob",
66
"main": "./dist/index.js",
77
"module": "./dist-esm/storage-blob/src/index.js",

sdk/storage/storage-blob/src/utils/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT License.
33

4-
export const SDK_VERSION: string = "12.4.1";
4+
export const SDK_VERSION: string = "12.4.2";
55
export const SERVICE_VERSION: string = "2020-04-08";
66

77
export const BLOCK_BLOB_MAX_UPLOAD_BLOB_BYTES: number = 256 * 1024 * 1024; // 256MB

sdk/storage/storage-file-datalake/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Release History
22

3+
## 12.3.2 (Unreleased)
4+
5+
36
## 12.3.1 (2021-02-03)
47

58
- Fixed a bug where `generateDataLakeSASQueryParameters()` won't correctly set the resource type if `DataLakeSASSignatureValues.permissions` is not specified. Fixed issue [13223](https://github.com/Azure/azure-sdk-for-js/issues/13223).

sdk/storage/storage-file-datalake/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@azure/storage-file-datalake",
3-
"version": "12.3.1",
3+
"version": "12.3.2",
44
"description": "Microsoft Azure Storage SDK for JavaScript - DataLake",
55
"sdk-type": "client",
66
"main": "./dist/index.js",

sdk/storage/storage-file-datalake/src/utils/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT License.
33

4-
export const SDK_VERSION: string = "12.3.1";
4+
export const SDK_VERSION: string = "12.3.2";
55
export const SERVICE_VERSION: string = "2020-04-08";
66

77
export const KB: number = 1024;

sdk/storage/storage-file-share/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Release History
22

3+
## 12.4.2 (Unreleased)
4+
5+
36
## 12.4.1 (2021-02-03)
47

58
- Fixed a bug where `generateFileSASQueryParameters()` won't correctly set the resource type if `FileSASSignatureValues.permissions` is not specified. Fixed issue [13223](https://github.com/Azure/azure-sdk-for-js/issues/13223).

sdk/storage/storage-file-share/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@azure/storage-file-share",
33
"sdk-type": "client",
4-
"version": "12.4.1",
4+
"version": "12.4.2",
55
"description": "Microsoft Azure Storage SDK for JavaScript - File",
66
"main": "./dist/index.js",
77
"module": "./dist-esm/src/index.js",

sdk/storage/storage-file-share/src/generated/src/storageClientContext.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import * as coreHttp from "@azure/core-http";
1212

1313
const packageName = "azure-storage-file-share";
14-
const packageVersion = "12.4.1";
14+
const packageVersion = "12.4.2";
1515

1616
export class StorageClientContext extends coreHttp.ServiceClient {
1717
version: string;

sdk/storage/storage-file-share/src/utils/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT License.
33

4-
export const SDK_VERSION: string = "12.4.1";
4+
export const SDK_VERSION: string = "12.4.2";
55
export const SERVICE_VERSION: string = "2020-04-08";
66

77
export const FILE_MAX_SIZE_BYTES: number = 4 * 1024 * 1024 * 1024 * 1024; // 4TB

0 commit comments

Comments
 (0)