Skip to content

Commit 69bb348

Browse files
committed
Update docs metadata
1 parent a276a68 commit 69bb348

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

api/overview/azure/latest/identity-readme.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: Azure Identity client library for .NET
33
keywords: Azure, dotnet, SDK, API, Azure.Identity, entra-id
4-
ms.date: 07/11/2025
4+
ms.date: 08/11/2025
55
ms.topic: reference
66
ms.devlang: dotnet
77
ms.service: entra-id
88
---
9-
# Azure Identity client library for .NET - version 1.14.2
9+
# Azure Identity client library for .NET - version 1.15.0
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/dotnet/api/azure.core.tokencredential?view=azure-dotnet) implementations that can be used to construct Azure SDK clients that support Microsoft Entra token authentication.
@@ -260,15 +260,15 @@ As of version 1.10.0, accessing resources protected by [Continuous Access Evalua
260260
* Improve resilience and performance.
261261
* Reduce the number of requests made to Microsoft Entra ID to obtain access tokens.
262262

263-
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-net/blob/Azure.Identity_1.14.2/sdk/identity/Azure.Identity/samples/TokenCache.md).
263+
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-net/blob/Azure.Identity_1.15.0/sdk/identity/Azure.Identity/samples/TokenCache.md).
264264

265265
## Brokered authentication
266266

267267
An authentication broker is an app that runs on a user's machine and manages the authentication handshakes and token maintenance for connected accounts. Currently, only Windows is supported via Web Account Manager (WAM). To enable support, use the [Azure.Identity.Broker](https://www.nuget.org/packages/Azure.Identity.Broker) package.
268268

269269
## Troubleshooting
270270

271-
See the [troubleshooting guide](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Identity_1.14.2/sdk/identity/Azure.Identity/TROUBLESHOOTING.md).
271+
See the [troubleshooting guide](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Identity_1.15.0/sdk/identity/Azure.Identity/TROUBLESHOOTING.md).
272272

273273
### Error handling
274274

@@ -295,18 +295,18 @@ For more information on handling errors from failed requests to Microsoft Entra
295295

296296
### Logging
297297

298-
See [Enable and configure logging](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Identity_1.14.2/sdk/identity/Azure.Identity/TROUBLESHOOTING.md#enable-and-configure-logging).
298+
See [Enable and configure logging](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Identity_1.15.0/sdk/identity/Azure.Identity/TROUBLESHOOTING.md#enable-and-configure-logging).
299299

300300
### Thread safety
301301

302302
We guarantee that all credential instance methods are thread-safe and independent of each other ([guideline](https://azure.github.io/azure-sdk/dotnet_introduction.html#dotnet-service-methods-thread-safety)). This ensures that the recommendation of reusing credential instances is always safe, even across threads.
303303

304304
### Additional concepts
305305

306-
[Client options](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Identity_1.14.2/sdk/core/Azure.Core/README.md#configuring-service-clients-using-clientoptions) |
307-
[Accessing the response](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Identity_1.14.2/sdk/core/Azure.Core/README.md#accessing-http-response-details-using-responset) |
308-
[Diagnostics](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Identity_1.14.2/sdk/core/Azure.Core/samples/Diagnostics.md) |
309-
[Mocking](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Identity_1.14.2/sdk/core/Azure.Core/README.md#mocking) |
306+
[Client options](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Identity_1.15.0/sdk/core/Azure.Core/README.md#configuring-service-clients-using-clientoptions) |
307+
[Accessing the response](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Identity_1.15.0/sdk/core/Azure.Core/README.md#accessing-http-response-details-using-responset) |
308+
[Diagnostics](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Identity_1.15.0/sdk/core/Azure.Core/samples/Diagnostics.md) |
309+
[Mocking](https://github.com/Azure/azure-sdk-for-net/blob/Azure.Identity_1.15.0/sdk/core/Azure.Core/README.md#mocking) |
310310
[Client lifetime](https://devblogs.microsoft.com/azure-sdk/lifetime-management-and-thread-safety-guarantees-of-azure-sdk-net-clients/)
311311

312312
## Next steps
@@ -334,14 +334,14 @@ This project has adopted the [Microsoft Open Source Code of Conduct][code_of_con
334334
[azure_developer_cli]:https://aka.ms/azure-dev
335335
[azure_powerShell]: https://learn.microsoft.com/powershell/azure
336336
[azure_sub]: https://azure.microsoft.com/free/dotnet/
337-
[source]: https://github.com/Azure/azure-sdk-for-net/tree/Azure.Identity_1.14.2/sdk/identity/Azure.Identity/src
337+
[source]: https://github.com/Azure/azure-sdk-for-net/tree/Azure.Identity_1.15.0/sdk/identity/Azure.Identity/src
338338
[package]: https://www.nuget.org/packages/Azure.Identity
339339
[entraid_doc]: https://learn.microsoft.com/entra/identity/
340340
[entraid_err_doc]: https://learn.microsoft.com/entra/identity-platform/reference-error-codes
341341
[code_of_conduct]: https://opensource.microsoft.com/codeofconduct/
342342
[code_of_conduct_faq]: https://opensource.microsoft.com/codeofconduct/faq/
343-
[blobs_client_library]: https://github.com/Azure/azure-sdk-for-net/tree/Azure.Identity_1.14.2/sdk/storage/Azure.Storage.Blobs
344-
[azure_core_library]: https://github.com/Azure/azure-sdk-for-net/tree/Azure.Identity_1.14.2/sdk/core/Azure.Core
343+
[blobs_client_library]: https://github.com/Azure/azure-sdk-for-net/tree/Azure.Identity_1.15.0/sdk/storage/Azure.Storage.Blobs
344+
[azure_core_library]: https://github.com/Azure/azure-sdk-for-net/tree/Azure.Identity_1.15.0/sdk/core/Azure.Core
345345
[identity_api_docs]: https://learn.microsoft.com/dotnet/api/azure.identity?view=azure-dotnet
346346
[vs_login_image]: https://raw.githubusercontent.com/Azure/azure-sdk-for-net/main/sdk/identity/Azure.Identity/images/VsLoginDialog.png
347347
[azure_cli_login_image]: https://raw.githubusercontent.com/Azure/azure-sdk-for-net/main/sdk/identity/Azure.Identity/images/AzureCliLogin.png

metadata/latest/Azure.Identity.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Name": "Azure.Identity",
3-
"Version": "1.14.2",
3+
"Version": "1.15.0",
44
"DevVersion": null,
55
"DirectoryPath": "sdk/identity/Azure.Identity",
66
"ServiceDirectory": "identity",
@@ -10,24 +10,24 @@
1010
"SdkType": "client",
1111
"IsNewSdk": true,
1212
"ArtifactName": "Azure.Identity",
13-
"ReleaseStatus": "2025-07-10",
13+
"ReleaseStatus": "2025-08-07",
1414
"IncludedForValidation": false,
1515
"AdditionalValidationPackages": null,
1616
"ArtifactDetails": {
17+
"safeName": "AzureIdentity",
1718
"triggeringPaths": [
1819
"/sdk/identity/ci.yml"
1920
],
20-
"safeName": "AzureIdentity",
2121
"name": "Azure.Identity"
2222
},
2323
"CIParameters": {
24-
"BuildSnippets": true,
25-
"CIMatrixConfigs": [],
26-
"CheckAOTCompat": true,
2724
"AOTTestInputs": {
2825
"ArtifactName": "Azure.Identity",
2926
"ExpectedWarningsFilepath": "None"
30-
}
27+
},
28+
"CIMatrixConfigs": [],
29+
"CheckAOTCompat": true,
30+
"BuildSnippets": true
3131
},
3232
"Namespaces": [
3333
"Azure.Identity"

0 commit comments

Comments
 (0)