chore: Update all Python packages to latest stable versions across entire repository#14
Open
devin-ai-integration[bot] wants to merge 1 commit intomainfrom
Open
Conversation
Updates across all 6 Python components: - ska_utils: Updated all dependencies to latest versions - sk-agents: Updated semantic-kernel (1.33.0→1.37.0) and a2a-sdk (0.2.4→0.3.7) - Fixed breaking changes in a2a-sdk: updated import path and field naming - assistant-orchestrator (orchestrator + services): Updated all dependencies - collab-orchestrator: Updated all dependencies - workflow-orchestrator: Updated dapr-ext-workflow (0.5.0→1.16.0) - Updated Python requirement from >=3.11 to >=3.12 for consistency Major version updates: - semantic-kernel: 1.33.0 → 1.37.0 - a2a-sdk: 0.2.4 → 0.3.7 (with API breaking changes addressed) - dapr-ext-workflow: 0.5.0 → 1.16.0 - opentelemetry packages: 1.29.0 → 1.37.0 - pydantic: 2.11.0a1 → 2.11.9 All tests passing: - ska_utils: 68 tests passed - sk-agents: 162 tests passed - assistant-orchestrator: 46 tests passed - collab-orchestrator: 33 tests passed Co-Authored-By: jussi.pollari@merck.com <jussipol@yahoo.com>
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
This PR updates all Python packages to their latest stable versions across the entire Teal Agents repository. The update removes explicit version pins for
semantic-kernel,a2a-sdk, anddapr-ext-workflowas requested and addresses breaking changes discovered during the update process.Requested by: @thepollari
Link to Devin run: https://app.devin.ai/sessions/7dc06efd48c342baba349148633c2d56
Changes
Components Updated (6 total):
shared/ska_utils- Updated all dependencies to latest versions (68 tests passed)src/sk-agents- Updated with breaking change fixes (162 tests passed)src/orchestrators/assistant-orchestrator/orchestrator- Updated all dependencies (46 tests passed)src/orchestrators/assistant-orchestrator/services- Updated all dependenciessrc/orchestrators/collab-orchestrator/orchestrator- Updated all dependencies (33 tests passed)src/orchestrators/workflow-orchestrator/orchestrator- Updated with Python version requirement changeMajor Version Updates:
semantic-kernel: 1.33.0 → 1.37.0 (4 minor versions)a2a-sdk: 0.2.4 → 0.3.7 (breaking changes addressed)dapr-ext-workflow: 0.5.0 → 1.16.0 (major version jump)opentelemetry-*packages: 1.29.0 → 1.37.0Breaking Changes Fixed:
a2a.server.apps.starlette_apptoa2a.server.apps.jsonrpc.starlette_appdocumentationUrl→documentation_url,pushNotifications→push_notifications, etc.)>=3.11to>=3.12for consistency with other componentsType of Change
Human Review Checklist
a2a.server.apps.starlette_appdocumentationUrl,pushNotifications,defaultInputModes, etc.📋 Additional Review Points:
Additional Comments
All existing tests pass, but this is a comprehensive update across the entire repository. The breaking changes in a2a-sdk were discovered during testing and have been addressed, but given the major version jumps in several packages, additional validation in your specific environment is recommended.