Prepare durable extension RC package versions - #58
Open
Chris Gillum (cgillum) wants to merge 2 commits into
Open
Prepare durable extension RC package versions#58Chris Gillum (cgillum) wants to merge 2 commits into
Chris Gillum (cgillum) wants to merge 2 commits into
Conversation
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: db064c3a-adc6-4a6e-a1ad-d0fda542e7ce
Contributor
There was a problem hiding this comment.
Pull request overview
Prepares this repository for publishing the next prerelease (“RC”) versions of the Durable extension packages as publishing ownership moves into microsoft/agent-framework-durable-extension, aligning version numbers and NuGet package-validation baseline with the latest published preview.
Changes:
- Promote .NET packages to
1.16.0-rc1viaIsReleaseCandidate=trueand updated central NuGet version metadata/baseline. - Promote Python packages to
1.0.0rc1, including updating the Azure Functions package’s dependency floor onagent-framework-durabletask. - Add
v1.16.0-rc1sections to the .NET package changelogs.
Reviewed changes
Copilot reviewed 8 out of 9 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| python/uv.lock | Updates workspace package versions to 1.0.0rc1 in the lockfile. |
| python/pyproject.toml | Bumps the Python workspace/meta version to 1.0.0rc1. |
| python/packages/durabletask/pyproject.toml | Bumps agent-framework-durabletask to 1.0.0rc1. |
| python/packages/azurefunctions/pyproject.toml | Bumps agent-framework-azurefunctions to 1.0.0rc1 and raises the durabletask dependency floor to >=1.0.0rc1. |
| dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/Microsoft.Agents.AI.Hosting.AzureFunctions.csproj | Marks the project as an RC build (IsReleaseCandidate=true). |
| dotnet/src/Microsoft.Agents.AI.Hosting.AzureFunctions/CHANGELOG.md | Introduces v1.16.0-rc1 changelog section for Azure Functions hosting package. |
| dotnet/src/Microsoft.Agents.AI.DurableTask/Microsoft.Agents.AI.DurableTask.csproj | Marks the project as an RC build (IsReleaseCandidate=true). |
| dotnet/src/Microsoft.Agents.AI.DurableTask/CHANGELOG.md | Introduces v1.16.0-rc1 changelog section for DurableTask package. |
| dotnet/nuget/nuget-package.props | Updates NuGet version prefix/tag and sets the package validation baseline to 1.16.0-preview.260730.1. |
Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: db064c3a-adc6-4a6e-a1ad-d0fda542e7ce
Laveesh Rohra (larohra)
approved these changes
Jul 31, 2026
Chris Gillum (cgillum)
marked this pull request as ready for review
July 31, 2026 16:27
Shyju Krishnankutty (kshyju)
approved these changes
Jul 31, 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.
Why
Package publishing is moving from
microsoft/agent-frameworkto this repository. The versions originally copied during extraction have already been published and are immutable, so this repository needs the next ordered prerelease versions before its first deployment.What
Promote both .NET packages to
1.16.0-rc1and both Python packages to1.0.0rc1. Keep the Azure Functions Python package coupled to the matching Durable Task RC, and align release metadata, changelogs, lock data, and the NuGet package-validation baseline with the latest published preview.Compatibility
Package IDs and Python distribution names remain unchanged. These RC versions sort after the existing
1.16.0-preview.260730.1NuGet packages and1.0.0b260721PyPI packages, preserving the established version line during the repository handoff.Reviewer focus
Please verify the RC lifecycle choice, the cross-package Python dependency floor, and the use of
1.16.0-preview.260730.1as the initial NuGet compatibility baseline.