Skip to content

Commit ed6e1ac

Browse files
authored
bump msal-ex version (Azure#24190)
* bump msal-ex version * update * Update CHANGELOG.md
1 parent dc07965 commit ed6e1ac

File tree

5 files changed

+13
-11
lines changed

5 files changed

+13
-11
lines changed

sdk/identity/azure-identity/CHANGELOG.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# Release History
22

3-
## 1.10.0b2 (Unreleased)
4-
5-
### Features Added
3+
## 1.10.0 (2022-04-28)
64

75
### Breaking Changes
86

9-
### Bugs Fixed
7+
> These changes do not impact the API of stable versions such as 1.9.0.
8+
> Only code written against a beta version such as 1.10.0b1 may be affected.
9+
- `validate_authority` support is not available in 1.10.0.
1010

1111
### Other Changes
1212

13-
- Bumped msal-extensions version to 1.0.0 ([#23927](https://github.com/Azure/azure-sdk-for-python/issues/23927))
13+
- Supported msal-extensions version 1.0.0 ([#23927](https://github.com/Azure/azure-sdk-for-python/issues/23927))
1414

1515
## 1.10.0b1 (2022-04-07)
1616

@@ -26,6 +26,8 @@
2626

2727
### Breaking Changes
2828

29+
> These changes do not impact the API of stable versions such as 1.8.0.
30+
> Only code written against a beta version such as 1.9.0b1 may be affected.
2931
- `validate_authority` support is not available in 1.9.0.
3032

3133
### Bugs Fixed

sdk/identity/azure-identity/azure/identity/_internal/msal_credentials.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class MsalCredential(object):
2727
def __init__(self, client_id, client_credential=None, **kwargs):
2828
# type: (str, Optional[Union[str, Dict]], **Any) -> None
2929
authority = kwargs.pop("authority", None)
30-
self._validate_authority = kwargs.pop("validate_authority", True)
30+
# self._validate_authority = kwargs.pop("validate_authority", True)
3131
self._authority = normalize_authority(authority) if authority else get_default_authority()
3232
self._regional_authority = os.environ.get(EnvironmentVariables.AZURE_REGIONAL_AUTHORITY_NAME)
3333
self._tenant_id = kwargs.pop("tenant_id", None) or "organizations"
@@ -73,7 +73,7 @@ def _get_app(self, **kwargs):
7373
azure_region=self._regional_authority,
7474
token_cache=self._cache,
7575
http_client=self._client,
76-
validate_authority=self._validate_authority
76+
# validate_authority=self._validate_authority
7777
)
7878

7979
return self._client_applications[tenant_id]

sdk/identity/azure-identity/azure/identity/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# Copyright (c) Microsoft Corporation.
33
# Licensed under the MIT License.
44
# ------------------------------------
5-
VERSION = "1.10.0b2"
5+
VERSION = "1.10.0"

sdk/identity/azure-identity/setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
author_email="[email protected]",
5353
url="https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/identity/azure-identity",
5454
classifiers=[
55-
"Development Status :: 4 - Beta",
55+
"Development Status :: 5 - Production/Stable",
5656
"Programming Language :: Python",
5757
"Programming Language :: Python :: 3 :: Only",
5858
"Programming Language :: Python :: 3",
@@ -76,7 +76,7 @@
7676
"azure-core<2.0.0,>=1.11.0",
7777
"cryptography>=2.5",
7878
"msal<2.0.0,>=1.12.0",
79-
"msal-extensions~=1.0.0",
79+
"msal-extensions<2.0.0,>=0.3.0",
8080
"six>=1.12.0",
8181
],
8282
)

shared_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ mock
113113
typing
114114
typing-extensions
115115
msal<2.0.0,>=1.12.0
116-
msal-extensions~=1.0.0
116+
msal-extensions<2.0.0,>=0.3.0
117117
msrest>=0.6.21
118118
msrestazure<2.0.0,>=0.4.32
119119
azure-mgmt-core<2.0.0,>=1.3.0

0 commit comments

Comments
 (0)