This document describes the release process for the Dapr Python SDK.
A single tag (v*) triggers the release of all packages published from this repository:
| PyPI package |
|---|
dapr (core SDK) |
dapr-ext-workflow |
dapr-ext-grpc |
dapr-ext-fastapi |
flask_dapr |
dapr-ext-langgraph |
dapr-ext-strands |
You can also create the tag via a GitHub Release, which auto-creates the tag and provides a changelog UI.
Releases follow a branching model where main is always the development trunk.
When a version is ready to enter stabilisation, a release-X.Y branch is forked from main.
From that point on, all changes land in main first and are backported to the release branch
as needed. Release candidates and the final stable release are all cut from that branch.
main ──●──●──●──●──●──●──●──●──●──●──▶
│ (prev).dev X.Y.0.dev
│ (fork) ↑
release-X.Y ●──●────●───●───●───●──▶
│ ↑ ↑ ↑
│ rc0 rc1 X.Y.0
│
first commit on release-X.Y:
- versions (prev).dev → X.Y.0rc0
- dapr deps >=(prev).dev → >=X.Y.0rc0
simultaneously on main:
- versions (prev).dev → X.Y.0.dev
- dapr deps >=(prev).dev → >=X.Y.0.dev
Every package in this repository has one version file and, for extensions, one setup.cfg
dependency line that must be kept in sync during a release.
Version files (set __version__):
dapr/version/version.pyext/dapr-ext-workflow/dapr/ext/workflow/version.pyext/dapr-ext-grpc/dapr/ext/grpc/version.pyext/dapr-ext-fastapi/dapr/ext/fastapi/version.pyext/dapr-ext-langgraph/dapr/ext/langgraph/version.pyext/dapr-ext-strands/dapr/ext/strands/version.pyext/flask_dapr/flask_dapr/version.py
Dependency lower bounds in extension setup.cfg files (each has dapr >= <version>):
ext/dapr-ext-workflow/setup.cfgext/dapr-ext-grpc/setup.cfgext/dapr-ext-fastapi/setup.cfgext/dapr-ext-langgraph/setup.cfgext/dapr-ext-strands/setup.cfgext/flask_dapr/setup.cfg
| Stage | __version__ example |
dep lower bound example |
|---|---|---|
Development (always on main) |
1.17.0.dev |
dapr >= 1.17.0.dev |
First RC (on release-X.Y) |
1.17.0rc0 |
dapr >= 1.17.0rc0 |
Subsequent RCs (on release-X.Y) |
1.17.0rc1, 1.17.0rc2, … |
dapr >= 1.17.0rc1 |
| Stable release | 1.17.0 |
dapr >= 1.17.0 |
| Patch release candidate | 1.17.1rc1 |
dapr >= 1.17.1rc1 |
| Stable patch release | 1.17.1 |
dapr >= 1.17.1 |
All commands below use upstream to refer to the canonical Dapr repository
(https://github.com/dapr/python-sdk), not your personal fork.
If your local remote is named differently, substitute accordingly.
Perform this when the current main is ready to start the stabilisation cycle for version X.Y.
git checkout main
git pull upstream main
git checkout -b release-X.Y
git push upstream release-X.YOn the newly created release-X.Y branch, open a PR targeting release-X.Y that does:
- In all seven version files: change
X.Y.0.dev→X.Y.0rc0 - In all six extension
setup.cfgfiles: changedapr >= X.Y.0.dev→dapr >= X.Y.0rc0
Open a PR targeting main to align it with the new release version:
- In all seven version files: change the previous dev version to
X.Y.0.dev - In all six extension
setup.cfgfiles: change the previousdapr >= ...devtodapr >= X.Y.0.dev
Once the version bump PR on release-X.Y is merged, create and push the tag from the
tip of release-X.Y:
git checkout release-X.Y
git pull upstream release-X.Y
git tag vX.Y.0rc0 && git push upstream vX.Y.0rc0The tag push triggers the dapr-python-release workflow which builds and uploads
all packages to PyPI.
Perform this when you want to publish X.Y.0rcN (N ≥ 1) from an existing release-X.Y branch.
Open a PR targeting release-X.Y that does:
- In all seven version files: change
X.Y.0rc(N-1)→X.Y.0rcN - In all six extension
setup.cfgfiles: changedapr >= X.Y.0rc(N-1)→dapr >= X.Y.0rcN
Once the PR is merged:
git checkout release-X.Y
git pull upstream release-X.Y
git tag vX.Y.0rcN && git push upstream vX.Y.0rcNPerform this when release-X.Y is ready to ship a stable version — whether that is the
initial X.Y.0 or a patch release (X.Y.1, X.Y.2, …).
Open a PR targeting release-X.Y that does:
- In all seven version files: change
X.Y.ZrcN→X.Y.Z(drop thercNsuffix) - In all six extension
setup.cfgfiles: changedapr >= X.Y.ZrcN→dapr >= X.Y.Z
Once the PR is merged:
git checkout release-X.Y
git pull upstream release-X.Y
git tag vX.Y.Z && git push upstream vX.Y.ZAlternatively, create a GitHub Release targeting release-X.Y with tag vX.Y.Z — this
creates the tag and triggers the publish workflow automatically.
Bug fixes and small improvements that should appear in both main and an active release
branch are backported automatically.
- Open your PR targeting
mainas usual. - Once merged, add a label of the form
backport release-X.Yto the PR. The backport workflow will open a new PR againstrelease-X.Yautomatically. - Review and merge the backport PR on
release-X.Y.
You can also add the label before merging; the workflow will start once the PR is closed as merged.
The backport workflow can target any
release-*branch, so patches can be applied to older releases if needed.