microsoft-agents-authentication-msal 0.3.0.dev0__tar.gz → 0.3.1__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.
Files changed (15) hide show
  1. {microsoft_agents_authentication_msal-0.3.0.dev0 → microsoft_agents_authentication_msal-0.3.1}/PKG-INFO +2 -2
  2. {microsoft_agents_authentication_msal-0.3.0.dev0/microsoft/agents → microsoft_agents_authentication_msal-0.3.1/microsoft_agents}/authentication/msal/msal_auth.py +1 -1
  3. {microsoft_agents_authentication_msal-0.3.0.dev0/microsoft/agents → microsoft_agents_authentication_msal-0.3.1/microsoft_agents}/authentication/msal/msal_connection_manager.py +1 -1
  4. {microsoft_agents_authentication_msal-0.3.0.dev0 → microsoft_agents_authentication_msal-0.3.1}/microsoft_agents_authentication_msal.egg-info/PKG-INFO +2 -2
  5. {microsoft_agents_authentication_msal-0.3.0.dev0 → microsoft_agents_authentication_msal-0.3.1}/microsoft_agents_authentication_msal.egg-info/SOURCES.txt +3 -3
  6. {microsoft_agents_authentication_msal-0.3.0.dev0 → microsoft_agents_authentication_msal-0.3.1}/microsoft_agents_authentication_msal.egg-info/requires.txt +1 -1
  7. microsoft_agents_authentication_msal-0.3.1/microsoft_agents_authentication_msal.egg-info/top_level.txt +1 -0
  8. {microsoft_agents_authentication_msal-0.3.0.dev0 → microsoft_agents_authentication_msal-0.3.1}/tests/test_msal_auth.py +2 -2
  9. {microsoft_agents_authentication_msal-0.3.0.dev0 → microsoft_agents_authentication_msal-0.3.1}/tests/test_msal_connection_manager.py +3 -3
  10. microsoft_agents_authentication_msal-0.3.0.dev0/microsoft_agents_authentication_msal.egg-info/top_level.txt +0 -1
  11. {microsoft_agents_authentication_msal-0.3.0.dev0/microsoft/agents → microsoft_agents_authentication_msal-0.3.1/microsoft_agents}/authentication/msal/__init__.py +0 -0
  12. {microsoft_agents_authentication_msal-0.3.0.dev0 → microsoft_agents_authentication_msal-0.3.1}/microsoft_agents_authentication_msal.egg-info/dependency_links.txt +0 -0
  13. {microsoft_agents_authentication_msal-0.3.0.dev0 → microsoft_agents_authentication_msal-0.3.1}/pyproject.toml +0 -0
  14. {microsoft_agents_authentication_msal-0.3.0.dev0 → microsoft_agents_authentication_msal-0.3.1}/setup.cfg +0 -0
  15. {microsoft_agents_authentication_msal-0.3.0.dev0 → microsoft_agents_authentication_msal-0.3.1}/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.0.dev0
3
+ Version: 0.3.1
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.3.0.dev0
11
+ Requires-Dist: microsoft-agents-hosting-core==0.3.1
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 microsoft.agents.hosting.core import (
17
+ from microsoft_agents.hosting.core import (
18
18
  AuthTypes,
19
19
  AccessTokenProviderBase,
20
20
  AgentAuthConfiguration,
@@ -1,5 +1,5 @@
1
1
  from typing import Dict, List, Optional
2
- from microsoft.agents.hosting.core import (
2
+ from microsoft_agents.hosting.core import (
3
3
  AgentAuthConfiguration,
4
4
  AccessTokenProviderBase,
5
5
  ClaimsIdentity,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: microsoft-agents-authentication-msal
3
- Version: 0.3.0.dev0
3
+ Version: 0.3.1
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.3.0.dev0
11
+ Requires-Dist: microsoft-agents-hosting-core==0.3.1
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
- microsoft/agents/authentication/msal/__init__.py
4
- microsoft/agents/authentication/msal/msal_auth.py
5
- microsoft/agents/authentication/msal/msal_connection_manager.py
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
@@ -1,4 +1,4 @@
1
- microsoft-agents-hosting-core==0.3.0.dev0
1
+ microsoft-agents-hosting-core==0.3.1
2
2
  msal>=1.31.1
3
3
  requests>=2.32.3
4
4
  cryptography>=44.0.0
@@ -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 microsoft.agents.authentication.msal import MsalAuth
6
- from microsoft.agents.hosting.core.authorization import AgentAuthConfiguration
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 microsoft.agents.activity import load_configuration_from_env
3
- from microsoft.agents.hosting.core import AuthTypes
4
- from microsoft.agents.authentication.msal import MsalConnectionManager
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: