diff --git a/sdk/identity/identity/CHANGELOG.md b/sdk/identity/identity/CHANGELOG.md index ae04c6cfa5ca..3b0c41a0cf58 100644 --- a/sdk/identity/identity/CHANGELOG.md +++ b/sdk/identity/identity/CHANGELOG.md @@ -1,15 +1,11 @@ # Release History -## 4.1.1 (Unreleased) +## 4.2.0 (2024-04-30) ### Features Added - Adds support for `getBearerTokenProvider` that returns a callback function to get a token for a given scope. This is useful for scenarios where an explicit Entra token is needed without having to worry about the token refreshing details. -### Breaking Changes - -### Bugs Fixed - ### Other Changes - `ClientSecretCredential`, `ClientCertificateCredential`, and `ClientAssertionCredential` migrated to use MSALClient internally instead of MSALNode flow. This is an internal refactoring and should not result in any behavioral changes. [#28873](https://github.com/Azure/azure-sdk-for-js/pull/28873) diff --git a/sdk/identity/identity/package.json b/sdk/identity/identity/package.json index bd8e37d89853..0f83f7dd0cc9 100644 --- a/sdk/identity/identity/package.json +++ b/sdk/identity/identity/package.json @@ -1,7 +1,7 @@ { "name": "@azure/identity", "sdk-type": "client", - "version": "4.1.1", + "version": "4.2.0", "description": "Provides credential implementations for Azure SDK libraries that can authenticate with Microsoft Entra ID", "main": "dist/index.js", "module": "dist-esm/src/index.js", diff --git a/sdk/identity/identity/src/constants.ts b/sdk/identity/identity/src/constants.ts index 6a2afb298ee2..72a08bec7893 100644 --- a/sdk/identity/identity/src/constants.ts +++ b/sdk/identity/identity/src/constants.ts @@ -4,7 +4,7 @@ /** * Current version of the `@azure/identity` package. */ -export const SDK_VERSION = `4.1.1`; +export const SDK_VERSION = `4.2.0`; /** * The default client ID for authentication