Merged
Conversation
Bump version from 1.17.0rc5 to 1.17.0 across all packages: - Main SDK (dapr) - All extensions (workflow, fastapi, grpc, flask, langgraph, strands) - Example requirements Signed-off-by: Nelson Parente <nelson_parente@live.com.pt>
1e27483 to
48dfb35
Compare
Add explicit --dapr-http-port and --dapr-grpc-port to both receiver and publisher apps to prevent random port collisions when running concurrently in CI. Remove deprecated docker-compose version attribute. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Nelson Parente <nelson_parente@live.com.pt>
Add explicit --dapr-http-port and --dapr-grpc-port flags to all three cross-app workflow example blocks to prevent random port collisions when running concurrently in CI. Signed-off-by: Nelson Parente <nelson_parente@live.com.pt>
Signed-off-by: Nelson Parente <nelson_parente@live.com.pt>
The sort -r on GitHub API release output caused prerelease versions (e.g. 1.17.0-rc.9) to sort lexicographically above stable releases (1.17.0). The GitHub API already returns releases sorted by creation date (newest first), so the sort was unnecessary and harmful. Signed-off-by: Nelson Parente <nelson_parente@live.com.pt>
GitHub CDN can return EOF errors when downloading release assets, especially for newly published releases. Retry up to 3 times with a 10 second delay between attempts. Signed-off-by: Nelson Parente <nelson_parente@live.com.pt>
sicoyle
reviewed
Feb 27, 2026
|
|
||
| ```bash | ||
| dapr run --app-id receiver --app-protocol grpc --app-port 50051 --resources-path ./components python3 invoke-input-binding.py | ||
| dapr run --app-id receiver --app-protocol grpc --app-port 50051 --dapr-http-port 3501 --dapr-grpc-port 50101 --resources-path ./components python3 invoke-input-binding.py |
Contributor
There was a problem hiding this comment.
were all of these failing without these flags?
Author
There was a problem hiding this comment.
yes, apparently we had port conflicts which is weird 🤷
Contributor
There was a problem hiding this comment.
I've actually experienced similar with dapr-agents when executing e2e tests..
Closed
…failures" This reverts commit 23177c7. Signed-off-by: Nelson Parente <nelson_parente@live.com.pt>
1fbe8d1 to
e38e95c
Compare
CasperGN
approved these changes
Feb 27, 2026
acroca
reviewed
Mar 2, 2026
| - name: Determine latest Dapr Runtime version (including prerelease) | ||
| run: | | ||
| RUNTIME_VERSION=$(curl -s "https://api.github.com/repos/dapr/dapr/releases" | sort -r | grep '"tag_name"' | head -n 1 | cut -d ':' -f2 | tr -d '",v ') | ||
| RUNTIME_VERSION=$(curl -s "https://api.github.com/repos/dapr/dapr/releases" | grep '"tag_name"' | head -n 1 | cut -d ':' -f2 | tr -d '",v ') |
Member
There was a problem hiding this comment.
The sort fixes the case where releasing a new 1.16 version would show up first on the list. Sorting alphabetically forces the list to show 1.17 first. We need to find a better solution and not just remove it.
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
Bump version from
1.17.0rc5to1.17.0across all packages for the GA release.Files updated (17 files)
dapr/version/version.pydapr >= 1.17.0CI fixes included
--dapr-http-portand--dapr-grpc-portto receiver and publisher to prevent random port collisions in CI. Removed deprecatedversion: '2'from docker-compose.--dapr-http-portand--dapr-grpc-portto all three cross-app workflow example blocks to prevent port collisions when running concurrently.sort -rfrom runtime/CLI version detection invalidate_examples.yaml. The GitHub API already returns releases sorted by creation date, and lexicographic sorting incorrectly ranked1.17.0-rc.9above1.17.0.Release process
After merging, tag with
v1.17.0to trigger PyPI publish viabuild-tag.yamlworkflow.Test plan
🤖 Generated with Claude Code