microsoft-agents-hosting-aiohttp 1.4.0.dev13__tar.gz → 1.5.0.dev8__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 (23) hide show
  1. {microsoft_agents_hosting_aiohttp-1.4.0.dev13/microsoft_agents_hosting_aiohttp.egg-info → microsoft_agents_hosting_aiohttp-1.5.0.dev8}/PKG-INFO +11 -2
  2. microsoft_agents_hosting_aiohttp-1.5.0.dev8/VERSION.txt +1 -0
  3. {microsoft_agents_hosting_aiohttp-1.4.0.dev13 → microsoft_agents_hosting_aiohttp-1.5.0.dev8}/microsoft_agents/hosting/aiohttp/cloud_adapter.py +6 -1
  4. microsoft_agents_hosting_aiohttp-1.5.0.dev8/microsoft_agents/hosting/aiohttp/py.typed +0 -0
  5. {microsoft_agents_hosting_aiohttp-1.4.0.dev13 → microsoft_agents_hosting_aiohttp-1.5.0.dev8/microsoft_agents_hosting_aiohttp.egg-info}/PKG-INFO +11 -2
  6. {microsoft_agents_hosting_aiohttp-1.4.0.dev13 → microsoft_agents_hosting_aiohttp-1.5.0.dev8}/microsoft_agents_hosting_aiohttp.egg-info/SOURCES.txt +1 -0
  7. microsoft_agents_hosting_aiohttp-1.5.0.dev8/microsoft_agents_hosting_aiohttp.egg-info/requires.txt +2 -0
  8. {microsoft_agents_hosting_aiohttp-1.4.0.dev13 → microsoft_agents_hosting_aiohttp-1.5.0.dev8}/pyproject.toml +4 -1
  9. {microsoft_agents_hosting_aiohttp-1.4.0.dev13 → microsoft_agents_hosting_aiohttp-1.5.0.dev8}/readme.md +9 -0
  10. microsoft_agents_hosting_aiohttp-1.4.0.dev13/VERSION.txt +0 -1
  11. microsoft_agents_hosting_aiohttp-1.4.0.dev13/microsoft_agents_hosting_aiohttp.egg-info/requires.txt +0 -2
  12. {microsoft_agents_hosting_aiohttp-1.4.0.dev13 → microsoft_agents_hosting_aiohttp-1.5.0.dev8}/LICENSE +0 -0
  13. {microsoft_agents_hosting_aiohttp-1.4.0.dev13 → microsoft_agents_hosting_aiohttp-1.5.0.dev8}/MANIFEST.in +0 -0
  14. {microsoft_agents_hosting_aiohttp-1.4.0.dev13 → microsoft_agents_hosting_aiohttp-1.5.0.dev8}/microsoft_agents/hosting/aiohttp/__init__.py +0 -0
  15. {microsoft_agents_hosting_aiohttp-1.4.0.dev13 → microsoft_agents_hosting_aiohttp-1.5.0.dev8}/microsoft_agents/hosting/aiohttp/_aiohttp_request_adapter.py +0 -0
  16. {microsoft_agents_hosting_aiohttp-1.4.0.dev13 → microsoft_agents_hosting_aiohttp-1.5.0.dev8}/microsoft_agents/hosting/aiohttp/_start_agent_process.py +0 -0
  17. {microsoft_agents_hosting_aiohttp-1.4.0.dev13 → microsoft_agents_hosting_aiohttp-1.5.0.dev8}/microsoft_agents/hosting/aiohttp/agent_http_adapter.py +0 -0
  18. {microsoft_agents_hosting_aiohttp-1.4.0.dev13 → microsoft_agents_hosting_aiohttp-1.5.0.dev8}/microsoft_agents/hosting/aiohttp/channel_service_route_table.py +0 -0
  19. {microsoft_agents_hosting_aiohttp-1.4.0.dev13 → microsoft_agents_hosting_aiohttp-1.5.0.dev8}/microsoft_agents/hosting/aiohttp/jwt_authorization_middleware.py +0 -0
  20. {microsoft_agents_hosting_aiohttp-1.4.0.dev13 → microsoft_agents_hosting_aiohttp-1.5.0.dev8}/microsoft_agents_hosting_aiohttp.egg-info/dependency_links.txt +0 -0
  21. {microsoft_agents_hosting_aiohttp-1.4.0.dev13 → microsoft_agents_hosting_aiohttp-1.5.0.dev8}/microsoft_agents_hosting_aiohttp.egg-info/top_level.txt +0 -0
  22. {microsoft_agents_hosting_aiohttp-1.4.0.dev13 → microsoft_agents_hosting_aiohttp-1.5.0.dev8}/setup.cfg +0 -0
  23. {microsoft_agents_hosting_aiohttp-1.4.0.dev13 → microsoft_agents_hosting_aiohttp-1.5.0.dev8}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: microsoft-agents-hosting-aiohttp
3
- Version: 1.4.0.dev13
3
+ Version: 1.5.0.dev8
4
4
  Summary: Integration library for Microsoft Agents with aiohttp
5
5
  Author: Microsoft Corporation
6
6
  License-Expression: MIT
@@ -15,7 +15,7 @@ Classifier: Operating System :: OS Independent
15
15
  Requires-Python: >=3.10
16
16
  Description-Content-Type: text/markdown
17
17
  License-File: LICENSE
18
- Requires-Dist: microsoft-agents-hosting-core==1.4.0.dev13
18
+ Requires-Dist: microsoft-agents-hosting-core==1.5.0.dev8
19
19
  Requires-Dist: aiohttp>=3.11.11
20
20
  Dynamic: license-file
21
21
  Dynamic: requires-dist
@@ -39,6 +39,15 @@ This library is part of the **Microsoft 365 Agents SDK for Python** - a comprehe
39
39
  <th style="width:20%">Date</th>
40
40
  <th style="width:60%">Release Notes</th>
41
41
  </tr>
42
+ <tr>
43
+ <td>1.4.0</td>
44
+ <td>2026-08-18</td>
45
+ <td>
46
+ <a href="https://github.com/microsoft/Agents-for-python/blob/main/changelog.md#microsoft-365-agents-sdk-for-python---release-notes-v140">
47
+ 1.4.0 Release Notes
48
+ </a>
49
+ </td>
50
+ </tr>
42
51
  <tr>
43
52
  <td>1.3.0</td>
44
53
  <td>2026-07-30</td>
@@ -0,0 +1 @@
1
+ 1.5.0.dev8
@@ -10,7 +10,10 @@ from microsoft_agents.hosting.core.authorization import Connections
10
10
  from microsoft_agents.hosting.core.http import (
11
11
  HttpResponse,
12
12
  )
13
- from microsoft_agents.hosting.core import ChannelServiceClientFactoryBase
13
+ from microsoft_agents.hosting.core import (
14
+ ChannelServiceClientFactoryBase,
15
+ OutboundHostValidator,
16
+ )
14
17
 
15
18
  from .agent_http_adapter import AgentHttpAdapter
16
19
  from ._aiohttp_request_adapter import AiohttpRequestAdapter
@@ -25,6 +28,7 @@ class CloudAdapter(HttpAdapterBase, AgentHttpAdapter):
25
28
  connection_manager: Connections | None = None,
26
29
  channel_service_client_factory: ChannelServiceClientFactoryBase | None = None,
27
30
  channel_service_client_factory_options: dict | None = None,
31
+ host_validator: OutboundHostValidator | None = None,
28
32
  ):
29
33
  """
30
34
  Initializes a new instance of the CloudAdapter class.
@@ -38,6 +42,7 @@ class CloudAdapter(HttpAdapterBase, AgentHttpAdapter):
38
42
  connection_manager=connection_manager,
39
43
  channel_service_client_factory=channel_service_client_factory,
40
44
  channel_service_client_factory_options=channel_service_client_factory_options,
45
+ host_validator=host_validator,
41
46
  )
42
47
 
43
48
  async def process(self, request: Request, agent: Agent) -> Optional[Response]:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: microsoft-agents-hosting-aiohttp
3
- Version: 1.4.0.dev13
3
+ Version: 1.5.0.dev8
4
4
  Summary: Integration library for Microsoft Agents with aiohttp
5
5
  Author: Microsoft Corporation
6
6
  License-Expression: MIT
@@ -15,7 +15,7 @@ Classifier: Operating System :: OS Independent
15
15
  Requires-Python: >=3.10
16
16
  Description-Content-Type: text/markdown
17
17
  License-File: LICENSE
18
- Requires-Dist: microsoft-agents-hosting-core==1.4.0.dev13
18
+ Requires-Dist: microsoft-agents-hosting-core==1.5.0.dev8
19
19
  Requires-Dist: aiohttp>=3.11.11
20
20
  Dynamic: license-file
21
21
  Dynamic: requires-dist
@@ -39,6 +39,15 @@ This library is part of the **Microsoft 365 Agents SDK for Python** - a comprehe
39
39
  <th style="width:20%">Date</th>
40
40
  <th style="width:60%">Release Notes</th>
41
41
  </tr>
42
+ <tr>
43
+ <td>1.4.0</td>
44
+ <td>2026-08-18</td>
45
+ <td>
46
+ <a href="https://github.com/microsoft/Agents-for-python/blob/main/changelog.md#microsoft-365-agents-sdk-for-python---release-notes-v140">
47
+ 1.4.0 Release Notes
48
+ </a>
49
+ </td>
50
+ </tr>
42
51
  <tr>
43
52
  <td>1.3.0</td>
44
53
  <td>2026-07-30</td>
@@ -11,6 +11,7 @@ microsoft_agents/hosting/aiohttp/agent_http_adapter.py
11
11
  microsoft_agents/hosting/aiohttp/channel_service_route_table.py
12
12
  microsoft_agents/hosting/aiohttp/cloud_adapter.py
13
13
  microsoft_agents/hosting/aiohttp/jwt_authorization_middleware.py
14
+ microsoft_agents/hosting/aiohttp/py.typed
14
15
  microsoft_agents_hosting_aiohttp.egg-info/PKG-INFO
15
16
  microsoft_agents_hosting_aiohttp.egg-info/SOURCES.txt
16
17
  microsoft_agents_hosting_aiohttp.egg-info/dependency_links.txt
@@ -0,0 +1,2 @@
1
+ microsoft-agents-hosting-core==1.5.0.dev8
2
+ aiohttp>=3.11.11
@@ -1,5 +1,5 @@
1
1
  [build-system]
2
- requires = ["setuptools"]
2
+ requires = ["setuptools>=77"]
3
3
  build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
@@ -21,5 +21,8 @@ classifiers = [
21
21
  "Operating System :: OS Independent",
22
22
  ]
23
23
 
24
+ [tool.setuptools.package-data]
25
+ "microsoft_agents.hosting.aiohttp" = ["py.typed"]
26
+
24
27
  [project.urls]
25
28
  "Homepage" = "https://github.com/microsoft/Agents"
@@ -17,6 +17,15 @@ This library is part of the **Microsoft 365 Agents SDK for Python** - a comprehe
17
17
  <th style="width:20%">Date</th>
18
18
  <th style="width:60%">Release Notes</th>
19
19
  </tr>
20
+ <tr>
21
+ <td>1.4.0</td>
22
+ <td>2026-08-18</td>
23
+ <td>
24
+ <a href="https://github.com/microsoft/Agents-for-python/blob/main/changelog.md#microsoft-365-agents-sdk-for-python---release-notes-v140">
25
+ 1.4.0 Release Notes
26
+ </a>
27
+ </td>
28
+ </tr>
20
29
  <tr>
21
30
  <td>1.3.0</td>
22
31
  <td>2026-07-30</td>
@@ -1 +0,0 @@
1
- 1.4.0.dev13
@@ -1,2 +0,0 @@
1
- microsoft-agents-hosting-core==1.4.0.dev13
2
- aiohttp>=3.11.11