From 29bbab9747002e97c5b0f86b0f62f84eb94a471c Mon Sep 17 00:00:00 2001 From: Ahson Khan Date: Tue, 8 Oct 2024 11:00:03 -0700 Subject: [PATCH] Azure Identity October GA Release (#6057) * Azure Identity October GA Release * Update CL entry to include resource ID feature. --- sdk/identity/azure-identity/CHANGELOG.md | 8 +++++++- .../azure-identity/src/private/package_version.hpp | 2 +- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/sdk/identity/azure-identity/CHANGELOG.md b/sdk/identity/azure-identity/CHANGELOG.md index bda66b442..8bd6a23f0 100644 --- a/sdk/identity/azure-identity/CHANGELOG.md +++ b/sdk/identity/azure-identity/CHANGELOG.md @@ -1,11 +1,17 @@ # Release History -## 1.10.0-beta.2 (Unreleased) +## 1.10.0 (2024-10-08) ### Features Added +- Added support for providing an object ID or a resource ID to `ManagedIdentityCredential`. +- Added support for passing in the x509 certificate and its corresponding private key directly to `ClientCertificateCredential`, rather than reading from a pem file. +- Added support for sending an x5c parameter in `ClientCertificateCredential`. + ### Breaking Changes +- Previously, if a clientId was specified for Cloud Shell managed identity, which is not supported, the clientId was passed into the request body. Now, an exception will be thrown if a clientId is specified for Cloud Shell managed identity. + ### Bugs Fixed - Fixed the request sent in `AzurePipelinesCredential` so it doesn't result in a redirect response when an invalid system access token is provided. diff --git a/sdk/identity/azure-identity/src/private/package_version.hpp b/sdk/identity/azure-identity/src/private/package_version.hpp index e3c6ae578..ee4379803 100644 --- a/sdk/identity/azure-identity/src/private/package_version.hpp +++ b/sdk/identity/azure-identity/src/private/package_version.hpp @@ -13,7 +13,7 @@ #define AZURE_IDENTITY_VERSION_MAJOR 1 #define AZURE_IDENTITY_VERSION_MINOR 10 #define AZURE_IDENTITY_VERSION_PATCH 0 -#define AZURE_IDENTITY_VERSION_PRERELEASE "beta.2" +#define AZURE_IDENTITY_VERSION_PRERELEASE "" #define AZURE_IDENTITY_VERSION_ITOA_HELPER(i) #i #define AZURE_IDENTITY_VERSION_ITOA(i) AZURE_IDENTITY_VERSION_ITOA_HELPER(i)