Attestation February Release (#4326)
* Attestation February Release * Changelog (repeat Beta changes) * Update azure core minimum version dependency --------- Co-authored-by: Anton Kolesnyk <antkmsft@users.noreply.github.com>
This commit is contained in:
parent
8286a1c0ae
commit
08a267275d
@ -1,14 +1,13 @@
|
||||
# Release History
|
||||
|
||||
## 1.1.0-beta.2 (Unreleased)
|
||||
|
||||
### Features Added
|
||||
## 1.1.0 (2023-02-07)
|
||||
|
||||
### Breaking Changes
|
||||
|
||||
### Bugs Fixed
|
||||
|
||||
### Other Changes
|
||||
- Changed `AttestationClient::AttestTpm` to match `AttestOpenEnclave` and `AttestSgxEnclave`:
|
||||
- Added `std::vector<uint8_t>` dataToAttest parameter to the `AttestTpm()` client method.
|
||||
- Removed `Payload` in `TpmAttestationOptions`.
|
||||
- Changed `TpmResult` in `TpmAttestationResult` to type `std::vector<uint8_t>`.
|
||||
|
||||
## 1.1.0-beta.1 (2022-10-11)
|
||||
|
||||
|
||||
@ -22,9 +22,9 @@ set(CMAKE_CXX_STANDARD_REQUIRED True)
|
||||
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
|
||||
|
||||
if(NOT AZ_ALL_LIBRARIES)
|
||||
find_package(azure-core-cpp "1.5.0" CONFIG QUIET)
|
||||
find_package(azure-core-cpp CONFIG QUIET)
|
||||
if(NOT azure-core-cpp_FOUND)
|
||||
find_package(azure-core-cpp "1.5.0" REQUIRED)
|
||||
find_package(azure-core-cpp REQUIRED)
|
||||
endif()
|
||||
endif()
|
||||
find_package(OpenSSL REQUIRED)
|
||||
|
||||
@ -11,7 +11,7 @@
|
||||
#define AZURE_ATTESTATION_VERSION_MAJOR 1
|
||||
#define AZURE_ATTESTATION_VERSION_MINOR 1
|
||||
#define AZURE_ATTESTATION_VERSION_PATCH 0
|
||||
#define AZURE_ATTESTATION_VERSION_PRERELEASE "beta.2"
|
||||
#define AZURE_ATTESTATION_VERSION_PRERELEASE ""
|
||||
|
||||
#define AZURE_ATTESTATION_VERSION_ITOA_HELPER(i) #i
|
||||
#define AZURE_ATTESTATION_VERSION_ITOA(i) AZURE_ATTESTATION_VERSION_ITOA_HELPER(i)
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
@PACKAGE_INIT@
|
||||
|
||||
include(CMakeFindDependencyMacro)
|
||||
find_dependency(azure-core-cpp "1.7.0")
|
||||
find_dependency(azure-core-cpp "1.8.0")
|
||||
find_dependency(OpenSSL)
|
||||
|
||||
include("${CMAKE_CURRENT_LIST_DIR}/azure-security-attestation-cppTargets.cmake")
|
||||
|
||||
@ -14,7 +14,7 @@
|
||||
{
|
||||
"name": "azure-core-cpp",
|
||||
"default-features": false,
|
||||
"version>=": "1.7.0"
|
||||
"version>=": "1.8.0"
|
||||
},
|
||||
"openssl",
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user