Skip to content

Commit d1019cf

Browse files
authored
Storage May GA Release (#5578)
1 parent cd3655c commit d1019cf

File tree

17 files changed

+29
-42
lines changed

17 files changed

+29
-42
lines changed

cmake-modules/FolderList.cmake

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ macro(GetFolderList project)
1616
DownloadDepVersion(sdk/core azure-core 1.5.0)
1717
DownloadDepVersion(sdk/identity azure-identity 1.1.0)
1818
elseif(${project} STREQUAL STORAGE_COMMON)
19-
DownloadDepVersion(sdk/core azure-core 1.10.3)
19+
DownloadDepVersion(sdk/core azure-core 1.11.3)
2020
elseif(${project} STREQUAL STORAGE_BLOBS)
21-
DownloadDepVersion(sdk/core azure-core 1.10.3)
22-
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.5.0)
21+
DownloadDepVersion(sdk/core azure-core 1.11.3)
22+
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.6.0)
2323
elseif(${project} STREQUAL STORAGE_FILES_DATALAKE)
24-
DownloadDepVersion(sdk/core azure-core 1.10.3)
25-
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.5.0)
26-
DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs 12.10.0)
24+
DownloadDepVersion(sdk/core azure-core 1.11.3)
25+
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.6.0)
26+
DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs 12.11.0)
2727
elseif(${project} STREQUAL STORAGE_FILES_SHARES)
28-
DownloadDepVersion(sdk/core azure-core 1.10.3)
29-
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.5.0)
28+
DownloadDepVersion(sdk/core azure-core 1.11.3)
29+
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.6.0)
3030
elseif(${project} STREQUAL STORAGE_QUEUES)
3131
DownloadDepVersion(sdk/core azure-core 1.10.3)
3232
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.5.0)

sdk/storage/azure-storage-blobs/CHANGELOG.md

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

3-
## 12.11.0-beta.2 (Unreleased)
3+
## 12.11.0 (2024-05-07)
44

55
### Features Added
66

7-
### Breaking Changes
8-
9-
### Bugs Fixed
10-
11-
### Other Changes
7+
- Features in `12.11.0-beta.1` are now generally available.
128

139
## 12.11.0-beta.1 (2024-04-17)
1410

sdk/storage/azure-storage-blobs/src/private/package_version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#define AZURE_STORAGE_BLOBS_VERSION_MAJOR 12
1212
#define AZURE_STORAGE_BLOBS_VERSION_MINOR 11
1313
#define AZURE_STORAGE_BLOBS_VERSION_PATCH 0
14-
#define AZURE_STORAGE_BLOBS_VERSION_PRERELEASE "beta.2"
14+
#define AZURE_STORAGE_BLOBS_VERSION_PRERELEASE ""
1515

1616
#define AZURE_STORAGE_BLOBS_VERSION_ITOA_HELPER(i) #i
1717
#define AZURE_STORAGE_BLOBS_VERSION_ITOA(i) AZURE_STORAGE_BLOBS_VERSION_ITOA_HELPER(i)

sdk/storage/azure-storage-blobs/vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "azure-storage-blobs-cpp",
3-
"version-semver": "12.11.0-beta.1",
3+
"version-semver": "12.11.0",
44
"description": [
55
"Microsoft Azure Storage Blobs SDK for C++",
66
"This library provides Azure Storage Blobs SDK."

sdk/storage/azure-storage-blobs/vcpkg/vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
{
1919
"name": "azure-storage-common-cpp",
2020
"default-features": false,
21-
"version>=": "12.5.0"
21+
"version>=": "12.6.0"
2222
},
2323
{
2424
"name": "vcpkg-cmake",

sdk/storage/azure-storage-common/CHANGELOG.md

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

3-
## 12.6.0-beta.2 (Unreleased)
3+
## 12.6.0 (2024-05-07)
44

55
### Features Added
66

7-
### Breaking Changes
8-
9-
### Bugs Fixed
10-
11-
### Other Changes
7+
- Features in `12.6.0-beta.1` are now generally available.
8+
- Bumped up Account SAS version to `2024-05-04`.
129

1310
## 12.6.0-beta.1 (2024-04-17)
1411

sdk/storage/azure-storage-common/src/private/package_version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#define AZURE_STORAGE_COMMON_VERSION_MAJOR 12
1414
#define AZURE_STORAGE_COMMON_VERSION_MINOR 6
1515
#define AZURE_STORAGE_COMMON_VERSION_PATCH 0
16-
#define AZURE_STORAGE_COMMON_VERSION_PRERELEASE "beta.2"
16+
#define AZURE_STORAGE_COMMON_VERSION_PRERELEASE ""
1717

1818
#define AZURE_STORAGE_COMMON_VERSION_ITOA_HELPER(i) #i
1919
#define AZURE_STORAGE_COMMON_VERSION_ITOA(i) AZURE_STORAGE_COMMON_VERSION_ITOA_HELPER(i)

sdk/storage/azure-storage-common/vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "azure-storage-common-cpp",
3-
"version-semver": "12.6.0-beta.1",
3+
"version-semver": "12.6.0",
44
"description": [
55
"Microsoft Azure Common Storage SDK for C++",
66
"This library provides common Azure Storage-related abstractions for Azure SDK."

sdk/storage/azure-storage-common/vcpkg/vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
{
1919
"name": "azure-core-cpp",
2020
"default-features": false,
21-
"version>=": "1.10.3"
21+
"version>=": "1.11.3"
2222
},
2323
{
2424
"name": "libxml2",

sdk/storage/azure-storage-files-datalake/CHANGELOG.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
# Release History
22

3-
## 12.10.0-beta.2 (Unreleased)
3+
## 12.10.0 (2024-05-07)
44

55
### Features Added
66

7-
### Breaking Changes
7+
- Features in `12.10.0-beta.1` are now generally available.
88

99
### Bugs Fixed
1010

1111
- Fixed a bug where `PathItem::EncryptionContext` returned by `DataLakeDirectoryClient::ListPaths` was always null.
1212

13-
### Other Changes
14-
1513
## 12.10.0-beta.1 (2024-04-17)
1614

1715
### Features Added

0 commit comments

Comments
 (0)