@azure/identity 3.2.0-alpha.20230425.2 → 3.2.0-alpha.20230425.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of @azure/identity might be problematic. Click here for more details.
- package/README.md +8 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -298,6 +298,14 @@ Not all credentials require this configuration. Credentials that authenticate th
|
|
|
298
298
|
|
|
299
299
|
Configuration is attempted in the above order. For example, if values for a client secret and certificate are both present, the client secret will be used.
|
|
300
300
|
|
|
301
|
+
## Token caching
|
|
302
|
+
Token caching is a feature provided by the Azure Identity library that allows apps to:
|
|
303
|
+
- Cache tokens in memory (default) and on disk (opt-in).
|
|
304
|
+
- Improve resilience and performance.
|
|
305
|
+
- Reduce the number of requests made to Azure AD to obtain access tokens.
|
|
306
|
+
|
|
307
|
+
The Azure Identity library offers both in-memory and persistent disk caching. For more details, see the [token caching documentation](https://github.com/Azure/azure-sdk-for-js/blob/main/sdk/identity/identity/TOKEN_CACHING.md).
|
|
308
|
+
|
|
301
309
|
## Troubleshooting
|
|
302
310
|
|
|
303
311
|
### Error handling
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure/identity",
|
|
3
3
|
"sdk-type": "client",
|
|
4
|
-
"version": "3.2.0-alpha.20230425.
|
|
4
|
+
"version": "3.2.0-alpha.20230425.4",
|
|
5
5
|
"description": "Provides credential implementations for Azure SDK libraries that can authenticate with Azure Active Directory",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist-esm/src/index.js",
|