chore: Update semantic-kernel to 1.39.3#167
Merged
pontemonti merged 4 commits intomainfrom Feb 6, 2026
Merged
Conversation
- Update semantic-kernel constraint from >=1.0.0 to >=1.39.3 - Add override-dependencies to resolve azure-ai-projects version conflict (semantic-kernel 1.39.3 constrains azure-ai-projects~=1.0.0b12 but we need >=2.0.0b1) - The override is safe as the functionality is compatible; only the version constraint was tightened in SK
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the workspace’s dependency resolution to use semantic-kernel==1.39.3 (via constraints) while keeping azure-ai-projects on the required 2.x line despite semantic-kernel’s tighter transitive constraint.
Changes:
- Raised the global
semantic-kernelconstraint to>=1.39.3. - Added a uv override to force
azure-ai-projects >= 2.0.0b1during resolution. - Regenerated
uv.lockto reflect the newsemantic-kernelversion and the override.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated no comments.
| File | Description |
|---|---|
| uv.lock | Updates the locked semantic-kernel version to 1.39.3 and records an azure-ai-projects override in the manifest. |
| pyproject.toml | Raises the centralized semantic-kernel constraint and adds override-dependencies to keep azure-ai-projects on 2.x. |
mrunalhirve128
previously approved these changes
Feb 6, 2026
tmlsousa
approved these changes
Feb 6, 2026
mrunalhirve128
approved these changes
Feb 6, 2026
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.
Summary
Updates semantic-kernel from 1.37.1 to 1.39.3 to address security vulnerabilities.
Changes
Technical Details
Semantic-kernel 1.39.3 constrains \�zure-ai-projects~=1.0.0b12\ (i.e., <1.1.0), but this repository requires \�zure-ai-projects >= 2.0.0b1\ for azure-ai-agents integration.
Investigation shows that semantic-kernel 1.37.1 had \�zure-ai-projects>=1.0.0b12\ (no upper bound), while 1.39.3 tightened this to ~=1.0.0b12. The underlying functionality is compatible with azure-ai-projects 2.x; only the version constraint was tightened. The override allows us to use both packages at their required versions.
Verification