Azure Identity October GA Release (#6057)

* Azure Identity October GA Release

* Update CL entry to include resource ID feature.
This commit is contained in:
Ahson Khan 2024-10-08 11:00:03 -07:00 committed by GitHub
parent 8f8d24280f
commit 29bbab9747
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 2 deletions

View File

@ -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.

View File

@ -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)