Skip to content

Commit

Permalink
Storage May GA Release (#5578)
Browse files Browse the repository at this point in the history
  • Loading branch information
microzchang committed May 8, 2024
1 parent cd3655c commit d1019cf
Show file tree
Hide file tree
Showing 17 changed files with 29 additions and 42 deletions.
16 changes: 8 additions & 8 deletions cmake-modules/FolderList.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ macro(GetFolderList project)
DownloadDepVersion(sdk/core azure-core 1.5.0)
DownloadDepVersion(sdk/identity azure-identity 1.1.0)
elseif(${project} STREQUAL STORAGE_COMMON)
DownloadDepVersion(sdk/core azure-core 1.10.3)
DownloadDepVersion(sdk/core azure-core 1.11.3)
elseif(${project} STREQUAL STORAGE_BLOBS)
DownloadDepVersion(sdk/core azure-core 1.10.3)
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.5.0)
DownloadDepVersion(sdk/core azure-core 1.11.3)
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.6.0)
elseif(${project} STREQUAL STORAGE_FILES_DATALAKE)
DownloadDepVersion(sdk/core azure-core 1.10.3)
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.5.0)
DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs 12.10.0)
DownloadDepVersion(sdk/core azure-core 1.11.3)
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.6.0)
DownloadDepVersion(sdk/storage/azure-storage-blobs azure-storage-blobs 12.11.0)
elseif(${project} STREQUAL STORAGE_FILES_SHARES)
DownloadDepVersion(sdk/core azure-core 1.10.3)
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.5.0)
DownloadDepVersion(sdk/core azure-core 1.11.3)
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.6.0)
elseif(${project} STREQUAL STORAGE_QUEUES)
DownloadDepVersion(sdk/core azure-core 1.10.3)
DownloadDepVersion(sdk/storage/azure-storage-common azure-storage-common 12.5.0)
Expand Down
8 changes: 2 additions & 6 deletions sdk/storage/azure-storage-blobs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
# Release History

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

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes
- Features in `12.11.0-beta.1` are now generally available.

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#define AZURE_STORAGE_BLOBS_VERSION_MAJOR 12
#define AZURE_STORAGE_BLOBS_VERSION_MINOR 11
#define AZURE_STORAGE_BLOBS_VERSION_PATCH 0
#define AZURE_STORAGE_BLOBS_VERSION_PRERELEASE "beta.2"
#define AZURE_STORAGE_BLOBS_VERSION_PRERELEASE ""

#define AZURE_STORAGE_BLOBS_VERSION_ITOA_HELPER(i) #i
#define AZURE_STORAGE_BLOBS_VERSION_ITOA(i) AZURE_STORAGE_BLOBS_VERSION_ITOA_HELPER(i)
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-blobs/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "azure-storage-blobs-cpp",
"version-semver": "12.11.0-beta.1",
"version-semver": "12.11.0",
"description": [
"Microsoft Azure Storage Blobs SDK for C++",
"This library provides Azure Storage Blobs SDK."
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-blobs/vcpkg/vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{
"name": "azure-storage-common-cpp",
"default-features": false,
"version>=": "12.5.0"
"version>=": "12.6.0"
},
{
"name": "vcpkg-cmake",
Expand Down
9 changes: 3 additions & 6 deletions sdk/storage/azure-storage-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
# Release History

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

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes
- Features in `12.6.0-beta.1` are now generally available.
- Bumped up Account SAS version to `2024-05-04`.

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#define AZURE_STORAGE_COMMON_VERSION_MAJOR 12
#define AZURE_STORAGE_COMMON_VERSION_MINOR 6
#define AZURE_STORAGE_COMMON_VERSION_PATCH 0
#define AZURE_STORAGE_COMMON_VERSION_PRERELEASE "beta.2"
#define AZURE_STORAGE_COMMON_VERSION_PRERELEASE ""

#define AZURE_STORAGE_COMMON_VERSION_ITOA_HELPER(i) #i
#define AZURE_STORAGE_COMMON_VERSION_ITOA(i) AZURE_STORAGE_COMMON_VERSION_ITOA_HELPER(i)
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-common/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "azure-storage-common-cpp",
"version-semver": "12.6.0-beta.1",
"version-semver": "12.6.0",
"description": [
"Microsoft Azure Common Storage SDK for C++",
"This library provides common Azure Storage-related abstractions for Azure SDK."
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-common/vcpkg/vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{
"name": "azure-core-cpp",
"default-features": false,
"version>=": "1.10.3"
"version>=": "1.11.3"
},
{
"name": "libxml2",
Expand Down
6 changes: 2 additions & 4 deletions sdk/storage/azure-storage-files-datalake/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
# Release History

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

### Features Added

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

### Bugs Fixed

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

### Other Changes

## 12.10.0-beta.1 (2024-04-17)

### Features Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_MAJOR 12
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_MINOR 10
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_PATCH 0
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_PRERELEASE "beta.2"
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_PRERELEASE ""

#define AZURE_STORAGE_FILES_DATALAKE_VERSION_ITOA_HELPER(i) #i
#define AZURE_STORAGE_FILES_DATALAKE_VERSION_ITOA(i) \
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-files-datalake/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "azure-storage-files-datalake-cpp",
"version-semver": "12.10.0-beta.1",
"version-semver": "12.10.0",
"description": [
"Microsoft Azure Storage Files Data Lake SDK for C++",
"This library provides Azure Storage Files Data Lake SDK."
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-files-datalake/vcpkg/vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{
"name": "azure-storage-blobs-cpp",
"default-features": false,
"version>=": "12.10.0"
"version>=": "12.11.0"
},
{
"name": "vcpkg-cmake",
Expand Down
8 changes: 2 additions & 6 deletions sdk/storage/azure-storage-files-shares/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
# Release History

## 12.9.0-beta.2 (Unreleased)
## 12.9.0 (2024-05-07)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes
- Features in `12.9.0-beta.1` are now generally available.

## 12.9.0-beta.1 (2024-04-17)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#define AZURE_STORAGE_FILES_SHARES_VERSION_MAJOR 12
#define AZURE_STORAGE_FILES_SHARES_VERSION_MINOR 9
#define AZURE_STORAGE_FILES_SHARES_VERSION_PATCH 0
#define AZURE_STORAGE_FILES_SHARES_VERSION_PRERELEASE "beta.2"
#define AZURE_STORAGE_FILES_SHARES_VERSION_PRERELEASE ""

#define AZURE_STORAGE_FILES_SHARES_VERSION_ITOA_HELPER(i) #i
#define AZURE_STORAGE_FILES_SHARES_VERSION_ITOA(i) AZURE_STORAGE_FILES_SHARES_VERSION_ITOA_HELPER(i)
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-files-shares/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "azure-storage-files-shares-cpp",
"version-semver": "12.9.0-beta.1",
"version-semver": "12.9.0",
"description": [
"Microsoft Azure Storage Files Shares SDK for C++",
"This library provides Azure Storage Files Shares SDK."
Expand Down
2 changes: 1 addition & 1 deletion sdk/storage/azure-storage-files-shares/vcpkg/vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{
"name": "azure-storage-common-cpp",
"default-features": false,
"version>=": "12.5.0"
"version>=": "12.6.0"
},
{
"name": "vcpkg-cmake",
Expand Down

0 comments on commit d1019cf

Please sign in to comment.