Skip to content

Commit 342f222

Browse files
authored
[Storage] Prepare for STG86 GA (#24958)
### Packages impacted by this PR ### Issues associated with this PR ### Describe the problem that is addressed by this PR ### What are the possible designs available to address the problem? If there are more than one possible design, why was the one in this PR chosen? ### Are there test cases added in this PR? _(If not, why?)_ ### Provide a list of related PRs _(if any)_ ### Command used to generate this PR:**_(Applicable only to SDK release request PRs)_ ### Checklists - [ ] Added impacted package name to the issue description - [ ] Does this PR needs any fixes in the SDK Generator?** _(If so, create an Issue in the [Autorest/typescript](https://github.com/Azure/autorest.typescript) repository and link it here)_ - [ ] Added a changelog (if necessary)
1 parent a5d5554 commit 342f222

File tree

20 files changed

+30
-26
lines changed

20 files changed

+30
-26
lines changed

sdk/storage/storage-blob/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
# Release History
22

3-
## 12.13.0 (Unreleased)
3+
## 12.13.0 (2023-02-23)
44

55
### Features Added
66

7+
- Includes all features released in 12.13.0-beta.1.
78
- Added BlobDownloadHeaders.createdOn property for interface BlobClient.Download().
9+
810
### Bugs Fixed
911

1012
- Fixed an issue of getting 403 error for file or directory name with './' or '../'

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.13.0-beta.1",
4+
"version": "12.13.0",
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/generated/src/storageClientContext.ts

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.
22
// Licensed under the MIT license.
33

4-
export const SDK_VERSION: string = "12.13.0-beta.1";
4+
export const SDK_VERSION: string = "12.13.0";
55
export const SERVICE_VERSION: string = "2021-12-02";
66

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

sdk/storage/storage-blob/swagger/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ disable-async-iterators: true
2020
add-credentials: false
2121
use-extension:
2222
"@autorest/typescript": "6.0.0-dev.20210218.1"
23-
package-version: 12.13.0-beta.1
23+
package-version: 12.13.0
2424
```
2525
2626
## Customizations for Track 2 Generator

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Release History
22

3-
## 12.12.0 (Unreleased)
3+
## 12.12.0 (2023-02-23)
44

55
### Features Added
66

7+
- Includes all features released in 12.12.0-beta.1.
78
- Added FileReadHeaders.CreatedOn property for interface DataLakeFileClient.read().
89

910
### Bugs Fixed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@azure/storage-file-datalake",
3-
"version": "12.12.0-beta.1",
3+
"version": "12.12.0",
44
"description": "Microsoft Azure Storage SDK for JavaScript - DataLake",
55
"sdk-type": "client",
66
"main": "./dist/index.js",
@@ -122,7 +122,7 @@
122122
"@azure/core-paging": "^1.1.1",
123123
"@azure/core-tracing": "1.0.0-preview.13",
124124
"@azure/logger": "^1.0.0",
125-
"@azure/storage-blob": "^12.13.0-beta.1",
125+
"@azure/storage-blob": "^12.13.0",
126126
"events": "^3.0.0",
127127
"tslib": "^2.2.0"
128128
},

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

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.
22
// Licensed under the MIT license.
33

4-
export const SDK_VERSION: string = "12.12.0-beta.1";
4+
export const SDK_VERSION: string = "12.12.0";
55
export const SERVICE_VERSION: string = "2021-12-02";
66

77
export const KB: number = 1024;

sdk/storage/storage-file-datalake/swagger/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ disable-async-iterators: true
2020
add-credentials: false
2121
use-extension:
2222
"@autorest/typescript": "6.0.0-dev.20210223.1"
23-
package-version: 12.12.0-beta.1
23+
package-version: 12.12.0
2424
```
2525
2626
## Customizations for Track 2 Generator

0 commit comments

Comments
 (0)