# Dagster 1.13.16 — 1.13.16 (core) / 0.29.16 (libraries) - Product: Dagster (https://whatsnew.fyi/product/dagster) - Vendor: Dagster Labs - Date: 2026-07-30 - Version: 1.13.16 - Original notes: https://github.com/dagster-io/dagster/releases/tag/1.13.16 - Permalink: https://whatsnew.fyi/product/dagster/releases/1.13.16 What's New is an index, not a publisher: every entry below links to the vendor's own release notes, which are the authoritative source. Entries are labelled where they are hand-curated sample data, pre-releases, or drawn from a secondary source such as a developer blog. Reuse: the summaries, labels and curation here are © What's New. Quote freely with attribution and a link back; wholesale republication of the corpus is not permitted — terms: https://whatsnew.fyi/terms. The vendors' own release notes remain their publishers'. --- - **added** — Declarative Automation can now automate jobs as a preview feature by passing an `automation_condition` to `define_asset_job` with `AutomationCondition.any_job_root_assets_match` or `AutomationCondition.all_job_root_assets_match` to launch a single run when the condition becomes true - **added** — The Components tab for a code location now lists all component instances in the location, not just app-managed ones - **fixed** — Fixed a bug in dagster-airbyte where Airbyte API requests were not retried on transient failures, causing syncs to fail after a single transient error despite the `request_max_retries` setting ###### New - Declarative Automation can now automate jobs, available as a preview feature. Pass an `automation_condition` to `define_asset_job` — wrapping an asset-level condition with `AutomationCondition.any_job_root_assets_match` or `AutomationCondition.all_job_root_assets_match` — to launch a single run of the job when the condition becomes true. Evaluation history is viewable in the new Automation tab on job pages. - [ui] The Components tab for a code location now lists all component instances in the location, not just app-managed ones. ###### Bugfixes - [dagster-airbyte] Fixed a bug where Airbyte API requests were not retried on transient failures, causing syncs to fail after a single transient error despite the `request_max_retries` setting. (Thanks, [@MercureTony](https://github.com/MercureTony)!) ###### Documentation - Clarified the distinction between definition-time and runtime metadata, and documented how to access asset definition metadata from a custom I/O manager. - Documented the available configuration options for the Soda integration.