Skip to content

Commit 0898a0d

Browse files
committed
Merge main to live 2025-07-21
1 parent b375648 commit 0898a0d

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

docs-ref-services/latest/identity-readme.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: Azure Identity client library for Java
33
keywords: Azure, java, SDK, API, azure-identity, entra-id
4-
ms.date: 06/10/2025
4+
ms.date: 07/21/2025
55
ms.topic: reference
66
ms.devlang: java
77
ms.service: entra-id
88
---
9-
# Azure Identity client library for Java - version 1.16.2
9+
# Azure Identity client library for Java - version 1.16.3
1010

1111

1212
The Azure Identity library provides [Microsoft Entra ID](https://learn.microsoft.com/entra/fundamentals/whatis) ([formerly Azure Active Directory](https://learn.microsoft.com/entra/fundamentals/new-name)) token authentication support across the Azure SDK. It provides a set of [TokenCredential](https://learn.microsoft.com/java/api/com.azure.core.credential.tokencredential?view=azure-java-stable) implementations that can be used to construct Azure SDK clients that support Microsoft Entra token authentication.
@@ -19,7 +19,7 @@ The Azure Identity library provides [Microsoft Entra ID](https://learn.microsoft
1919

2020
#### Include the BOM file
2121

22-
Include the `azure-sdk-bom` in your project to take a dependency on the stable version of the library. In the following snippet, replace the `{bom_version_to_target}` placeholder with the version number. To learn more about the BOM, see the [Azure SDK BOM README](https://github.com/Azure/azure-sdk-for-java/blob/azure-identity_1.16.2/sdk/boms/azure-sdk-bom/README.md).
22+
Include the `azure-sdk-bom` in your project to take a dependency on the stable version of the library. In the following snippet, replace the `{bom_version_to_target}` placeholder with the version number. To learn more about the BOM, see the [Azure SDK BOM README](https://github.com/Azure/azure-sdk-for-java/blob/azure-identity_1.16.3/sdk/boms/azure-sdk-bom/README.md).
2323

2424
```xml
2525
<dependencyManagement>
@@ -183,7 +183,7 @@ The [Managed identity authentication](https://learn.microsoft.com/entra/identity
183183
- [Azure Virtual Machines](https://learn.microsoft.com/entra/identity/managed-identities-azure-resources/how-to-use-vm-token)
184184
- [Azure Virtual Machines Scale Sets](https://learn.microsoft.com/entra/identity/managed-identities-azure-resources/qs-configure-powershell-windows-vmss)
185185

186-
**Note:** Use `azure-identity` version `1.7.0` or later to utilize [token caching](https://github.com/Azure/azure-sdk-for-java/blob/azure-identity_1.16.2/sdk/identity/azure-identity/TOKEN_CACHING.md) support for managed identity authentication.
186+
**Note:** Use `azure-identity` version `1.7.0` or later to utilize [token caching](https://github.com/Azure/azure-sdk-for-java/blob/azure-identity_1.16.3/sdk/identity/azure-identity/TOKEN_CACHING.md) support for managed identity authentication.
187187

188188
### Examples
189189

@@ -365,7 +365,7 @@ Token caching is a feature provided by the Azure Identity library that allows ap
365365
- Improve resilience and performance.
366366
- Reduce the number of requests made to Microsoft Entra ID to obtain access tokens.
367367

368-
The Azure Identity library offers both in-memory and persistent disk caching. For more information, see the [token caching documentation](https://github.com/Azure/azure-sdk-for-java/blob/azure-identity_1.16.2/sdk/identity/azure-identity/TOKEN_CACHING.md).
368+
The Azure Identity library offers both in-memory and persistent disk caching. For more information, see the [token caching documentation](https://github.com/Azure/azure-sdk-for-java/blob/azure-identity_1.16.3/sdk/identity/azure-identity/TOKEN_CACHING.md).
369369

370370
## Brokered authentication
371371

@@ -377,7 +377,7 @@ Credentials raise exceptions when they fail to authenticate or can't execute aut
377377

378378
When credentials can't execute authentication due to one of the underlying resources required by the credential being unavailable on the machine, the `CredentialUnavailableException` is raised. The exception has a `message` attribute that describes why the credential is unavailable for authentication execution. When `ChainedTokenCredential` raises this exception, the message collects error messages from each credential in the chain.
379379

380-
See the [troubleshooting guide](https://github.com/Azure/azure-sdk-for-java/blob/azure-identity_1.16.2/sdk/identity/azure-identity/TROUBLESHOOTING.md) for details on how to diagnose various failure scenarios.
380+
See the [troubleshooting guide](https://github.com/Azure/azure-sdk-for-java/blob/azure-identity_1.16.3/sdk/identity/azure-identity/TROUBLESHOOTING.md) for details on how to diagnose various failure scenarios.
381381

382382
## Next steps
383383

@@ -394,9 +394,9 @@ When you submit a pull request, a CLA-bot will automatically determine whether y
394394
This project has adopted the [Microsoft Open Source Code of Conduct][code_of_conduct]. For more information, see the Code of Conduct FAQ or contact [email protected] with any additional questions or comments.
395395

396396
<!-- LINKS -->
397-
[azure_core_library]: https://github.com/Azure/azure-sdk-for-java/tree/azure-identity_1.16.2/sdk/core
397+
[azure_core_library]: https://github.com/Azure/azure-sdk-for-java/tree/azure-identity_1.16.3/sdk/core
398398
[azure_identity_broker]: https://central.sonatype.com/artifact/com.azure/azure-identity-broker
399-
[azure_identity_broker_readme]: https://github.com/Azure/azure-sdk-for-java/blob/azure-identity_1.16.2/sdk/identity/azure-identity-broker/README.md
399+
[azure_identity_broker_readme]: https://github.com/Azure/azure-sdk-for-java/blob/azure-identity_1.16.3/sdk/identity/azure-identity-broker/README.md
400400
[azure_sub]: https://azure.microsoft.com/free/
401401
[code_of_conduct]: https://opensource.microsoft.com/codeofconduct/
402402
[cred_acc]: https://learn.microsoft.com/java/api/com.azure.identity.authorizationcodecredential?view=azure-java-stable
@@ -442,8 +442,8 @@ This project has adopted the [Microsoft Open Source Code of Conduct][code_of_con
442442
[javadoc]: https://learn.microsoft.com/java/api/com.azure.identity?view=azure-java-stable
443443
[jdk_link]: https://learn.microsoft.com/java/azure/jdk/?view=azure-java-stable
444444
[logging]: https://github.com/Azure/azure-sdk-for-java/wiki/Logging-in-Azure-SDK
445-
[secrets_client_library]: https://github.com/Azure/azure-sdk-for-java/tree/azure-identity_1.16.2/sdk/keyvault/azure-security-keyvault-secrets
446-
[source]: https://github.com/Azure/azure-sdk-for-java/tree/azure-identity_1.16.2/sdk/identity/azure-identity
445+
[secrets_client_library]: https://github.com/Azure/azure-sdk-for-java/tree/azure-identity_1.16.3/sdk/keyvault/azure-security-keyvault-secrets
446+
[source]: https://github.com/Azure/azure-sdk-for-java/tree/azure-identity_1.16.3/sdk/identity/azure-identity
447447
[sp]: https://learn.microsoft.com/entra/identity-platform/app-objects-and-service-principals
448448

449449

metadata/latest/azure-identity.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Name": "azure-identity",
3-
"Version": "1.16.2",
3+
"Version": "1.16.3",
44
"DevVersion": null,
55
"DirectoryPath": "sdk/identity/azure-identity",
66
"ServiceDirectory": "identity",
@@ -10,7 +10,7 @@
1010
"SdkType": "client",
1111
"IsNewSdk": true,
1212
"ArtifactName": "azure-identity",
13-
"ReleaseStatus": "2025-06-09",
13+
"ReleaseStatus": "2025-07-18",
1414
"IncludedForValidation": false,
1515
"AdditionalValidationPackages": [
1616
"com.azure:azure-identity-broker-samples",
@@ -21,10 +21,10 @@
2121
"triggeringPaths": [
2222
"/sdk/identity/ci.yml"
2323
],
24+
"safeName": "azureidentity",
2425
"name": "azure-identity",
25-
"releaseInBatch": "${{ parameters.release_azureidentity }}",
2626
"groupId": "com.azure",
27-
"safeName": "azureidentity"
27+
"releaseInBatch": "${{ parameters.release_azureidentity }}"
2828
},
2929
"CIParameters": {
3030
"CIMatrixConfigs": []

0 commit comments

Comments
 (0)