Skip to content

Commit 2243321

Browse files
authored
storage-september-release (#4935)
* upgrade package version * add features added title
1 parent 517f1e6 commit 2243321

File tree

21 files changed

+45
-51
lines changed

21 files changed

+45
-51
lines changed

cmake-modules/FolderList.cmake

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@ macro(GetFolderList project)
1818
elseif(${project} STREQUAL STORAGE_COMMON)
1919
DownloadDepVersion(sdk/core azure-core 1.9.0)
2020
elseif(${project} STREQUAL STORAGE_BLOBS)
21-
DownloadDepVersion(sdk/core azure-core 1.8.0)
22-
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.3.1)
21+
DownloadDepVersion(sdk/core azure-core 1.9.0)
22+
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.4.0)
2323
elseif(${project} STREQUAL STORAGE_FILES_DATALAKE)
24-
DownloadDepVersion(sdk/core azure-core 1.8.0)
25-
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.3.1)
26-
DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs 12.7.0)
24+
DownloadDepVersion(sdk/core azure-core 1.9.0)
25+
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.4.0)
26+
DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs 12.9.0)
2727
elseif(${project} STREQUAL STORAGE_FILES_SHARES)
2828
DownloadDepVersion(sdk/core azure-core 1.9.0)
29-
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.3.2)
29+
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.4.0)
3030
elseif(${project} STREQUAL STORAGE_QUEUES)
31-
DownloadDepVersion(sdk/core azure-core 1.5.0)
32-
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.2.3)
31+
DownloadDepVersion(sdk/core azure-core 1.9.0)
32+
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.4.0)
3333
elseif(${project} STREQUAL EVENTHUBS)
3434
DownloadDepVersion(sdk/core azure-core 1.10.1)
3535
DownloadDepVersion(sdk/core azure-core-amqp 1.0.0-beta.1)

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

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

3-
## 12.9.0-beta.3 (Unreleased)
3+
## 12.9.0 (2023-09-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` and `12.9.0-beta.2` are now generally available.
128

139
## 12.9.0-beta.2 (2023-08-12)
1410

@@ -30,6 +26,8 @@
3026

3127
## 12.8.0 (2023-07-11)
3228

29+
### Features Added
30+
3331
- Features in `12.8.0-beta.1` are now generally available.
3432

3533
## 12.8.0-beta.1 (2023-05-31)

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 9
1313
#define AZURE_STORAGE_BLOBS_VERSION_PATCH 0
14-
#define AZURE_STORAGE_BLOBS_VERSION_PRERELEASE "beta.3"
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.9.0-beta.1",
3+
"version-semver": "12.9.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
@@ -14,7 +14,7 @@
1414
{
1515
"name": "azure-storage-common-cpp",
1616
"default-features": false,
17-
"version>=": "12.4.0-beta.1"
17+
"version>=": "12.4.0"
1818
},
1919
{
2020
"name": "vcpkg-cmake",

sdk/storage/azure-storage-common/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.4.0-beta.2 (Unreleased)
3+
## 12.4.0 (2023-09-12)
44

55
### Features Added
66

7-
### Breaking Changes
8-
9-
### Bugs Fixed
10-
11-
### Other Changes
7+
- Bumped up Account SAS version to `2023-08-03`.
128

139
## 12.4.0-beta.1 (2023-08-12)
1410

sdk/storage/azure-storage-common/src/account_sas_builder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace Azure { namespace Storage { namespace Sas {
1111
namespace {
12-
constexpr static const char* SasVersion = "2023-01-03";
12+
constexpr static const char* SasVersion = "2023-08-03";
1313
}
1414

1515
void AccountSasBuilder::SetPermissions(AccountSasPermissions permissions)

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 4
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.4.0-beta.1",
3+
"version-semver": "12.4.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-files-datalake/CHANGELOG.md

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

3-
## 12.8.0-beta.3 (Unreleased)
3+
## 12.8.0 (2023-09-12)
44

55
### Features Added
66

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

139
## 12.8.0-beta.2 (2023-08-12)
1410

@@ -31,6 +27,8 @@
3127

3228
## 12.7.0 (2023-07-11)
3329

30+
### Features Added
31+
3432
- New features in `12.7.0-beta.1` are now generally available.
3533

3634
## 12.7.0-beta.1 (2023-05-31)
@@ -41,6 +39,8 @@
4139

4240
## 12.6.0 (2023-05-09)
4341

42+
### Features Added
43+
4444
- New features in `12.6.0-beta.1` are now generally available.
4545

4646
## 12.6.0-beta.1 (2023-04-11)
@@ -51,6 +51,8 @@
5151

5252
## 12.5.0 (2023-01-10)
5353

54+
### Features Added
55+
5456
- New features in `12.5.0-beta.1` are now generally available.
5557

5658

@@ -63,6 +65,8 @@
6365

6466
## 12.4.0 (2022-11-08)
6567

68+
### Features Added
69+
6670
- New features in `12.4.0-beta.1` are now generally available.
6771

6872
## 12.4.0-beta.1 (2022-10-11)

0 commit comments

Comments
 (0)