Skip to content

Commit d2bdf92

Browse files
authored
Storage November Release (#6196)
1 parent 0e29b28 commit d2bdf92

File tree

9 files changed

+14
-21
lines changed

9 files changed

+14
-21
lines changed

cmake-modules/FolderList.cmake

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ 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.13.0)
19+
DownloadDepVersion(sdk/core azure-core 1.14.1)
2020
elseif(${project} STREQUAL STORAGE_BLOBS)
2121
DownloadDepVersion(sdk/core azure-core 1.13.0)
2222
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.8.0)
@@ -25,8 +25,8 @@ macro(GetFolderList project)
2525
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.8.0)
2626
DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs 12.13.0)
2727
elseif(${project} STREQUAL STORAGE_FILES_SHARES)
28-
DownloadDepVersion(sdk/core azure-core 1.13.0)
29-
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.8.0)
28+
DownloadDepVersion(sdk/core azure-core 1.14.1)
29+
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.9.0)
3030
elseif(${project} STREQUAL STORAGE_QUEUES)
3131
DownloadDepVersion(sdk/core azure-core 1.13.0)
3232
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.8.0)

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

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

3-
## 12.9.0-beta.2 (Unreleased)
3+
## 12.9.0 (2024-11-12)
44

55
### Features Added
66

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

139
## 12.9.0-beta.1 (2024-10-15)
1410

1511
### Features Added
12+
1613
- Bumped up Account SAS version to `2025-01-05`.
1714

1815
## 12.8.0 (2024-09-17)

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 9
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.9.0-beta.1",
3+
"version-semver": "12.9.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.13.0"
21+
"version>=": "1.14.1"
2222
},
2323
{
2424
"name": "libxml2",

sdk/storage/azure-storage-files-shares/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.12.0-beta.2 (Unreleased)
3+
## 12.12.0 (2024-11-12)
44

55
### Features Added
66

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

139
## 12.12.0-beta.1 (2024-10-15)
1410

sdk/storage/azure-storage-files-shares/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_FILES_SHARES_VERSION_MAJOR 12
1212
#define AZURE_STORAGE_FILES_SHARES_VERSION_MINOR 12
1313
#define AZURE_STORAGE_FILES_SHARES_VERSION_PATCH 0
14-
#define AZURE_STORAGE_FILES_SHARES_VERSION_PRERELEASE "beta.2"
14+
#define AZURE_STORAGE_FILES_SHARES_VERSION_PRERELEASE ""
1515

1616
#define AZURE_STORAGE_FILES_SHARES_VERSION_ITOA_HELPER(i) #i
1717
#define AZURE_STORAGE_FILES_SHARES_VERSION_ITOA(i) AZURE_STORAGE_FILES_SHARES_VERSION_ITOA_HELPER(i)

sdk/storage/azure-storage-files-shares/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-files-shares-cpp",
3-
"version-semver": "12.12.0-beta.1",
3+
"version-semver": "12.12.0",
44
"description": [
55
"Microsoft Azure Storage Files Shares SDK for C++",
66
"This library provides Azure Storage Files Shares SDK."

sdk/storage/azure-storage-files-shares/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.8.0"
21+
"version>=": "12.9.0"
2222
},
2323
{
2424
"name": "vcpkg-cmake",

0 commit comments

Comments
 (0)