Skip to content

chore(deps): bump agent-framework in /apps/crm-campaign-intelligence/src#969

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/apps/crm-campaign-intelligence/src/uv-1280fc990d
Open

chore(deps): bump agent-framework in /apps/crm-campaign-intelligence/src#969
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/apps/crm-campaign-intelligence/src/uv-1280fc990d

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 4, 2026

Bumps agent-framework in /apps/crm-campaign-intelligence/src from 1.0.1 to 1.2.2.

Updates agent-framework from 1.0.1 to 1.2.2

Release notes

Sourced from agent-framework's releases.

python-1.2.2

[1.2.2] - 2026-04-29

Added

  • agent-framework-azure-contentunderstanding: New alpha package — Azure AI Content Understanding context provider that auto-analyzes file attachments (documents, images, audio, video) and injects structured results into the LLM context, with multi-document session state, configurable timeout, output filtering via AnalysisSection, and auto-registered list_documents / get_analyzed_document tools (#4829)
  • agent-framework-foundry-hosting: Add hosted Durable Workflow support — propagate full conversation history to workflow agents and wire Workflow.as_agent() end-to-end via the foundry hosting layer (#5531)

Changed

  • agent-framework-orchestrations: [BREAKING] Standardize orchestration terminal outputs as AgentResponse so Workflow.as_agent() returns the final answer only; aligns sequential-approval (with_request_info) and concurrent (intermediate_outputs=True) flows on the same output contract (#5301)
  • agent-framework-core, agent-framework-declarative: Preserve Workflow.run() shared state across calls so multi-turn WorkflowAgent invocations retain context, accept list[Message] input in the declarative start executor, and coerce Enum values when serializing PowerFx symbols (#5531)
  • dependencies: Update workspace package dependencies and preserve mcp[ws] / uvicorn[standard] extras through override-dependencies in /python (#5555)

Fixed

  • agent-framework-core: Fix observability spans not being correctly nested when using streaming (#5552)
  • agent-framework-openai: Fix file_search citations breaking the assistant-message history roundtrip — skip hosted_file content in the assistant role so the Responses API no longer rejects input_file (#5557)

Full Changelog: microsoft/agent-framework@python-1.2.1...python-1.2.2

python-1.2.1

[1.2.1] - 2026-04-28

Added

  • agent-framework-foundry-hosting: Add file data type support to hosted-agent Responses, refresh foundry-hosted-agents samples, and add response test coverage (#5485)
  • samples: Add requirements.txt and .env.example to the a2a/ hosting sample for pip-based setup (#5510)

Changed

  • dependencies: Update rich requirement from <15.0.0,>=13.7.1 to >=13.7.1,<16.0.0 in /python (#5227)
  • dependencies: Bump prek from 0.3.8 to 0.3.9 in /python (#5228)
  • dependencies: Bump python-multipart from 0.0.22 to 0.0.26 in /python (#5286)
  • dependencies: Bump pyasn1 from 0.6.2 to 0.6.3 in /python (#4748)
  • dependencies: Bump pytest from 9.0.2 to 9.0.3 in /python/packages/ag-ui (#5461)
  • dependencies: Bump pytest from 9.0.2 to 9.0.3 in /python/packages/devui (#5492)
  • dependencies: Bump pytest from 9.0.2 to 9.0.3 in /python/packages/lab (#5470)
  • dependencies: Bump uv from 0.11.3 to 0.11.6 in /python/packages/lab (#5469)
  • dependencies: Bump vite from 7.1.12 to 7.3.2 in /python/packages/devui/frontend (#5127)
  • dependencies: Bump vite from 7.1.12 to 7.3.2 in /python/samples/05-end-to-end/chatkit-integration/frontend (#5126)
  • dependencies: Bump postcss from 8.5.6 to 8.5.10 in /python/packages/devui/frontend (#5484)
  • dependencies: Bump postcss from 8.5.6 to 8.5.10 in /python/samples/05-end-to-end/chatkit-integration/frontend (#5491)
  • dependencies: Bump postcss from 8.5.6 to 8.5.12 in /python/samples/05-end-to-end/ag_ui_workflow_handoff/frontend (#5527)
  • dependencies: Bump picomatch from 4.0.3 to 4.0.4 in /python/packages/devui/frontend (#4921)
  • dependencies: Bump picomatch from 4.0.3 to 4.0.4 in /python/samples/05-end-to-end/ag_ui_workflow_handoff/frontend (#4936)

Fixed

  • agent-framework-core: Prevent inner_exception from being lost in AgentFrameworkException (#5167)

Full Changelog: microsoft/agent-framework@python-1.2.0...python-1.2.1

python-1.2.0

[1.2.0] - 2026-04-24

... (truncated)

Commits
  • f5419b9 Python: bump package versions for 1.2.2 release (#5561)
  • 03e47b5 Python: Fix spans not correctly nested when using streaming (#5552)
  • 46ab47b Python: Fix file_search citations breaking assistant history roundtrip (#5557)
  • 094f990 Python: Update package dependencies (#5555)
  • 8b71f94 Python: Feature/hosted dwf (#5531)
  • 866a325 Python: [BREAKING] Standardize orchestration terminal outputs as AgentRespons...
  • 40e90c9 .NET: Add HttpRequestAction support to declarative workflows (#5474)
  • 1e1eda6 [Python] Add agent-framework-azure-ai-contentunderstanding package (#4829)
  • 3a463b8 Python: bump package versions for 1.2.1 release (#5536)
  • 74a5ea8 Python: Bump prek from 0.3.8 to 0.3.9 in /python (#5228)
  • Additional commits viewable in compare view

Updates agent-framework from 1.0.1 to 1.2.2

Release notes

Sourced from agent-framework's releases.

python-1.2.2

[1.2.2] - 2026-04-29

Added

  • agent-framework-azure-contentunderstanding: New alpha package — Azure AI Content Understanding context provider that auto-analyzes file attachments (documents, images, audio, video) and injects structured results into the LLM context, with multi-document session state, configurable timeout, output filtering via AnalysisSection, and auto-registered list_documents / get_analyzed_document tools (#4829)
  • agent-framework-foundry-hosting: Add hosted Durable Workflow support — propagate full conversation history to workflow agents and wire Workflow.as_agent() end-to-end via the foundry hosting layer (#5531)

Changed

  • agent-framework-orchestrations: [BREAKING] Standardize orchestration terminal outputs as AgentResponse so Workflow.as_agent() returns the final answer only; aligns sequential-approval (with_request_info) and concurrent (intermediate_outputs=True) flows on the same output contract (#5301)
  • agent-framework-core, agent-framework-declarative: Preserve Workflow.run() shared state across calls so multi-turn WorkflowAgent invocations retain context, accept list[Message] input in the declarative start executor, and coerce Enum values when serializing PowerFx symbols (#5531)
  • dependencies: Update workspace package dependencies and preserve mcp[ws] / uvicorn[standard] extras through override-dependencies in /python (#5555)

Fixed

  • agent-framework-core: Fix observability spans not being correctly nested when using streaming (#5552)
  • agent-framework-openai: Fix file_search citations breaking the assistant-message history roundtrip — skip hosted_file content in the assistant role so the Responses API no longer rejects input_file (#5557)

Full Changelog: microsoft/agent-framework@python-1.2.1...python-1.2.2

python-1.2.1

[1.2.1] - 2026-04-28

Added

  • agent-framework-foundry-hosting: Add file data type support to hosted-agent Responses, refresh foundry-hosted-agents samples, and add response test coverage (#5485)
  • samples: Add requirements.txt and .env.example to the a2a/ hosting sample for pip-based setup (#5510)

Changed

  • dependencies: Update rich requirement from <15.0.0,>=13.7.1 to >=13.7.1,<16.0.0 in /python (#5227)
  • dependencies: Bump prek from 0.3.8 to 0.3.9 in /python (#5228)
  • dependencies: Bump python-multipart from 0.0.22 to 0.0.26 in /python (#5286)
  • dependencies: Bump pyasn1 from 0.6.2 to 0.6.3 in /python (#4748)
  • dependencies: Bump pytest from 9.0.2 to 9.0.3 in /python/packages/ag-ui (#5461)
  • dependencies: Bump pytest from 9.0.2 to 9.0.3 in /python/packages/devui (#5492)
  • dependencies: Bump pytest from 9.0.2 to 9.0.3 in /python/packages/lab (#5470)
  • dependencies: Bump uv from 0.11.3 to 0.11.6 in /python/packages/lab (#5469)
  • dependencies: Bump vite from 7.1.12 to 7.3.2 in /python/packages/devui/frontend (#5127)
  • dependencies: Bump vite from 7.1.12 to 7.3.2 in /python/samples/05-end-to-end/chatkit-integration/frontend (#5126)
  • dependencies: Bump postcss from 8.5.6 to 8.5.10 in /python/packages/devui/frontend (#5484)
  • dependencies: Bump postcss from 8.5.6 to 8.5.10 in /python/samples/05-end-to-end/chatkit-integration/frontend (#5491)
  • dependencies: Bump postcss from 8.5.6 to 8.5.12 in /python/samples/05-end-to-end/ag_ui_workflow_handoff/frontend (#5527)
  • dependencies: Bump picomatch from 4.0.3 to 4.0.4 in /python/packages/devui/frontend (#4921)
  • dependencies: Bump picomatch from 4.0.3 to 4.0.4 in /python/samples/05-end-to-end/ag_ui_workflow_handoff/frontend (#4936)

Fixed

  • agent-framework-core: Prevent inner_exception from being lost in AgentFrameworkException (#5167)

Full Changelog: microsoft/agent-framework@python-1.2.0...python-1.2.1

python-1.2.0

[1.2.0] - 2026-04-24

... (truncated)

Commits
  • f5419b9 Python: bump package versions for 1.2.2 release (#5561)
  • 03e47b5 Python: Fix spans not correctly nested when using streaming (#5552)
  • 46ab47b Python: Fix file_search citations breaking assistant history roundtrip (#5557)
  • 094f990 Python: Update package dependencies (#5555)
  • 8b71f94 Python: Feature/hosted dwf (#5531)
  • 866a325 Python: [BREAKING] Standardize orchestration terminal outputs as AgentRespons...
  • 40e90c9 .NET: Add HttpRequestAction support to declarative workflows (#5474)
  • 1e1eda6 [Python] Add agent-framework-azure-ai-contentunderstanding package (#4829)
  • 3a463b8 Python: bump package versions for 1.2.1 release (#5536)
  • 74a5ea8 Python: Bump prek from 0.3.8 to 0.3.9 in /python (#5228)
  • Additional commits viewable in compare view

Updates agent-framework from 1.0.1 to 1.2.2

Release notes

Sourced from agent-framework's releases.

python-1.2.2

[1.2.2] - 2026-04-29

Added

  • agent-framework-azure-contentunderstanding: New alpha package — Azure AI Content Understanding context provider that auto-analyzes file attachments (documents, images, audio, video) and injects structured results into the LLM context, with multi-document session state, configurable timeout, output filtering via AnalysisSection, and auto-registered list_documents / get_analyzed_document tools (#4829)
  • agent-framework-foundry-hosting: Add hosted Durable Workflow support — propagate full conversation history to workflow agents and wire Workflow.as_agent() end-to-end via the foundry hosting layer (#5531)

Changed

  • agent-framework-orchestrations: [BREAKING] Standardize orchestration terminal outputs as AgentResponse so Workflow.as_agent() returns the final answer only; aligns sequential-approval (with_request_info) and concurrent (intermediate_outputs=True) flows on the same output contract (#5301)
  • agent-framework-core, agent-framework-declarative: Preserve Workflow.run() shared state across calls so multi-turn WorkflowAgent invocations retain context, accept list[Message] input in the declarative start executor, and coerce Enum values when serializing PowerFx symbols (#5531)
  • dependencies: Update workspace package dependencies and preserve mcp[ws] / uvicorn[standard] extras through override-dependencies in /python (#5555)

Fixed

  • agent-framework-core: Fix observability spans not being correctly nested when using streaming (#5552)
  • agent-framework-openai: Fix file_search citations breaking the assistant-message history roundtrip — skip hosted_file content in the assistant role so the Responses API no longer rejects input_file (#5557)

Full Changelog: microsoft/agent-framework@python-1.2.1...python-1.2.2

python-1.2.1

[1.2.1] - 2026-04-28

Added

  • agent-framework-foundry-hosting: Add file data type support to hosted-agent Responses, refresh foundry-hosted-agents samples, and add response test coverage (#5485)
  • samples: Add requirements.txt and .env.example to the a2a/ hosting sample for pip-based setup (#5510)

Changed

  • dependencies: Update rich requirement from <15.0.0,>=13.7.1 to >=13.7.1,<16.0.0 in /python (#5227)
  • dependencies: Bump prek from 0.3.8 to 0.3.9 in /python (#5228)
  • dependencies: Bump python-multipart from 0.0.22 to 0.0.26 in /python (#5286)
  • dependencies: Bump pyasn1 from 0.6.2 to 0.6.3 in /python (#4748)
  • dependencies: Bump pytest from 9.0.2 to 9.0.3 in /python/packages/ag-ui (#5461)
  • dependencies: Bump pytest from 9.0.2 to 9.0.3 in /python/packages/devui (#5492)
  • dependencies: Bump pytest from 9.0.2 to 9.0.3 in /python/packages/lab (#5470)
  • dependencies: Bump uv from 0.11.3 to 0.11.6 in /python/packages/lab (#5469)
  • dependencies: Bump vite from 7.1.12 to 7.3.2 in /python/packages/devui/frontend (#5127)
  • dependencies: Bump vite from 7.1.12 to 7.3.2 in /python/samples/05-end-to-end/chatkit-integration/frontend (#5126)
  • dependencies: Bump postcss from 8.5.6 to 8.5.10 in /python/packages/devui/frontend (#5484)
  • dependencies: Bump postcss from 8.5.6 to 8.5.10 in /python/samples/05-end-to-end/chatkit-integration/frontend (#5491)
  • dependencies: Bump postcss from 8.5.6 to 8.5.12 in /python/samples/05-end-to-end/ag_ui_workflow_handoff/frontend (#5527)
  • dependencies: Bump picomatch from 4.0.3 to 4.0.4 in /python/packages/devui/frontend (#4921)
  • dependencies: Bump picomatch from 4.0.3 to 4.0.4 in /python/samples/05-end-to-end/ag_ui_workflow_handoff/frontend (#4936)

Fixed

  • agent-framework-core: Prevent inner_exception from being lost in AgentFrameworkException (#5167)

Full Changelog: microsoft/agent-framework@python-1.2.0...python-1.2.1

python-1.2.0

[1.2.0] - 2026-04-24

... (truncated)

Commits
  • f5419b9 Python: bump package versions for 1.2.2 release (#5561)
  • 03e47b5 Python: Fix spans not correctly nested when using streaming (#5552)
  • 46ab47b Python: Fix file_search citations breaking assistant history roundtrip (#5557)
  • 094f990 Python: Update package dependencies (#5555)
  • 8b71f94 Python: Feature/hosted dwf (#5531)
  • 866a325 Python: [BREAKING] Standardize orchestration terminal outputs as AgentRespons...
  • 40e90c9 .NET: Add HttpRequestAction support to declarative workflows (#5474)
  • 1e1eda6 [Python] Add agent-framework-azure-ai-contentunderstanding package (#4829)
  • 3a463b8 Python: bump package versions for 1.2.1 release (#5536)
  • 74a5ea8 Python: Bump prek from 0.3.8 to 0.3.9 in /python (#5228)
  • Additional commits viewable in compare view

Updates agent-framework from 1.0.1 to 1.2.2

Release notes

Sourced from agent-framework's releases.

python-1.2.2

[1.2.2] - 2026-04-29

Added

  • agent-framework-azure-contentunderstanding: New alpha package — Azure AI Content Understanding context provider that auto-analyzes file attachments (documents, images, audio, video) and injects structured results into the LLM context, with multi-document session state, configurable timeout, output filtering via AnalysisSection, and auto-registered list_documents / get_analyzed_document tools (#4829)
  • agent-framework-foundry-hosting: Add hosted Durable Workflow support — propagate full conversation history to workflow agents and wire Workflow.as_agent() end-to-end via the foundry hosting layer (#5531)

Changed

  • agent-framework-orchestrations: [BREAKING] Standardize orchestration terminal outputs as AgentResponse so Workflow.as_agent() returns the final answer only; aligns sequential-approval (with_request_info) and concurrent (intermediate_outputs=True) flows on the same output contract (#5301)
  • agent-framework-core, agent-framework-declarative: Preserve Workflow.run() shared state across calls so multi-turn WorkflowAgent invocations retain context, accept list[Message] input in the declarative start executor, and coerce Enum values when serializing PowerFx symbols (#5531)
  • dependencies: Update workspace package dependencies and preserve mcp[ws] / uvicorn[standard] extras through override-dependencies in /python (#5555)

Fixed

  • agent-framework-core: Fix observability spans not being correctly nested when using streaming (#5552)
  • agent-framework-openai: Fix file_search citations breaking the assistant-message history roundtrip — skip hosted_file content in the assistant role so the Responses API no longer rejects input_file (#5557)

Full Changelog: microsoft/agent-framework@python-1.2.1...python-1.2.2

python-1.2.1

[1.2.1] - 2026-04-28

Added

  • agent-framework-foundry-hosting: Add file data type support to hosted-agent Responses, refresh foundry-hosted-agents samples, and add response test coverage (#5485)
  • samples: Add requirements.txt and .env.example to the a2a/ hosting sample for pip-based setup (#5510)

Changed

  • dependencies: Update rich requirement from <15.0.0,>=13.7.1 to >=13.7.1,<16.0.0 in /python (#5227)
  • dependencies: Bump prek from 0.3.8 to 0.3.9 in /python (#5228)
  • dependencies: Bump python-multipart from 0.0.22 to 0.0.26 in /python (#5286)
  • dependencies: Bump pyasn1 from 0.6.2 to 0.6.3 in /python (#4748)
  • dependencies: Bump pytest from 9.0.2 to 9.0.3 in /python/packages/ag-ui (#5461)
  • dependencies: Bump pytest from 9.0.2 to 9.0.3 in /python/packages/devui (#5492)
  • dependencies: Bump pytest from 9.0.2 to 9.0.3 in /python/packages/lab (#5470)
  • dependencies: Bump uv from 0.11.3 to 0.11.6 in /python/packages/lab (#5469)
  • dependencies: Bump vite from 7.1.12 to 7.3.2 in /python/packages/devui/frontend (#5127)
  • dependencies: Bump vite from 7.1.12 to 7.3.2 in /python/samples/05-end-to-end/chatkit-integration/frontend (#5126)
  • dependencies: Bump postcss from 8.5.6 to 8.5.10 in /python/packages/devui/frontend (#5484)
  • dependencies: Bump postcss from 8.5.6 to 8.5.10 in /python/samples/05-end-to-end/chatkit-integration/frontend (#5491)
  • dependencies: Bump postcss from 8.5.6 to 8.5.12 in /python/samples/05-end-to-end/ag_ui_workflow_handoff/frontend (#5527)
  • dependencies: Bump picomatch from 4.0.3 to 4.0.4 in /python/packages/devui/frontend (#4921)
  • dependencies: Bump picomatch from 4.0.3 to 4.0.4 in /python/samples/05-end-to-end/ag_ui_workflow_handoff/frontend (#4936)

Fixed

  • agent-framework-core: Prevent inner_exception from being lost in AgentFrameworkException (#5167)

Full Changelog: microsoft/agent-framework@python-1.2.0...python-1.2.1

python-1.2.0

[1.2.0] - 2026-04-24

... (truncated)

Commits
  • f5419b9 Python: bump package versions for 1.2.2 release (#5561)
  • 03e47b5 Python: Fix spans not correctly nested when using streaming (#5552)
  • 46ab47b Python: Fix file_search citations breaking assistant history roundtrip (#5557)
  • 094f990 Python: Update package dependencies (#5555)
  • 8b71f94 Python: Feature/hosted dwf (#5531)
  • 866a325 Python: [BREAKING] Standardize orchestration terminal outputs as AgentRespons...
  • 40e90c9 .NET: Add HttpRequestAction support to declarative workflows (#5474)
  • 1e1eda6 [Python] Add agent-framework-azure-ai-contentunderstanding package (#4829)
  • 3a463b8 Python: bump package versions for 1.2.1 release (#5536)
  • 74a5ea8 Python: Bump prek from 0.3.8 to 0.3.9 in /python (#5228)
  • Additional commits viewable in compare view

Updates agent-framework from 1.0.1 to 1.2.2

Release notes

Sourced from agent-framework's releases.

python-1.2.2

[1.2.2] - 2026-04-29

Added

  • agent-framework-azure-contentunderstanding: New alpha package — Azure AI Content Understanding context provider that auto-analyzes file attachments (documents, images, audio, video) and injects structured results into the LLM context, with multi-document session state, configurable timeout, output filtering via AnalysisSection, and auto-registered list_documents / get_analyzed_document tools (#4829)
  • agent-framework-foundry-hosting: Add hosted Durable Workflow support — propagate full conversation history to workflow agents and wire Workflow.as_agent() end-to-end via the foundry hosting layer (#5531)

Changed

  • agent-framework-orchestrations: [BREAKING] Standardize orchestration terminal outputs as AgentResponse so Workflow.as_agent() returns the final answer only; aligns sequential-approval (with_request_info) and concurrent (intermediate_outputs=True) flows on the same output contract (#5301)
  • agent-framework-core, agent-framework-declarative: Preserve Workflow.run() shared state across calls so multi-turn WorkflowAgent invocations retain context, accept list[Message] input in the declarative start executor, and coerce Enum values when serializing PowerFx symbols (#5531)
  • dependencies: Update workspace package dependencies and preserve mcp[ws] / uvicorn[standard] extras through override-dependencies in /python (#5555)

Fixed

  • agent-framework-core: Fix observability spans not being correctly nested when using streaming (#5552)
  • agent-framework-openai: Fix file_search citations breaking the assistant-message history roundtrip — skip hosted_file content in the assistant role so the Responses API no longer rejects input_file (#5557)

Full Changelog: microsoft/agent-framework@python-1.2.1...python-1.2.2

python-1.2.1

[1.2.1] - 2026-04-28

Added

  • agent-framework-foundry-hosting: Add file data type support to hosted-agent Responses, refresh foundry-hosted-agents samples, and add response test coverage (#5485)
  • samples: Add requirements.txt and .env.example to the a2a/ hosting sample for pip-based setup (#5510)

Changed

  • dependencies: Update rich requirement from <15.0.0,>=13.7.1 to >=13.7.1,<16.0.0 in /python (#5227)
  • dependencies: Bump prek from 0.3.8 to 0.3.9 in /python (#5228)
  • dependencies: Bump python-multipart from 0.0.22 to 0.0.26 in /python (#5286)
  • dependencies: Bump pyasn1 from 0.6.2 to 0.6.3 in /python (#4748)
  • dependencies: Bump pytest from 9.0.2 to 9.0.3 in /python/packages/ag-ui (#5461)
  • dependencies: Bump pytest from 9.0.2 to 9.0.3 in /python/packages/devui (#5492)
  • dependencies: Bump pytest from 9.0.2 to 9.0.3 in /python/packages/lab (#5470)
  • dependencies: Bump uv from 0.11.3 to 0.11.6 in /python/packages/lab (#5469)
  • dependencies: Bump vite from 7.1.12 to 7.3.2 in /python/packages/devui/frontend (#5127)
  • dependencies: Bump vite from 7.1.12 to 7.3.2 in /python/samples/05-end-to-end/chatkit-integration/frontend (#5126)
  • dependencies: Bump postcss from 8.5.6 to 8.5.10 in /python/packages/devui/frontend (#5484)
  • dependencies: Bump postcss from 8.5.6 to 8.5.10 in /python/samples/05-end-to-end/chatkit-integration/frontend (#5491)
  • dependencies: Bump postcss from 8.5.6 to 8.5.12 in /python/samples/05-end-to-end/ag_ui_workflow_handoff/frontend (#5527)
  • dependencies: Bump picomatch from 4.0.3 to 4.0.4 in /python/packages/devui/frontend (#4921)
  • dependencies: Bump picomatch from 4.0.3 to 4.0.4 in /python/samples/05-end-to-end/ag_ui_workflow_handoff/frontend (#4936)

Fixed

  • agent-framework-core: Prevent inner_exception from being lost in AgentFrameworkException (#5167)

Full Changelog: microsoft/agent-framework@python-1.2.0...python-1.2.1

python-1.2.0

[1.2.0] - 2026-04-24

... (truncated)

Commits
  • f5419b9 Python: bump package versions for 1.2.2 release (#5561)
  • 03e47b5 Python: Fix spans not correctly nested when using streaming (#5552)
  • 46ab47b Python: Fix file_search citations breaking assistant history roundtrip (#5557)
  • 094f990 Python: Update package dependencies (#5555)
  • 8b71f94 Python: Feature/hosted dwf (#5531)
  • 866a325 Python: [BREAKING] Standardize orchestration terminal outputs as AgentRespons...
  • 40e90c9 .NET: Add HttpRequestAction support to declarative workflows (#5474)
  • 1e1eda6 [Python] Add agent-framework-azure-ai-contentunderstanding package (#4829)
  • 3a463b8 Python: bump package versions for 1.2.1 release (#5536)
  • 74a5ea8 Python: Bump prek from 0.3.8 to 0.3.9 in /python (#5228)
  • Additional commits viewable in compare view

Updates agent-framework from 1.0.1 to 1.2.2

Release notes

Sourced from agent-framework's releases.

python-1.2.2

[1.2.2] - 2026-04-29

Added

  • agent-framework-azure-contentunderstanding: New alpha package — Azure AI Content Understanding context provider that auto-analyzes file attachments (documents, images, audio, video) and injects structured results into the LLM context, with multi-document session state, configurable timeout, output filtering via AnalysisSection, and auto-registered list_documents / get_analyzed_document tools (#4829)
  • agent-framework-foundry-hosting: Add hosted Durable Workflow support — propagate full conversation history to workflow agents and wire Workflow.as_agent() end-to-end via the foundry hosting layer (#5531)

Changed

  • agent-framework-orchestrations: [BREAKING] Standardize orchestration terminal outputs as AgentResponse so Workflow.as_agent() returns the final answer only; aligns sequential-approval (with_request_info) and concurrent (intermediate_outputs=True) flows on the same output contract (#5301)
  • agent-framework-core, agent-framework-declarative: Preserve Workflow.run() shared state across calls so multi-turn WorkflowAgent invocations retain context, accept list[Message] input in the declarative start executor, and coerce Enum values when serializing PowerFx symbols (#5531)
  • dependencies: Update workspace package dependencies and preserve mcp[ws] / uvicorn[standard] extras through override-dependencies in /python (#5555)

Fixed

  • agent-framework-core: Fix observability spans not being correctly nested when using streaming (#5552)
  • agent-framework-openai: Fix file_search citations breaking the assistant-message history roundtrip — skip hosted_file content in the assistant role so the Responses API no longer rejects input_file (#5557)

Full Changelog: microsoft/agent-framework@python-1.2.1...python-1.2.2

python-1.2.1

[1.2.1] - 2026-04-28

Added

  • agent-framework-foundry-hosting: Add file data type support to hosted-agent Responses, refresh foundry-hosted-agents samples, and add response test coverage (#5485)
  • samples: Add requirements.txt and .env.example to the a2a/ hosting sample for pip-based setup (#5510)

Changed

  • dependencies: Update rich requirement from <15.0.0,>=13.7.1 to >=13.7.1,<16.0.0 in /python (#5227)
  • dependencies: Bump prek from 0.3.8 to 0.3.9 in /python (#5228)
  • dependencies: Bump python-multipart from 0.0.22 to 0.0.26 in /python (#5286)
  • dependencies: Bump pyasn1 from 0.6.2 to 0.6.3 in /python (#4748)
  • dependencies: Bump pytest from 9.0.2 to 9.0.3 in /python/packages/ag-ui (#5461)
  • dependencies: Bump pytest from 9.0.2 to 9.0.3 in /python/packages/devui (#5492)
  • dependencies: Bump pytest from 9.0.2 to 9.0.3 in /python/packages/lab (#5470)
  • dependencies: Bump uv from 0.11.3 to 0.11.6 in /python/packages/lab (#5469)
  • dependencies: Bump vite from 7.1.12 to 7.3.2 in /python/packages/devui/frontend (#5127)
  • dependencies: Bump vite from 7.1.12 to 7.3.2 in /python/samples/05-end-to-end/chatkit-integration/frontend (#5126)
  • dependencies: Bump postcss from 8.5.6 to 8.5.10 in /python/packages/devui/frontend (#5484)
  • dependencies: Bump postcss from 8.5.6 to 8.5.10 in /python/samples/05-end-to-end/chatkit-integration/frontend (#5491)
  • dependencies: Bump postcss from 8.5.6 to 8.5.12 in /python/samples/05-end-to-end/ag_ui_workflow_handoff/frontend (#5527)
  • dependencies: Bump picomatch from 4.0.3 to 4.0.4 in /python/packages/devui/frontend (#4921)
  • dependencies: Bump picomatch from 4.0.3 to 4.0.4 in /python/samples/05-end-to-end/ag_ui_workflow_handoff/frontend (#4936)

Fixed

  • agent-framework-core: Prevent inner_exception from being lost in AgentFrameworkException (#5167)

Full Changelog: microsoft/agent-framework@python-1.2.0...python-1.2.1

python-1.2.0

[1.2.0] - 2026-04-24

... (truncated)

Commits
  • f5419b9 Python: bump package versions for 1.2.2 release (#5561)
  • 03e47b5 Python: Fix spans not correctly nested when using streaming (#5552)
  • 46ab47b Python: Fix file_search citations breaking assistant history roundtrip (#5557)
  • 094f990 Python: Update package dependencies (#5555)
  • 8b71f94 Python: Feature/hosted dwf (#5531)
  • 866a325 Python: [BREAKING] Standardize orchestration terminal outputs as AgentRespons...
  • 40e90c9 .NET: Add HttpRequestAction support to declarative workflows (#5474)

Bumps [agent-framework](https://github.com/microsoft/agent-framework) in `/apps/crm-campaign-intelligence/src` from 1.0.1 to 1.2.2.


Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

Updates `agent-framework` from 1.0.1 to 1.2.2
- [Release notes](https://github.com/microsoft/agent-framework/releases)
- [Commits](microsoft/agent-framework@python-1.0.1...python-1.2.2)

---
updated-dependencies:
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
- dependency-name: agent-framework
  dependency-version: 1.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: uv
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Python code quality labels May 4, 2026
@Cataldir
Copy link
Copy Markdown
Contributor

Cataldir commented May 9, 2026

@dependabot rebase

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 9, 2026

Sorry, the 'unknown' group has been removed from your config so we do not know how to rebase this PR.

@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github May 13, 2026

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Python code quality

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant