Skip to content

Commit 736ae6f

Browse files
committed
doc updates
Signed-off-by: Paul Van Eck <paulvaneck@microsoft.com>
1 parent c620d89 commit 736ae6f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

sdk/identity/azure-identity/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
### Features Added
66

7-
- `DefaultAzureCredential` now supports authentication with the currently signed-in Windows account through `InteractiveBrowserCredential`, provided the `azure-identity-broker` package is installed. This is added at the end of the `DefaultAzureCredential` credential chain. ([#40335](https://github.com/Azure/azure-sdk-for-python/pull/40335))
7+
- `DefaultAzureCredential` now supports authentication with the currently signed-in Windows account, provided the `azure-identity-broker` package is installed. This auth mechanism is added at the end of the `DefaultAzureCredential` credential chain. ([#40335](https://github.com/Azure/azure-sdk-for-python/pull/40335))
88

99
### Breaking Changes
1010

sdk/identity/azure-identity/azure/identity/_credentials/default.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -214,8 +214,8 @@ def __init__(self, **kwargs: Any) -> None: # pylint: disable=too-many-statement
214214
credentials.append(broker_credential_class(**broker_credential_args))
215215
else:
216216
_LOGGER.info(
217-
"InteractiveBrowserBrokerCredential unavailable. Brokered authentication in DefaultAzureCredential is "
218-
"only available on Windows and requires the 'azure-identity-broker' package to be installed."
217+
"InteractiveBrowserBrokerCredential unavailable. This is only available on Windows and requires the "
218+
"'azure-identity-broker' package to be installed."
219219
)
220220

221221
within_dac.set(False)

0 commit comments

Comments
 (0)