File tree 5 files changed +8
-8
lines changed
sdk/identity/azure-identity-broker
5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 1
1
# Release History
2
2
3
- ## 1.0.1 (Unreleased)
3
+ ## 1.1.0 (Unreleased)
4
4
5
5
### Features Added
6
6
10
10
11
11
### Other Changes
12
12
13
+ - Python 3.7 is no longer supported. Please use Python version 3.8 or later.
14
+
13
15
## 1.0.0 (2023-11-07)
14
16
15
17
### Features Added
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ from azure.storage.blob import BlobServiceClient
53
53
current_window_handle = win32gui.GetForegroundWindow()
54
54
55
55
credential = InteractiveBrowserBrokerCredential(parent_window_handle = current_window_handle)
56
- client = BlobServiceClient(account_url, credential = default_credential )
56
+ client = BlobServiceClient(account_url, credential = credential )
57
57
```
58
58
59
59
## Troubleshooting
Original file line number Diff line number Diff line change @@ -35,9 +35,8 @@ class InteractiveBrowserBrokerCredential(_InteractiveBrowserCredential):
35
35
may still log in with a different username.
36
36
:paramtype cache_persistence_options: ~azure.identity.TokenCachePersistenceOptions
37
37
:keyword int timeout: seconds to wait for the user to complete authentication. Defaults to 300 (5 minutes).
38
- :keyword int parent_window_handle: If your app is a GUI app running on a modern Windows system,
39
- and your app opts in to use broker via `allow_broker`, you are required to also provide its window handle,
40
- so that the sign in UI window will properly pop up on top of your window.
38
+ :keyword int parent_window_handle: If your app is a GUI app running on a modern Windows system, you are required to
39
+ also provide its window handle so that the sign in UI window will properly pop up on top of your window.
41
40
:keyword bool enable_msa_passthrough: Determines whether Microsoft Account (MSA) passthrough is enabled. Note, this
42
41
is only needed for select legacy first-party applications. Defaults to False.
43
42
:keyword bool disable_instance_discovery: Determines whether or not instance discovery is performed when attempting
Original file line number Diff line number Diff line change 2
2
# Copyright (c) Microsoft Corporation.
3
3
# Licensed under the MIT License.
4
4
# ------------------------------------
5
- VERSION = "1.0.1 "
5
+ VERSION = "1.1.0 "
Original file line number Diff line number Diff line change 45
45
"Programming Language :: Python" ,
46
46
"Programming Language :: Python :: 3 :: Only" ,
47
47
"Programming Language :: Python :: 3" ,
48
- "Programming Language :: Python :: 3.7" ,
49
48
"Programming Language :: Python :: 3.8" ,
50
49
"Programming Language :: Python :: 3.9" ,
51
50
"Programming Language :: Python :: 3.10" ,
61
60
package_data = {
62
61
"pytyped" : ["py.typed" ],
63
62
},
64
- python_requires = ">=3.7 " ,
63
+ python_requires = ">=3.8 " ,
65
64
install_requires = [
66
65
"azure-identity<2.0.0,>=1.14.0" ,
67
66
"msal[broker]>=1.25,<2" ,
You can’t perform that action at this time.
0 commit comments