fix(deps): move the uipath-runtime range to 0.13 on the 2.13 line - #1878
Merged
Conversation
Releases 2.13.23 with 2.13.22's source and one dependency range moved: - uipath-runtime: >=0.12.2,<0.13.0 -> >=0.13.0,<0.14.0 Consumers that must stay on this line have no way to reach uipath-runtime 0.13.x otherwise, since every published 2.13.x caps it below 0.13.0 and published metadata is immutable. The range moves rather than widens, so it stays within a single minor. 2.13.22's source is unchanged and its full test suite passes against uipath-runtime 0.13.2. Cut from c9b2428, the commit that built 2.13.22.
Contributor
There was a problem hiding this comment.
🟢 Approval recommended
Pull request overview
This PR prepares the uipath package for a 2.13.x hotfix release that moves the uipath-runtime dependency range to the 0.13 minor line, allowing consumers pinned to uipath==2.13.* to resolve uipath-runtime 0.13.x.
Changes:
- Bump
uipathpackage version from 2.13.22 → 2.13.23. - Update
uipath-runtimedependency constraint from>=0.12.2,<0.13.0→>=0.13.0,<0.14.0(move, not widen). - Refresh
uv.lockto reflect the updated constraint and pinuipath-runtimeto 0.13.2.
File summaries
| File | Description |
|---|---|
| packages/uipath/pyproject.toml | Bumps package version and moves the uipath-runtime dependency range to 0.13.*. |
| packages/uipath/uv.lock | Updates locked metadata to match 2.13.23 and pins uipath-runtime==0.13.2. |
Review details
- Files reviewed: 1/2 changed files
- Comments generated: 0
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
ionut-mihalache-uipath
approved these changes
Sep 1, 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.
Releases
uipath2.13.23: 2.13.22's source with one dependency range moved.Why
Every published release on the 2.13 line caps
uipath-runtimebelow 0.13.0, and 2.14.0 is the first release that moved past it. A consumer that has to stay on this line therefore cannot reachuipath-runtime0.13.x at all: there is oneuipath-runtimein an environment, and 0.13.x does not satisfy<0.13.0, so resolution is unsatisfiable.Published metadata is immutable, so the range cannot be corrected by editing 2.13.22. It needs a new release on the line, which is what this is.
Note that the range moves rather than widens.
>=0.12.2, <0.14.0would span two minors and let a resolver pair this build with either runtime generation;>=0.13.0, <0.14.0states exactly one.Compatibility
The source is unchanged from 2.13.22, and it was never released against
uipath-runtime0.13.x, so that pairing is verified by running it rather than by a prior release: the fullpackages/uipathsuite passes against 0.13.2, exit 0, no failures.Branch
Cut from
c9b2428a, the commit that built 2.13.22, per the open-source hotfix procedure. Base branch is that same commit. Not formain, which is on 2.14.x.The base branch is named
base/uipath-2.13.22rather thanrelease/uipath-2.13.22only because therelease/*namespace is covered by the Actions ruleset, which requires a pull request for any update and so blocks creating the branch at all. The earlier 2.11.19 hotfix used a non-releaseprefix for the same reason. Happy to move it if someone with bypass creates therelease/branch.Versioning
2.13.22 is the latest release on the line and 2.13.23 is free on PyPI, so this is a patch increment rather than a post-release.
Verification
uv lockinpackages/uipathpinned atuipath-runtime==0.13.2uv sync --locked --all-extrascleanpackages/uipathsuite green against 0.13.2The lockfile is pinned at 0.13.2 rather than the newest 0.13.x so CI exercises the exact runtime this release is cut for.
Publishing
CD is
workflow_dispatch, anddetect_publishable_packages.pypublishes any version that 404s on PyPI, reading whatever ref the run checked out. Dispatch it against this hotfix branch; merging into the base branch triggers nothing.