Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
## Bug Fixes
- **OAuth Flow Storage**: Avoided redundant writes when the flow state is unchanged in the cache.

## Developer Experience
- Building packages with `py.typed` files for improved typing support

# Microsoft 365 Agents SDK for Python - Release Notes v1.3.0

**Release Date:** 2026-07-30
Expand Down
Empty file.
5 changes: 4 additions & 1 deletion libraries/microsoft-agents-activity/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=64"]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -24,5 +24,8 @@ dependencies = [
"pydantic>=2.10.4"
]

[tool.setuptools.package-data]
"microsoft_agents.activity" = ["py.typed"]

[project.urls]
"Homepage" = "https://github.com/microsoft/Agents"
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=64"]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -21,5 +21,8 @@ classifiers = [
"Operating System :: OS Independent",
]

[tool.setuptools.package-data]
"microsoft_agents.authentication.entra_auth_sidecar" = ["py.typed"]

[project.urls]
"Homepage" = "https://github.com/microsoft/Agents"
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=64"]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -21,5 +21,8 @@ classifiers = [
"Operating System :: OS Independent",
]

[tool.setuptools.package-data]
"microsoft_agents.authentication.msal" = ["py.typed"]

[project.urls]
"Homepage" = "https://github.com/microsoft/Agents"
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -21,5 +21,8 @@ classifiers = [
"Operating System :: OS Independent",
]

[tool.setuptools.package-data]
"microsoft_agents.copilotstudio.client" = ["py.typed"]

[project.urls]
"Homepage" = "https://github.com/microsoft/Agents"
5 changes: 4 additions & 1 deletion libraries/microsoft-agents-hosting-aiohttp/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -21,5 +21,8 @@ classifiers = [
"Operating System :: OS Independent",
]

[tool.setuptools.package-data]
"microsoft_agents.hosting.aiohttp" = ["py.typed"]

[project.urls]
"Homepage" = "https://github.com/microsoft/Agents"
5 changes: 4 additions & 1 deletion libraries/microsoft-agents-hosting-core/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -21,5 +21,8 @@ classifiers = [
"Operating System :: OS Independent",
]

[tool.setuptools.package-data]
"microsoft_agents.hosting.core" = ["py.typed"]

[project.urls]
"Homepage" = "https://github.com/microsoft/Agents"
1 change: 1 addition & 0 deletions libraries/microsoft-agents-hosting-dialogs/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include VERSION.txt
5 changes: 4 additions & 1 deletion libraries/microsoft-agents-hosting-dialogs/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -21,5 +21,8 @@ classifiers = [
"Operating System :: OS Independent",
]

[tool.setuptools.package-data]
"microsoft_agents.hosting.dialogs" = ["py.typed"]

[project.urls]
"Homepage" = "https://github.com/microsoft/Agents"
5 changes: 4 additions & 1 deletion libraries/microsoft-agents-hosting-fastapi/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -16,5 +16,8 @@ classifiers = [
"Operating System :: OS Independent",
]

[tool.setuptools.package-data]
"microsoft_agents.hosting.fastapi" = ["py.typed"]

[project.urls]
"Homepage" = "https://github.com/microsoft/Agents"
5 changes: 4 additions & 1 deletion libraries/microsoft-agents-hosting-msteams/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -20,5 +20,8 @@ classifiers = [
"Operating System :: OS Independent",
]

[tool.setuptools.package-data]
"microsoft_agents.hosting.msteams" = ["py.typed"]

[project.urls]
"Homepage" = "https://github.com/microsoft/Agents"
5 changes: 4 additions & 1 deletion libraries/microsoft-agents-hosting-slack/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -21,5 +21,8 @@ classifiers = [
"Operating System :: OS Independent",
]

[tool.setuptools.package-data]
"microsoft_agents.hosting.slack" = ["py.typed"]

[project.urls]
"Homepage" = "https://github.com/microsoft/Agents"
5 changes: 4 additions & 1 deletion libraries/microsoft-agents-hosting-teams/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -19,5 +19,8 @@ classifiers = [
"Operating System :: OS Independent",
]

[tool.setuptools.package-data]
"microsoft_agents.hosting.teams" = ["py.typed"]

[project.urls]
"Homepage" = "https://github.com/microsoft/Agents"
5 changes: 4 additions & 1 deletion libraries/microsoft-agents-storage-blob/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -21,5 +21,8 @@ classifiers = [
"Operating System :: OS Independent",
]

[tool.setuptools.package-data]
"microsoft_agents.storage.blob" = ["py.typed"]

[project.urls]
"Homepage" = "https://github.com/microsoft/Agents"
5 changes: 4 additions & 1 deletion libraries/microsoft-agents-storage-cosmos/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools"]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"

[project]
Expand All @@ -21,5 +21,8 @@ classifiers = [
"Operating System :: OS Independent",
]

[tool.setuptools.package-data]
"microsoft_agents.storage.cosmos" = ["py.typed"]

[project.urls]
"Homepage" = "https://github.com/microsoft/Agents"
Loading