Skip to content

Commit de3cc64

Browse files
authored
Azure Core and Identity July GA Releases (#6651)
* Azure Core and Identity July GA Releases * Add Identity to the release * Undo change to FolderList.cmake (chicken vs egg problem; we'll have to update after the release) --------- Co-authored-by: Anton Kolesnyk <antkmsft@users.noreply.github.com>
1 parent a332a84 commit de3cc64

File tree

5 files changed

+21
-8
lines changed

5 files changed

+21
-8
lines changed

sdk/core/azure-core/CHANGELOG.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,25 @@
11
# Release History
22

3-
## 1.16.0-beta.2 (Unreleased)
3+
## 1.16.0 (2025-07-10)
44

55
### Features Added
66

7-
### Breaking Changes
7+
- [[#6535]](https://github.com/Azure/azure-sdk-for-cpp/issues/6535) Enable SSL caching for libcurl transport by default, which is backwards compatible behavior with older libcurl versions, so using the default settings won't result in transport error when using libcurl >= 8.12. The option is controlled by `CurlTransportOptions::EnableCurlSslCaching`, and is on by default. (A community contribution, courtesy of _[sushshring](https://github.com/sushshring)_)
88

99
### Bugs Fixed
1010

11-
Fixed WinHTTP FailFast exception raised when a request is cancelled before the request is actually sent on the wire.
11+
- Fixed WinHTTP FailFast exception raised when a request is cancelled before the request is actually sent on the wire.
1212

1313
### Other Changes
1414

15+
- [[#4952]](https://github.com/Azure/azure-sdk-for-cpp/issues/4952) Added internal support to pass connection timeout via context.
16+
17+
### Acknowledgments
18+
19+
Thank you to our developer community members who helped to make Azure Core better with their contributions to this release:
20+
21+
- Sushrut Shringarputale _([GitHub](https://github.com/sushshring))_
22+
1523
## 1.16.0-beta.1 (2025-06-05)
1624

1725
### Features Added

sdk/core/azure-core/src/private/package_version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#define AZURE_CORE_VERSION_MAJOR 1
1414
#define AZURE_CORE_VERSION_MINOR 16
1515
#define AZURE_CORE_VERSION_PATCH 0
16-
#define AZURE_CORE_VERSION_PRERELEASE "beta.2"
16+
#define AZURE_CORE_VERSION_PRERELEASE ""
1717

1818
#define AZURE_CORE_VERSION_ITOA_HELPER(i) #i
1919
#define AZURE_CORE_VERSION_ITOA(i) AZURE_CORE_VERSION_ITOA_HELPER(i)

sdk/identity/azure-identity/CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
11
# Release History
22

3-
## 1.12.0-beta.2 (Unreleased)
3+
## 1.12.0 (2025-07-10)
44

55
### Features Added
66

7-
### Breaking Changes
7+
- Added support for the `AZURE_TOKEN_CREDENTIALS` environment variable to `DefaultAzureCredential`, which allows for choosing between 'deployed service' and 'developer tool' credentials. Valid values are 'dev' for developer tools and 'prod' for deployed service.
88

99
### Bugs Fixed
1010

11+
- [[#4952]](https://github.com/Azure/azure-sdk-for-cpp/issues/4952) Fixed `ManagedIdentityCredential` to fail fast if IMDS authentication is not available.
12+
- [[#4669]](https://github.com/Azure/azure-sdk-for-cpp/issues/4669) Fixed the order of credentials in `DefaultAzureCredential`: `ManagedIdentityCredential` before `AzureCliCredential`.
13+
1114
### Other Changes
1215

16+
- Added support for overriding IMDS authority host in the `ManagedIdentityCredential` via `AZURE_POD_IDENTITY_AUTHORITY_HOST` environment variable.
17+
1318
## 1.12.0-beta.1 (2025-06-05)
1419

1520
### Features Added

sdk/identity/azure-identity/src/private/package_version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#define AZURE_IDENTITY_VERSION_MAJOR 1
1414
#define AZURE_IDENTITY_VERSION_MINOR 12
1515
#define AZURE_IDENTITY_VERSION_PATCH 0
16-
#define AZURE_IDENTITY_VERSION_PRERELEASE "beta.2"
16+
#define AZURE_IDENTITY_VERSION_PRERELEASE ""
1717

1818
#define AZURE_IDENTITY_VERSION_ITOA_HELPER(i) #i
1919
#define AZURE_IDENTITY_VERSION_ITOA(i) AZURE_IDENTITY_VERSION_ITOA_HELPER(i)

sdk/identity/azure-identity/vcpkg/vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
{
1919
"name": "azure-core-cpp",
2020
"default-features": false,
21-
"version>=": "1.14.0"
21+
"version>=": "1.16.0"
2222
},
2323
{
2424
"name": "openssl",

0 commit comments

Comments
 (0)