From 438e8a883e4204267add9fd4d0dded15ac1f5fdb Mon Sep 17 00:00:00 2001 From: Jinming Hu Date: Tue, 3 Mar 2020 11:08:39 +0800 Subject: [PATCH] Release 7.3.0 --- Changelog.txt | 5 +++++ Doxyfile | 2 +- Microsoft.WindowsAzure.Storage/CMakeLists.txt | 2 +- .../includes/wascore/constants.dat | 10 +++++----- Microsoft.WindowsAzure.Storage/version.rc | Bin 5336 -> 5336 bytes README.md | 13 +++++++------ azure-pipelines.yml | 6 +++++- 7 files changed, 24 insertions(+), 14 deletions(-) diff --git a/Changelog.txt b/Changelog.txt index 33edf230..ae063be0 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -1,6 +1,11 @@ Azure Storage Client Library for C++ History of Changes +Changes in v7.3.0 +- New feature: Customer provided key (CPK-V) +- New feature: File lease +- Upgraded CPPRest to latest version 2.10.15. + Changes in v7.2.0 - New feature: Previous snapshot with URL. - Service version upgraded to 2019-07-07. diff --git a/Doxyfile b/Doxyfile index 79bb85ae..45119394 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "Microsoft Azure Storage Client Library for C++" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 7.2.0 +PROJECT_NUMBER = 7.3.0 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/Microsoft.WindowsAzure.Storage/CMakeLists.txt b/Microsoft.WindowsAzure.Storage/CMakeLists.txt index 86b85f26..234d6b68 100644 --- a/Microsoft.WindowsAzure.Storage/CMakeLists.txt +++ b/Microsoft.WindowsAzure.Storage/CMakeLists.txt @@ -150,7 +150,7 @@ set(AZURESTORAGE_LIBRARIES ${AZURESTORAGE_LIBRARY} ${CASABLANCA_LIBRARY} ${Boost # Set version numbers centralized set (AZURESTORAGE_VERSION_MAJOR 7) -set (AZURESTORAGE_VERSION_MINOR 2) +set (AZURESTORAGE_VERSION_MINOR 3) set (AZURESTORAGE_VERSION_REVISION 0) # Set output directories. diff --git a/Microsoft.WindowsAzure.Storage/includes/wascore/constants.dat b/Microsoft.WindowsAzure.Storage/includes/wascore/constants.dat index 9bff6c4d..11ca5122 100644 --- a/Microsoft.WindowsAzure.Storage/includes/wascore/constants.dat +++ b/Microsoft.WindowsAzure.Storage/includes/wascore/constants.dat @@ -403,21 +403,21 @@ DAT(xml_user_delegation_key_expiry, _XPLATSTR("Expiry")) DAT(json_file_permission, _XPLATSTR("permission")) #define STR(x) #x -#define VER(x) _XPLATSTR("Azure-Storage/7.2.0 (Native; Windows; MSC_VER " STR(x) ")") +#define VER(x) _XPLATSTR("Azure-Storage/7.3.0 (Native; Windows; MSC_VER " STR(x) ")") #if defined(_WIN32) #if defined(_MSC_VER) #if _MSC_VER >= 1900 DAT(header_value_user_agent, VER(_MSC_VER)) #elif _MSC_VER >= 1800 - DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.2.0 (Native; Windows; MSC_VER 18XX)")) + DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.3.0 (Native; Windows; MSC_VER 18XX)")) #else - DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.2.0 (Native; Windows; MSC_VER < 1800)")) + DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.3.0 (Native; Windows; MSC_VER < 1800)")) #endif #else - DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.2.0 (Native; Windows)")) + DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.3.0 (Native; Windows)")) #endif #else - DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.2.0 (Native)")) + DAT(header_value_user_agent, _XPLATSTR("Azure-Storage/7.3.0 (Native)")) #endif #endif // _CONSTANTS diff --git a/Microsoft.WindowsAzure.Storage/version.rc b/Microsoft.WindowsAzure.Storage/version.rc index 52b0ecd61dcc2905cd15560376370d1499bbddda..1883c57f73540d4708b92772ea678639d44d34a8 100644 GIT binary patch delta 32 lcmcbic|&sp3k#<)gARiM2v0uGtUuX?MS#(GvoA}x004|02l)U1 delta 32 lcmcbic|&sp3k# .\vcpkg install cpprestsdk - C:\src\vcpkg> .\vcpkg export --nuget cpprestsdk --nuget-id=Casablanca --nuget-version=2.10.14 + C:\src\vcpkg> .\vcpkg export --nuget cpprestsdk --nuget-id=Casablanca --nuget-version=2.10.15 ``` - Manage dependencies by yourself @@ -128,6 +128,7 @@ The validated Casablanca version for each major or recent release on different p | 7.0.0 | 2.10.14 | 2.10.14 | | 7.1.0 | 2.10.14 | 2.10.14 | | 7.2.0 | 2.10.14 | 2.10.14 | +| 7.3.0 | 2.10.15 | 2.10.15 | ## Code Samples @@ -222,7 +223,7 @@ git clone https://github.com/Microsoft/cpprestsdk.git - Checkout the version on which Azure Storage Client Library for C++ depends: ```bash -git checkout tags/v2.10.14 -b v2.10.14 +git checkout tags/v2.10.15 -b v2.10.15 ``` - Build the project in Release mode @@ -257,7 +258,7 @@ The library is generated under `azure-storage-cpp/Microsoft.WindowsAzure.Storage The Azure Storage Client Library for C++ project depends on Unitest++ for unit test: To build and install Unitest++: -- Clone the project using git: +- Clone the project using git: ```bash git clone https://github.com/unittest-cpp/unittest-cpp.git ``` @@ -330,7 +331,7 @@ git clone https://github.com/Microsoft/cpprestsdk.git - Checkout the version on which Azure Storage Client Library for C++ depends: ```bash cd cpprestsdk -git checkout tags/v2.10.14 -b v2.10.14 +git checkout tags/v2.10.15 -b v2.10.15 ``` - Build the project in Release mode @@ -364,7 +365,7 @@ The library is generated under `azure-storage-cpp/Microsoft.WindowsAzure.Storage The Azure Storage Client Library for C++ project depends on Unitest++ for unit test: To build and install Unitest++: -- Clone the project using git: +- Clone the project using git: ```bash git clone https://github.com/unittest-cpp/unittest-cpp.git ``` diff --git a/azure-pipelines.yml b/azure-pipelines.yml index bb2618be..ca617c93 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -6,7 +6,7 @@ pr: - dev variables: - cpp_rest_sdk_version: 2.10.14 + cpp_rest_sdk_version: 2.10.15 jobs: - job: build_test_linux @@ -32,6 +32,10 @@ jobs: container_image: ubuntu18.04.i686:cpprestsdk_$(cpp_rest_sdk_version) build_type: Release build_env_init: export CXXFLAGS=-m32 + CENTOS7_DEBUG: + container_image: centos7:cpprestsdk_$(cpp_rest_sdk_version) + build_type: Debug + build_env_init: source scl_source enable devtoolset-4 pool: vmImage: 'ubuntu-16.04'