diff --git a/sdk/identity/azure-identity-broker/CHANGELOG.md b/sdk/identity/azure-identity-broker/CHANGELOG.md index bfa86a566845..369c6a9397d4 100644 --- a/sdk/identity/azure-identity-broker/CHANGELOG.md +++ b/sdk/identity/azure-identity-broker/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 1.0.1 (Unreleased) +## 1.1.0 (Unreleased) ### Features Added @@ -10,6 +10,8 @@ ### Other Changes +- Python 3.7 is no longer supported. Please use Python version 3.8 or later. + ## 1.0.0 (2023-11-07) ### Features Added diff --git a/sdk/identity/azure-identity-broker/README.md b/sdk/identity/azure-identity-broker/README.md index 22644aae15ed..10cd761230b2 100644 --- a/sdk/identity/azure-identity-broker/README.md +++ b/sdk/identity/azure-identity-broker/README.md @@ -53,7 +53,7 @@ from azure.storage.blob import BlobServiceClient current_window_handle = win32gui.GetForegroundWindow() credential = InteractiveBrowserBrokerCredential(parent_window_handle=current_window_handle) -client = BlobServiceClient(account_url, credential=default_credential) +client = BlobServiceClient(account_url, credential=credential) ``` ## Troubleshooting diff --git a/sdk/identity/azure-identity-broker/azure/identity/broker/_browser.py b/sdk/identity/azure-identity-broker/azure/identity/broker/_browser.py index 77207c9113b0..599cfe838ab7 100644 --- a/sdk/identity/azure-identity-broker/azure/identity/broker/_browser.py +++ b/sdk/identity/azure-identity-broker/azure/identity/broker/_browser.py @@ -35,9 +35,8 @@ class InteractiveBrowserBrokerCredential(_InteractiveBrowserCredential): may still log in with a different username. :paramtype cache_persistence_options: ~azure.identity.TokenCachePersistenceOptions :keyword int timeout: seconds to wait for the user to complete authentication. Defaults to 300 (5 minutes). - :keyword int parent_window_handle: If your app is a GUI app running on a modern Windows system, - and your app opts in to use broker via `allow_broker`, you are required to also provide its window handle, - so that the sign in UI window will properly pop up on top of your window. + :keyword int parent_window_handle: If your app is a GUI app running on a modern Windows system, you are required to + also provide its window handle so that the sign in UI window will properly pop up on top of your window. :keyword bool enable_msa_passthrough: Determines whether Microsoft Account (MSA) passthrough is enabled. Note, this is only needed for select legacy first-party applications. Defaults to False. :keyword bool disable_instance_discovery: Determines whether or not instance discovery is performed when attempting diff --git a/sdk/identity/azure-identity-broker/azure/identity/broker/_version.py b/sdk/identity/azure-identity-broker/azure/identity/broker/_version.py index d68d735579e4..6587dc75afd5 100644 --- a/sdk/identity/azure-identity-broker/azure/identity/broker/_version.py +++ b/sdk/identity/azure-identity-broker/azure/identity/broker/_version.py @@ -2,4 +2,4 @@ # Copyright (c) Microsoft Corporation. # Licensed under the MIT License. # ------------------------------------ -VERSION = "1.0.1" +VERSION = "1.1.0" diff --git a/sdk/identity/azure-identity-broker/setup.py b/sdk/identity/azure-identity-broker/setup.py index 6d2a3955a406..863a52a34c8a 100644 --- a/sdk/identity/azure-identity-broker/setup.py +++ b/sdk/identity/azure-identity-broker/setup.py @@ -45,7 +45,6 @@ "Programming Language :: Python", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", @@ -61,7 +60,7 @@ package_data={ "pytyped": ["py.typed"], }, - python_requires=">=3.7", + python_requires=">=3.8", install_requires=[ "azure-identity<2.0.0,>=1.14.0", "msal[broker]>=1.25,<2",