microsoft-agents-authentication-msal 0.3.0.dev0__tar.gz → 0.4.0.dev1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {microsoft_agents_authentication_msal-0.3.0.dev0 → microsoft_agents_authentication_msal-0.4.0.dev1}/PKG-INFO +2 -2
- {microsoft_agents_authentication_msal-0.3.0.dev0/microsoft/agents → microsoft_agents_authentication_msal-0.4.0.dev1/microsoft_agents}/authentication/msal/msal_auth.py +1 -1
- {microsoft_agents_authentication_msal-0.3.0.dev0/microsoft/agents → microsoft_agents_authentication_msal-0.4.0.dev1/microsoft_agents}/authentication/msal/msal_connection_manager.py +1 -1
- {microsoft_agents_authentication_msal-0.3.0.dev0 → microsoft_agents_authentication_msal-0.4.0.dev1}/microsoft_agents_authentication_msal.egg-info/PKG-INFO +2 -2
- {microsoft_agents_authentication_msal-0.3.0.dev0 → microsoft_agents_authentication_msal-0.4.0.dev1}/microsoft_agents_authentication_msal.egg-info/SOURCES.txt +3 -3
- {microsoft_agents_authentication_msal-0.3.0.dev0 → microsoft_agents_authentication_msal-0.4.0.dev1}/microsoft_agents_authentication_msal.egg-info/requires.txt +1 -1
- microsoft_agents_authentication_msal-0.4.0.dev1/microsoft_agents_authentication_msal.egg-info/top_level.txt +1 -0
- {microsoft_agents_authentication_msal-0.3.0.dev0 → microsoft_agents_authentication_msal-0.4.0.dev1}/tests/test_msal_auth.py +2 -2
- {microsoft_agents_authentication_msal-0.3.0.dev0 → microsoft_agents_authentication_msal-0.4.0.dev1}/tests/test_msal_connection_manager.py +3 -3
- microsoft_agents_authentication_msal-0.3.0.dev0/microsoft_agents_authentication_msal.egg-info/top_level.txt +0 -1
- {microsoft_agents_authentication_msal-0.3.0.dev0/microsoft/agents → microsoft_agents_authentication_msal-0.4.0.dev1/microsoft_agents}/authentication/msal/__init__.py +0 -0
- {microsoft_agents_authentication_msal-0.3.0.dev0 → microsoft_agents_authentication_msal-0.4.0.dev1}/microsoft_agents_authentication_msal.egg-info/dependency_links.txt +0 -0
- {microsoft_agents_authentication_msal-0.3.0.dev0 → microsoft_agents_authentication_msal-0.4.0.dev1}/pyproject.toml +0 -0
- {microsoft_agents_authentication_msal-0.3.0.dev0 → microsoft_agents_authentication_msal-0.4.0.dev1}/setup.cfg +0 -0
- {microsoft_agents_authentication_msal-0.3.0.dev0 → microsoft_agents_authentication_msal-0.4.0.dev1}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: microsoft-agents-authentication-msal
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0.dev1
|
|
4
4
|
Summary: A msal-based authentication library for Microsoft Agents
|
|
5
5
|
Author: Microsoft Corporation
|
|
6
6
|
Project-URL: Homepage, https://github.com/microsoft/Agents
|
|
@@ -8,7 +8,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
8
8
|
Classifier: License :: OSI Approved :: MIT License
|
|
9
9
|
Classifier: Operating System :: OS Independent
|
|
10
10
|
Requires-Python: >=3.9
|
|
11
|
-
Requires-Dist: microsoft-agents-hosting-core==0.
|
|
11
|
+
Requires-Dist: microsoft-agents-hosting-core==0.4.0.dev1
|
|
12
12
|
Requires-Dist: msal>=1.31.1
|
|
13
13
|
Requires-Dist: requests>=2.32.3
|
|
14
14
|
Requires-Dist: cryptography>=44.0.0
|
|
@@ -14,7 +14,7 @@ from cryptography.x509 import load_pem_x509_certificate
|
|
|
14
14
|
from cryptography.hazmat.backends import default_backend
|
|
15
15
|
from cryptography.hazmat.primitives import hashes
|
|
16
16
|
|
|
17
|
-
from
|
|
17
|
+
from microsoft_agents.hosting.core import (
|
|
18
18
|
AuthTypes,
|
|
19
19
|
AccessTokenProviderBase,
|
|
20
20
|
AgentAuthConfiguration,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: microsoft-agents-authentication-msal
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.4.0.dev1
|
|
4
4
|
Summary: A msal-based authentication library for Microsoft Agents
|
|
5
5
|
Author: Microsoft Corporation
|
|
6
6
|
Project-URL: Homepage, https://github.com/microsoft/Agents
|
|
@@ -8,7 +8,7 @@ Classifier: Programming Language :: Python :: 3
|
|
|
8
8
|
Classifier: License :: OSI Approved :: MIT License
|
|
9
9
|
Classifier: Operating System :: OS Independent
|
|
10
10
|
Requires-Python: >=3.9
|
|
11
|
-
Requires-Dist: microsoft-agents-hosting-core==0.
|
|
11
|
+
Requires-Dist: microsoft-agents-hosting-core==0.4.0.dev1
|
|
12
12
|
Requires-Dist: msal>=1.31.1
|
|
13
13
|
Requires-Dist: requests>=2.32.3
|
|
14
14
|
Requires-Dist: cryptography>=44.0.0
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
pyproject.toml
|
|
2
2
|
setup.py
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
microsoft_agents/authentication/msal/__init__.py
|
|
4
|
+
microsoft_agents/authentication/msal/msal_auth.py
|
|
5
|
+
microsoft_agents/authentication/msal/msal_connection_manager.py
|
|
6
6
|
microsoft_agents_authentication_msal.egg-info/PKG-INFO
|
|
7
7
|
microsoft_agents_authentication_msal.egg-info/SOURCES.txt
|
|
8
8
|
microsoft_agents_authentication_msal.egg-info/dependency_links.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
microsoft_agents
|
|
@@ -2,8 +2,8 @@ import unittest
|
|
|
2
2
|
from unittest.mock import Mock
|
|
3
3
|
import pytest
|
|
4
4
|
from msal import ManagedIdentityClient, ConfidentialClientApplication
|
|
5
|
-
from
|
|
6
|
-
from
|
|
5
|
+
from microsoft_agents.authentication.msal import MsalAuth
|
|
6
|
+
from microsoft_agents.hosting.core.authorization import AgentAuthConfiguration
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
class TestingMsalAuth(MsalAuth):
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
from os import environ
|
|
2
|
-
from
|
|
3
|
-
from
|
|
4
|
-
from
|
|
2
|
+
from microsoft_agents.activity import load_configuration_from_env
|
|
3
|
+
from microsoft_agents.hosting.core import AuthTypes
|
|
4
|
+
from microsoft_agents.authentication.msal import MsalConnectionManager
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
class TestMsalConnectionManager:
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
microsoft
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|