PrefectHQ
prefect
Blog
Docs
Changelog
Blog
Docs
Changelog
Overview
Branches
Benchmarks
Runs
Performance History
Latest Results
fix(events): also escape literal backslashes in LIKE translation Without this, a literal backslash in a label value would be misinterpreted as the LIKE escape character. Add backslash → double- backslash to the translation table so backslash-containing values remain searchable.
devin/1781259285-fix-like-escape-sqlite
4 hours ago
fix: reshape regression test and polish naming Regression test now reproduces the actual failure mode: - chunk-0 fails on attempt 1 before calling child (never cached) - chunk-1..3 complete, their subflows occupy tracking task keys - On attempt 2, chunk-1..3 are served from INPUTS cache while chunk-0 re-executes and must call its own child subflow - Asserts chunk-0 got the correct result AND child actually ran Also: - Rename explicit_key -> dynamic_key in flow_engine for clarity - Broaden comment: not specific to task.submit(), applies to any task context where sibling call order is nondeterministic - Add docstring on Task.create_run(dynamic_key=...) explaining idempotency via (flow_run_id, task_key, dynamic_key) natural key Co-authored-by: nate nowack <thrast36@gmail.com>
devin/1781175217-fix-subflow-dynamic-key-race
6 hours ago
refactor: replace stable param with explicit dynamic_key override Remove the vague `stable` boolean from Task.create_run and instead: - Add `dynamic_key: str | None` — when provided, used directly for task-run identity without computing one internally. - Compute the UUID key in the flow engine via `dynamic_key_for_task_run(..., stable=False)` and pass it explicitly, making the identity strategy visible at the call site. - Task-run naming is now always `{name}-{dynamic_key}` regardless of key type, decoupling display from identity. Co-authored-by: nate nowack <thrast36@gmail.com>
devin/1781175217-fix-subflow-dynamic-key-race
20 hours ago
test: add regression test for wrong-result adoption on retry Replace implementation-detail tests with a regression test that reproduces the actual failure mode: concurrent subflow calls via submitted wrapper tasks return wrong persisted results on parent retry due to positional dynamic_key collision. Also: - Document stable param on Task.create_run - Add clarifying comment for dynamic_key[:3] truncation - Add async path unit assertion for UUID key forwarding Co-authored-by: nate nowack <thrast36@gmail.com>
devin/1781175217-fix-subflow-dynamic-key-race
20 hours ago
fix: Preserve original exception cause in timeout context managers (closes #16299)
botbikamordehai2-sketch:fix/issue-16299-1781182461
1 day ago
fix: only use UUID dynamic keys for subflows in task context Sequential subflow calls (no TaskRunContext) keep stable counter keys to preserve the retry optimization. UUID keys are only used when a subflow is called from within a task (concurrent context) where the counter is nondeterministic.
devin/1781175217-fix-subflow-dynamic-key-race
1 day ago
fix(ui-v2): prevent activity chart tooltip from being clipped in deployments table (#22257) Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Nate Nowack <nate@prefect.io>
main
1 day ago
chore(deps): bump the uv-dependencies group with 10 updates Bumps the uv-dependencies group with 10 updates: | Package | From | To | | --- | --- | --- | | [cryptography](https://github.com/pyca/cryptography) | `48.0.0` | `48.0.1` | | [cyclopts](https://github.com/BrianPugh/cyclopts) | `4.16.1` | `4.17.0` | | [uv](https://github.com/astral-sh/uv) | `0.11.19` | `0.11.20` | | [prefect-shell](https://github.com/PrefectHQ/prefect) | `0.3.5` | `0.3.6` | | [prefect-dask](https://github.com/PrefectHQ/prefect) | `0.3.6` | `0.3.7` | | [prefect-github](https://github.com/PrefectHQ/prefect) | `0.4.2` | `0.4.3` | | [prefect-dbt](https://github.com/PrefectHQ/prefect) | `0.7.24` | `0.7.25` | | [prefect-snowflake](https://github.com/PrefectHQ/prefect) | `0.28.7` | `0.28.8` | | [moto](https://github.com/getmoto/moto) | `5.2.1` | `5.2.2` | | [ruff](https://github.com/astral-sh/ruff) | `0.15.15` | `0.15.16` | Updates `cryptography` from 48.0.0 to 48.0.1 - [Changelog](https://github.com/pyca/cryptography/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pyca/cryptography/compare/48.0.0...48.0.1) Updates `cyclopts` from 4.16.1 to 4.17.0 - [Release notes](https://github.com/BrianPugh/cyclopts/releases) - [Commits](https://github.com/BrianPugh/cyclopts/compare/v4.16.1...v4.17.0) Updates `uv` from 0.11.19 to 0.11.20 - [Release notes](https://github.com/astral-sh/uv/releases) - [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/uv/compare/0.11.19...0.11.20) Updates `prefect-shell` from 0.3.5 to 0.3.6 - [Release notes](https://github.com/PrefectHQ/prefect/releases) - [Commits](https://github.com/PrefectHQ/prefect/compare/prefect-shell-0.3.5...prefect-shell-0.3.6) Updates `prefect-dask` from 0.3.6 to 0.3.7 - [Release notes](https://github.com/PrefectHQ/prefect/releases) - [Commits](https://github.com/PrefectHQ/prefect/compare/prefect-dask-0.3.6...prefect-dask-0.3.7) Updates `prefect-github` from 0.4.2 to 0.4.3 - [Release notes](https://github.com/PrefectHQ/prefect/releases) - [Commits](https://github.com/PrefectHQ/prefect/compare/prefect-github-0.4.2...prefect-github-0.4.3) Updates `prefect-dbt` from 0.7.24 to 0.7.25 - [Release notes](https://github.com/PrefectHQ/prefect/releases) - [Commits](https://github.com/PrefectHQ/prefect/compare/prefect-dbt-0.7.24...prefect-dbt-0.7.25) Updates `prefect-snowflake` from 0.28.7 to 0.28.8 - [Release notes](https://github.com/PrefectHQ/prefect/releases) - [Commits](https://github.com/PrefectHQ/prefect/compare/prefect-snowflake-0.28.7...prefect-snowflake-0.28.8) Updates `moto` from 5.2.1 to 5.2.2 - [Release notes](https://github.com/getmoto/moto/releases) - [Changelog](https://github.com/getmoto/moto/blob/master/CHANGELOG.md) - [Commits](https://github.com/getmoto/moto/compare/5.2.1...5.2.2) Updates `ruff` from 0.15.15 to 0.15.16 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](https://github.com/astral-sh/ruff/compare/0.15.15...0.15.16) --- updated-dependencies: - dependency-name: cryptography dependency-version: 48.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: uv-dependencies - dependency-name: cyclopts dependency-version: 4.17.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: uv-dependencies - dependency-name: uv dependency-version: 0.11.20 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: uv-dependencies - dependency-name: prefect-shell dependency-version: 0.3.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: uv-dependencies - dependency-name: prefect-dask dependency-version: 0.3.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: uv-dependencies - dependency-name: prefect-github dependency-version: 0.4.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: uv-dependencies - dependency-name: prefect-dbt dependency-version: 0.7.25 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: uv-dependencies - dependency-name: prefect-snowflake dependency-version: 0.28.8 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: uv-dependencies - dependency-name: moto dependency-version: 5.2.2 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: uv-dependencies - dependency-name: ruff dependency-version: 0.15.16 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: uv-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
dependabot/uv/uv-dependencies-c37875678e
2 days ago
Latest Branches
CodSpeed Performance Gauge
0%
fix(events): declare ESCAPE character in LIKE expressions for SQLite compatibility
#22264
4 hours ago
92ac3cf
devin/1781259285-fix-like-escape-sqlite
CodSpeed Performance Gauge
0%
fix(engine): use UUID dynamic keys for subflow tracking task runs
#22260
6 hours ago
cea0288
devin/1781175217-fix-subflow-dynamic-key-race
CodSpeed Performance Gauge
0%
fix: Preserve original exception cause in timeout context managers (closes #16299)
#22262
1 day ago
46b5e40
botbikamordehai2-sketch:fix/issue-16299-1781182461
© 2026 CodSpeed Technology
Home
Terms
Privacy
Docs