Skip to content

build(deps): bump the dagster group with 5 updates#50

Merged
jcardozo-eth merged 1 commit intomainfrom
dependabot/uv/dagster-7c6f35349c
Apr 15, 2026
Merged

build(deps): bump the dagster group with 5 updates#50
jcardozo-eth merged 1 commit intomainfrom
dependabot/uv/dagster-7c6f35349c

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 14, 2026

Bumps the dagster group with 5 updates:

Package From To
dagster 1.12.22 1.13.0
dagster-webserver 1.12.22 1.13.0
dagster-dg-cli 1.12.22 1.13.0
dagster-k8s 0.28.22 0.29.0
dagster-postgres 0.28.22 0.29.0

Updates dagster from 1.12.22 to 1.13.0

Changelog

Sourced from dagster's changelog.

1.13.0 (core) / 0.29.0 (libraries)

Major Changes Since 1.12.0

  • AI-assisted development: Released dagster-io/skills, a collection of Dagster-focused AI skills for coding agents like Claude Code, OpenAI Codex, and others. Expanded dg api commands for programmatic inspection of assets, runs, jobs, schedules, and more.
  • Partitioned asset checks: Asset checks can now target specific partitions of an upstream asset, aligning data quality logic with how partitioned data is produced and monitored.
  • State-backed components enabled by default: Integrations that depend on external metadata (dbt, Fivetran, Airbyte, Tableau, Looker, etc.) now use persisted local state by default, providing a more predictable code location loading experience.
  • Virtual assets (preview): New is_virtual parameter on @asset and AssetSpec for modeling assets like database views that automatically reflect upstream changes without explicit materialization.
  • 20+ new components: Added or expanded components for dbt Cloud, Spark, Azure (Blob Storage, ADLS2), GCP (BigQuery, GCS, Dataproc), Databricks, Tableau, Looker, Census, Polytomic, and more. Integrations gained richer observability, metadata, and operational support.
  • Deeper integration support: dbt Cloud supports partitioned assets; Databricks gained job-level subsetting and auto-cancel on run termination; Fivetran added polling sensors, retry-on-reschedule, and resync support; BI integrations auto-enrich assets with table metadata for cross-system lineage.
  • Dagster+ improvements: Organization-level timezone settings, service users for Pro accounts, more resilient code server redeploy behavior, improved agent failure recovery, and expanded insights and alerting workflows.

Breaking Changes

  • Removed deprecated external_asset_from_spec and external_assets_from_specs. Use AssetSpec inputs directly to Definitions(...) or AssetsDefinition(specs=[...]) instead.
  • Removed deprecated single-AssetKey deps argument support from asset dependencies. Use a sequence of AssetDep objects instead.
  • Removed deprecated get_all_asset_specs from Definitions.
  • Removed deprecated legacy_freshness_policy parameter from @observable_source_asset.
  • Removed deprecated auto_observe_interval_minutes parameter from @observable_source_asset.
  • Removed deprecated legacy_freshness_policies_by_output_name parameter from AssetsDefinition.
  • Removed deprecated load_component_at_path from ComponentLoadContext. Use context.load_component instead.
  • Removed deprecated build_defs_at_path from ComponentLoadContext.
  • [dagster-airbyte] Removed deprecated AirbyteState enum (use AirbyteJobStatusType instead) and removed deprecated legacy_freshness_policy and auto_materialize_policy parameters from build_airbyte_assets().
  • [dagster-looker] Removed deprecated DagsterLookerResource.build_defs, get_asset_key, get_dashboard_asset_key, get_explore_asset_key, get_view_asset_key methods, and Type[DagsterLookerApiTranslator] support from API helpers.
  • [dagster-powerbi] Removed deprecated PowerBIWorkspace.build_defs(), translator key helpers (use get_asset_spec() instead), and Type[DagsterPowerBITranslator] support in load_powerbi_asset_specs() (pass an instance instead).
  • [dagster-sigma] Removed deprecated SigmaOrganization.build_defs(), DagsterSigmaTranslator.get_asset_key() (use get_asset_spec(...).key instead), and Type[DagsterSigmaTranslator] support in load_sigma_asset_specs() (pass an instance instead).

New

  • (Preview) Added support for virtual assets. The @asset decorator and AssetSpec now accept an is_virtual parameter for defining assets that represent views or derived tables that don't need to be materialized. Virtual assets are supported in staleness calculations, execution planning, and declarative automation.
  • Job-level config defaults are now applied when partial config is provided to a run.
  • [dagster-dbt] Added enable_dbt_views_as_virtual_assets setting to DbtTranslatorSettings for automatically treating dbt views as virtual assets.

Bugfixes

  • Fixed an issue where a sensor targeting a job with run_tags and specifying an asset_selection in the RunRequest would not apply the job's run_tags to the resulting run.
  • Fixed a potential error in YAML config snapshot conversion when encountering None fields.
  • [dg] Fixed dg plus deploy configure generating a GitHub Action that used Docker instead of the PEX build strategy.
  • [dagster-cloud-cli] PR comments in CI are now scoped by deployment name, preventing overwrites across deployments.
  • [ui] Fixed "Missing" partition selection for time-based partitioned assets.
  • [ui] Fixed raw log display rendering after ansi-to-react library update.
  • [ui] "Terminate all runs" dialog now handles extremely large sets of runs more reliably.

Documentation

  • Added Dagster+ agent configuration page for serverless and hybrid deployments.
  • Added data portability documentation page.
  • Reorganized run isolation documentation for hybrid and serverless deployments.
  • Added ELT pipeline example with dlt and Sling.

... (truncated)

Commits
  • a6918d4 1.13.0
  • 1eb038b Add changelog for Dagster 1.13.0 release (#22532)
  • b0c7ba2 [virtual] fix bug with multi assets (#22529)
  • 9f25cd2 MCP For Dagster Cloud GraphQL (#22083)
  • cb5918d Remove module-import mapping layer (AliasedModuleFinder) (#20930)
  • 0bbf842 [docs] Fix broken Next buttons in Deployment and API docs (#33579)
  • c9b7b9b Fix asset job subset not preserving run_tags (#22396)
  • 6d16f4a [dagster-dbt] Add enable_dbt_views_as_virtual_assets DbtTranslatorSetting (#2...
  • 4bbb6e3 [views] Use preview_warning instead of hidden_param (#22372)
  • c825d33 [core] migrate off external_asset_from_spec(s) and remove deprecated symbols ...
  • Additional commits viewable in compare view

Updates dagster-webserver from 1.12.22 to 1.13.0

Changelog

Sourced from dagster-webserver's changelog.

1.13.0 (core) / 0.29.0 (libraries)

Major Changes Since 1.12.0

  • AI-assisted development: Released dagster-io/skills, a collection of Dagster-focused AI skills for coding agents like Claude Code, OpenAI Codex, and others. Expanded dg api commands for programmatic inspection of assets, runs, jobs, schedules, and more.
  • Partitioned asset checks: Asset checks can now target specific partitions of an upstream asset, aligning data quality logic with how partitioned data is produced and monitored.
  • State-backed components enabled by default: Integrations that depend on external metadata (dbt, Fivetran, Airbyte, Tableau, Looker, etc.) now use persisted local state by default, providing a more predictable code location loading experience.
  • Virtual assets (preview): New is_virtual parameter on @asset and AssetSpec for modeling assets like database views that automatically reflect upstream changes without explicit materialization.
  • 20+ new components: Added or expanded components for dbt Cloud, Spark, Azure (Blob Storage, ADLS2), GCP (BigQuery, GCS, Dataproc), Databricks, Tableau, Looker, Census, Polytomic, and more. Integrations gained richer observability, metadata, and operational support.
  • Deeper integration support: dbt Cloud supports partitioned assets; Databricks gained job-level subsetting and auto-cancel on run termination; Fivetran added polling sensors, retry-on-reschedule, and resync support; BI integrations auto-enrich assets with table metadata for cross-system lineage.
  • Dagster+ improvements: Organization-level timezone settings, service users for Pro accounts, more resilient code server redeploy behavior, improved agent failure recovery, and expanded insights and alerting workflows.

Breaking Changes

  • Removed deprecated external_asset_from_spec and external_assets_from_specs. Use AssetSpec inputs directly to Definitions(...) or AssetsDefinition(specs=[...]) instead.
  • Removed deprecated single-AssetKey deps argument support from asset dependencies. Use a sequence of AssetDep objects instead.
  • Removed deprecated get_all_asset_specs from Definitions.
  • Removed deprecated legacy_freshness_policy parameter from @observable_source_asset.
  • Removed deprecated auto_observe_interval_minutes parameter from @observable_source_asset.
  • Removed deprecated legacy_freshness_policies_by_output_name parameter from AssetsDefinition.
  • Removed deprecated load_component_at_path from ComponentLoadContext. Use context.load_component instead.
  • Removed deprecated build_defs_at_path from ComponentLoadContext.
  • [dagster-airbyte] Removed deprecated AirbyteState enum (use AirbyteJobStatusType instead) and removed deprecated legacy_freshness_policy and auto_materialize_policy parameters from build_airbyte_assets().
  • [dagster-looker] Removed deprecated DagsterLookerResource.build_defs, get_asset_key, get_dashboard_asset_key, get_explore_asset_key, get_view_asset_key methods, and Type[DagsterLookerApiTranslator] support from API helpers.
  • [dagster-powerbi] Removed deprecated PowerBIWorkspace.build_defs(), translator key helpers (use get_asset_spec() instead), and Type[DagsterPowerBITranslator] support in load_powerbi_asset_specs() (pass an instance instead).
  • [dagster-sigma] Removed deprecated SigmaOrganization.build_defs(), DagsterSigmaTranslator.get_asset_key() (use get_asset_spec(...).key instead), and Type[DagsterSigmaTranslator] support in load_sigma_asset_specs() (pass an instance instead).

New

  • (Preview) Added support for virtual assets. The @asset decorator and AssetSpec now accept an is_virtual parameter for defining assets that represent views or derived tables that don't need to be materialized. Virtual assets are supported in staleness calculations, execution planning, and declarative automation.
  • Job-level config defaults are now applied when partial config is provided to a run.
  • [dagster-dbt] Added enable_dbt_views_as_virtual_assets setting to DbtTranslatorSettings for automatically treating dbt views as virtual assets.

Bugfixes

  • Fixed an issue where a sensor targeting a job with run_tags and specifying an asset_selection in the RunRequest would not apply the job's run_tags to the resulting run.
  • Fixed a potential error in YAML config snapshot conversion when encountering None fields.
  • [dg] Fixed dg plus deploy configure generating a GitHub Action that used Docker instead of the PEX build strategy.
  • [dagster-cloud-cli] PR comments in CI are now scoped by deployment name, preventing overwrites across deployments.
  • [ui] Fixed "Missing" partition selection for time-based partitioned assets.
  • [ui] Fixed raw log display rendering after ansi-to-react library update.
  • [ui] "Terminate all runs" dialog now handles extremely large sets of runs more reliably.

Documentation

  • Added Dagster+ agent configuration page for serverless and hybrid deployments.
  • Added data portability documentation page.
  • Reorganized run isolation documentation for hybrid and serverless deployments.
  • Added ELT pipeline example with dlt and Sling.

... (truncated)

Commits
  • a6918d4 1.13.0
  • 1eb038b Add changelog for Dagster 1.13.0 release (#22532)
  • b0c7ba2 [virtual] fix bug with multi assets (#22529)
  • 9f25cd2 MCP For Dagster Cloud GraphQL (#22083)
  • cb5918d Remove module-import mapping layer (AliasedModuleFinder) (#20930)
  • 0bbf842 [docs] Fix broken Next buttons in Deployment and API docs (#33579)
  • c9b7b9b Fix asset job subset not preserving run_tags (#22396)
  • 6d16f4a [dagster-dbt] Add enable_dbt_views_as_virtual_assets DbtTranslatorSetting (#2...
  • 4bbb6e3 [views] Use preview_warning instead of hidden_param (#22372)
  • c825d33 [core] migrate off external_asset_from_spec(s) and remove deprecated symbols ...
  • Additional commits viewable in compare view

Updates dagster-dg-cli from 1.12.22 to 1.13.0

Changelog

Sourced from dagster-dg-cli's changelog.

1.13.0 (core) / 0.29.0 (libraries)

Major Changes Since 1.12.0

  • AI-assisted development: Released dagster-io/skills, a collection of Dagster-focused AI skills for coding agents like Claude Code, OpenAI Codex, and others. Expanded dg api commands for programmatic inspection of assets, runs, jobs, schedules, and more.
  • Partitioned asset checks: Asset checks can now target specific partitions of an upstream asset, aligning data quality logic with how partitioned data is produced and monitored.
  • State-backed components enabled by default: Integrations that depend on external metadata (dbt, Fivetran, Airbyte, Tableau, Looker, etc.) now use persisted local state by default, providing a more predictable code location loading experience.
  • Virtual assets (preview): New is_virtual parameter on @asset and AssetSpec for modeling assets like database views that automatically reflect upstream changes without explicit materialization.
  • 20+ new components: Added or expanded components for dbt Cloud, Spark, Azure (Blob Storage, ADLS2), GCP (BigQuery, GCS, Dataproc), Databricks, Tableau, Looker, Census, Polytomic, and more. Integrations gained richer observability, metadata, and operational support.
  • Deeper integration support: dbt Cloud supports partitioned assets; Databricks gained job-level subsetting and auto-cancel on run termination; Fivetran added polling sensors, retry-on-reschedule, and resync support; BI integrations auto-enrich assets with table metadata for cross-system lineage.
  • Dagster+ improvements: Organization-level timezone settings, service users for Pro accounts, more resilient code server redeploy behavior, improved agent failure recovery, and expanded insights and alerting workflows.

Breaking Changes

  • Removed deprecated external_asset_from_spec and external_assets_from_specs. Use AssetSpec inputs directly to Definitions(...) or AssetsDefinition(specs=[...]) instead.
  • Removed deprecated single-AssetKey deps argument support from asset dependencies. Use a sequence of AssetDep objects instead.
  • Removed deprecated get_all_asset_specs from Definitions.
  • Removed deprecated legacy_freshness_policy parameter from @observable_source_asset.
  • Removed deprecated auto_observe_interval_minutes parameter from @observable_source_asset.
  • Removed deprecated legacy_freshness_policies_by_output_name parameter from AssetsDefinition.
  • Removed deprecated load_component_at_path from ComponentLoadContext. Use context.load_component instead.
  • Removed deprecated build_defs_at_path from ComponentLoadContext.
  • [dagster-airbyte] Removed deprecated AirbyteState enum (use AirbyteJobStatusType instead) and removed deprecated legacy_freshness_policy and auto_materialize_policy parameters from build_airbyte_assets().
  • [dagster-looker] Removed deprecated DagsterLookerResource.build_defs, get_asset_key, get_dashboard_asset_key, get_explore_asset_key, get_view_asset_key methods, and Type[DagsterLookerApiTranslator] support from API helpers.
  • [dagster-powerbi] Removed deprecated PowerBIWorkspace.build_defs(), translator key helpers (use get_asset_spec() instead), and Type[DagsterPowerBITranslator] support in load_powerbi_asset_specs() (pass an instance instead).
  • [dagster-sigma] Removed deprecated SigmaOrganization.build_defs(), DagsterSigmaTranslator.get_asset_key() (use get_asset_spec(...).key instead), and Type[DagsterSigmaTranslator] support in load_sigma_asset_specs() (pass an instance instead).

New

  • (Preview) Added support for virtual assets. The @asset decorator and AssetSpec now accept an is_virtual parameter for defining assets that represent views or derived tables that don't need to be materialized. Virtual assets are supported in staleness calculations, execution planning, and declarative automation.
  • Job-level config defaults are now applied when partial config is provided to a run.
  • [dagster-dbt] Added enable_dbt_views_as_virtual_assets setting to DbtTranslatorSettings for automatically treating dbt views as virtual assets.

Bugfixes

  • Fixed an issue where a sensor targeting a job with run_tags and specifying an asset_selection in the RunRequest would not apply the job's run_tags to the resulting run.
  • Fixed a potential error in YAML config snapshot conversion when encountering None fields.
  • [dg] Fixed dg plus deploy configure generating a GitHub Action that used Docker instead of the PEX build strategy.
  • [dagster-cloud-cli] PR comments in CI are now scoped by deployment name, preventing overwrites across deployments.
  • [ui] Fixed "Missing" partition selection for time-based partitioned assets.
  • [ui] Fixed raw log display rendering after ansi-to-react library update.
  • [ui] "Terminate all runs" dialog now handles extremely large sets of runs more reliably.

Documentation

  • Added Dagster+ agent configuration page for serverless and hybrid deployments.
  • Added data portability documentation page.
  • Reorganized run isolation documentation for hybrid and serverless deployments.
  • Added ELT pipeline example with dlt and Sling.

... (truncated)

Commits
  • a6918d4 1.13.0
  • cb5918d Remove module-import mapping layer (AliasedModuleFinder) (#20930)
  • 6d16f4a [dagster-dbt] Add enable_dbt_views_as_virtual_assets DbtTranslatorSetting (#2...
  • c825d33 [core] migrate off external_asset_from_spec(s) and remove deprecated symbols ...
  • 0d55774 Fix issue causing dg plus deploy configure's github action to use docker in...
  • 528195b Remove deprecated load_component_at_path API (#22331)
  • 939defe Remove deprecated get_all_asset_specs from Definitions (#22339)
  • e8dac13 Remove deprecated build_defs_at_path method from ComponentLoadContext (#22332)
  • fdf6201 Scope PR comments by deployment name to prevent overwrites (#22284)
  • 540aa5c [dagster-airbyte] remove deprecated APIs (#22300)
  • Additional commits viewable in compare view

Updates dagster-k8s from 0.28.22 to 0.29.0

Release notes

Sourced from dagster-k8s's releases.

1.13.0 (core) / 0.29.0 (libraries)

Major Changes Since 1.12.0

  • AI-assisted development: Released dagster-io/skills, a collection of Dagster-focused AI skills for coding agents like Claude Code, OpenAI Codex, and others. Expanded dg api commands for programmatic inspection of assets, runs, jobs, schedules, and more.
  • Partitioned asset checks: Asset checks can now target specific partitions of an upstream asset, aligning data quality logic with how partitioned data is produced and monitored.
  • State-backed components enabled by default: Integrations that depend on external metadata (dbt, Fivetran, Airbyte, Tableau, Looker, etc.) now use persisted local state by default, providing a more predictable code location loading experience.
  • Virtual assets (preview): New is_virtual parameter on @asset and AssetSpec for modeling assets like database views that automatically reflect upstream changes without explicit materialization.
  • 20+ new components: Added or expanded components for dbt Cloud, Spark, Azure (Blob Storage, ADLS2), GCP (BigQuery, GCS, Dataproc), Databricks, Tableau, Looker, Census, Polytomic, and more. Integrations gained richer observability, metadata, and operational support.
  • Deeper integration support: dbt Cloud supports partitioned assets; Databricks gained job-level subsetting and auto-cancel on run termination; Fivetran added polling sensors, retry-on-reschedule, and resync support; BI integrations auto-enrich assets with table metadata for cross-system lineage.
  • Dagster+ improvements: Organization-level timezone settings, service users for Pro accounts, more resilient code server redeploy behavior, improved agent failure recovery, and expanded insights and alerting workflows.

Breaking Changes

  • Removed deprecated external_asset_from_spec and external_assets_from_specs. Use AssetSpec inputs directly to Definitions(...) or AssetsDefinition(specs=[...]) instead.
  • Removed deprecated single-AssetKey deps argument support from asset dependencies. Use a sequence of AssetDep objects instead.
  • Removed deprecated get_all_asset_specs from Definitions.
  • Removed deprecated legacy_freshness_policy parameter from @observable_source_asset.
  • Removed deprecated auto_observe_interval_minutes parameter from @observable_source_asset.
  • Removed deprecated legacy_freshness_policies_by_output_name parameter from AssetsDefinition.
  • Removed deprecated load_component_at_path from ComponentLoadContext. Use context.load_component instead.
  • Removed deprecated build_defs_at_path from ComponentLoadContext.
  • [dagster-airbyte] Removed deprecated AirbyteState enum (use AirbyteJobStatusType instead) and removed deprecated legacy_freshness_policy and auto_materialize_policy parameters from build_airbyte_assets().
  • [dagster-looker] Removed deprecated DagsterLookerResource.build_defs, get_asset_key, get_dashboard_asset_key, get_explore_asset_key, get_view_asset_key methods, and Type[DagsterLookerApiTranslator] support from API helpers.
  • [dagster-powerbi] Removed deprecated PowerBIWorkspace.build_defs(), translator key helpers (use get_asset_spec() instead), and Type[DagsterPowerBITranslator] support in load_powerbi_asset_specs() (pass an instance instead).
  • [dagster-sigma] Removed deprecated SigmaOrganization.build_defs(), DagsterSigmaTranslator.get_asset_key() (use get_asset_spec(...).key instead), and Type[DagsterSigmaTranslator] support in load_sigma_asset_specs() (pass an instance instead).

New

  • (Preview) Added support for virtual assets. The @asset decorator and AssetSpec now accept an is_virtual parameter for defining assets that represent views or derived tables that don't need to be materialized. Virtual assets are supported in staleness calculations, execution planning, and declarative automation.
  • Job-level config defaults are now applied when partial config is provided to a run.
  • [dagster-dbt] Added enable_dbt_views_as_virtual_assets setting to DbtTranslatorSettings for automatically treating dbt views as virtual assets.

Bugfixes

  • Fixed an issue where a sensor targeting a job with run_tags and specifying an asset_selection in the RunRequest would not apply the job's run_tags to the resulting run.
  • Fixed a potential error in YAML config snapshot conversion when encountering None fields.
  • [dg] Fixed dg plus deploy configure generating a GitHub Action that used Docker instead of the PEX build strategy.
  • [dagster-cloud-cli] PR comments in CI are now scoped by deployment name, preventing overwrites across deployments.
  • [ui] Fixed "Missing" partition selection for time-based partitioned assets.
  • [ui] Fixed raw log display rendering after ansi-to-react library update.
  • [ui] "Terminate all runs" dialog now handles extremely large sets of runs more reliably.

Documentation

  • Added Dagster+ agent configuration page for serverless and hybrid deployments.
  • Added data portability documentation page.
  • Reorganized run isolation documentation for hybrid and serverless deployments.
  • Added ELT pipeline example with dlt and Sling.

Dagster Plus

... (truncated)

Changelog

Sourced from dagster-k8s's changelog.

1.13.0 (core) / 0.29.0 (libraries)

Major Changes Since 1.12.0

  • AI-assisted development: Released dagster-io/skills, a collection of Dagster-focused AI skills for coding agents like Claude Code, OpenAI Codex, and others. Expanded dg api commands for programmatic inspection of assets, runs, jobs, schedules, and more.
  • Partitioned asset checks: Asset checks can now target specific partitions of an upstream asset, aligning data quality logic with how partitioned data is produced and monitored.
  • State-backed components enabled by default: Integrations that depend on external metadata (dbt, Fivetran, Airbyte, Tableau, Looker, etc.) now use persisted local state by default, providing a more predictable code location loading experience.
  • Virtual assets (preview): New is_virtual parameter on @asset and AssetSpec for modeling assets like database views that automatically reflect upstream changes without explicit materialization.
  • 20+ new components: Added or expanded components for dbt Cloud, Spark, Azure (Blob Storage, ADLS2), GCP (BigQuery, GCS, Dataproc), Databricks, Tableau, Looker, Census, Polytomic, and more. Integrations gained richer observability, metadata, and operational support.
  • Deeper integration support: dbt Cloud supports partitioned assets; Databricks gained job-level subsetting and auto-cancel on run termination; Fivetran added polling sensors, retry-on-reschedule, and resync support; BI integrations auto-enrich assets with table metadata for cross-system lineage.
  • Dagster+ improvements: Organization-level timezone settings, service users for Pro accounts, more resilient code server redeploy behavior, improved agent failure recovery, and expanded insights and alerting workflows.

Breaking Changes

  • Removed deprecated external_asset_from_spec and external_assets_from_specs. Use AssetSpec inputs directly to Definitions(...) or AssetsDefinition(specs=[...]) instead.
  • Removed deprecated single-AssetKey deps argument support from asset dependencies. Use a sequence of AssetDep objects instead.
  • Removed deprecated get_all_asset_specs from Definitions.
  • Removed deprecated legacy_freshness_policy parameter from @observable_source_asset.
  • Removed deprecated auto_observe_interval_minutes parameter from @observable_source_asset.
  • Removed deprecated legacy_freshness_policies_by_output_name parameter from AssetsDefinition.
  • Removed deprecated load_component_at_path from ComponentLoadContext. Use context.load_component instead.
  • Removed deprecated build_defs_at_path from ComponentLoadContext.
  • [dagster-airbyte] Removed deprecated AirbyteState enum (use AirbyteJobStatusType instead) and removed deprecated legacy_freshness_policy and auto_materialize_policy parameters from build_airbyte_assets().
  • [dagster-looker] Removed deprecated DagsterLookerResource.build_defs, get_asset_key, get_dashboard_asset_key, get_explore_asset_key, get_view_asset_key methods, and Type[DagsterLookerApiTranslator] support from API helpers.
  • [dagster-powerbi] Removed deprecated PowerBIWorkspace.build_defs(), translator key helpers (use get_asset_spec() instead), and Type[DagsterPowerBITranslator] support in load_powerbi_asset_specs() (pass an instance instead).
  • [dagster-sigma] Removed deprecated SigmaOrganization.build_defs(), DagsterSigmaTranslator.get_asset_key() (use get_asset_spec(...).key instead), and Type[DagsterSigmaTranslator] support in load_sigma_asset_specs() (pass an instance instead).

New

  • (Preview) Added support for virtual assets. The @asset decorator and AssetSpec now accept an is_virtual parameter for defining assets that represent views or derived tables that don't need to be materialized. Virtual assets are supported in staleness calculations, execution planning, and declarative automation.
  • Job-level config defaults are now applied when partial config is provided to a run.
  • [dagster-dbt] Added enable_dbt_views_as_virtual_assets setting to DbtTranslatorSettings for automatically treating dbt views as virtual assets.

Bugfixes

  • Fixed an issue where a sensor targeting a job with run_tags and specifying an asset_selection in the RunRequest would not apply the job's run_tags to the resulting run.
  • Fixed a potential error in YAML config snapshot conversion when encountering None fields.
  • [dg] Fixed dg plus deploy configure generating a GitHub Action that used Docker instead of the PEX build strategy.
  • [dagster-cloud-cli] PR comments in CI are now scoped by deployment name, preventing overwrites across deployments.
  • [ui] Fixed "Missing" partition selection for time-based partitioned assets.
  • [ui] Fixed raw log display rendering after ansi-to-react library update.
  • [ui] "Terminate all runs" dialog now handles extremely large sets of runs more reliably.

Documentation

  • Added Dagster+ agent configuration page for serverless and hybrid deployments.
  • Added data portability documentation page.
  • Reorganized run isolation documentation for hybrid and serverless deployments.
  • Added ELT pipeline example with dlt and Sling.

... (truncated)

Commits

Updates dagster-postgres from 0.28.22 to 0.29.0

Release notes

Sourced from dagster-postgres's releases.

1.13.0 (core) / 0.29.0 (libraries)

Major Changes Since 1.12.0

  • AI-assisted development: Released dagster-io/skills, a collection of Dagster-focused AI skills for coding agents like Claude Code, OpenAI Codex, and others. Expanded dg api commands for programmatic inspection of assets, runs, jobs, schedules, and more.
  • Partitioned asset checks: Asset checks can now target specific partitions of an upstream asset, aligning data quality logic with how partitioned data is produced and monitored.
  • State-backed components enabled by default: Integrations that depend on external metadata (dbt, Fivetran, Airbyte, Tableau, Looker, etc.) now use persisted local state by default, providing a more predictable code location loading experience.
  • Virtual assets (preview): New is_virtual parameter on @asset and AssetSpec for modeling assets like database views that automatically reflect upstream changes without explicit materialization.
  • 20+ new components: Added or expanded components for dbt Cloud, Spark, Azure (Blob Storage, ADLS2), GCP (BigQuery, GCS, Dataproc), Databricks, Tableau, Looker, Census, Polytomic, and more. Integrations gained richer observability, metadata, and operational support.
  • Deeper integration support: dbt Cloud supports partitioned assets; Databricks gained job-level subsetting and auto-cancel on run termination; Fivetran added polling sensors, retry-on-reschedule, and resync support; BI integrations auto-enrich assets with table metadata for cross-system lineage.
  • Dagster+ improvements: Organization-level timezone settings, service users for Pro accounts, more resilient code server redeploy behavior, improved agent failure recovery, and expanded insights and alerting workflows.

Breaking Changes

  • Removed deprecated external_asset_from_spec and external_assets_from_specs. Use AssetSpec inputs directly to Definitions(...) or AssetsDefinition(specs=[...]) instead.
  • Removed deprecated single-AssetKey deps argument support from asset dependencies. Use a sequence of AssetDep objects instead.
  • Removed deprecated get_all_asset_specs from Definitions.
  • Removed deprecated legacy_freshness_policy parameter from @observable_source_asset.
  • Removed deprecated auto_observe_interval_minutes parameter from @observable_source_asset.
  • Removed deprecated legacy_freshness_policies_by_output_name parameter from AssetsDefinition.
  • Removed deprecated load_component_at_path from ComponentLoadContext. Use context.load_component instead.
  • Removed deprecated build_defs_at_path from ComponentLoadContext.
  • [dagster-airbyte] Removed deprecated AirbyteState enum (use AirbyteJobStatusType instead) and removed deprecated legacy_freshness_policy and auto_materialize_policy parameters from build_airbyte_assets().
  • [dagster-looker] Removed deprecated DagsterLookerResource.build_defs, get_asset_key, get_dashboard_asset_key, get_explore_asset_key, get_view_asset_key methods, and Type[DagsterLookerApiTranslator] support from API helpers.
  • [dagster-powerbi] Removed deprecated PowerBIWorkspace.build_defs(), translator key helpers (use get_asset_spec() instead), and Type[DagsterPowerBITranslator] support in load_powerbi_asset_specs() (pass an instance instead).
  • [dagster-sigma] Removed deprecated SigmaOrganization.build_defs(), DagsterSigmaTranslator.get_asset_key() (use get_asset_spec(...).key instead), and Type[DagsterSigmaTranslator] support in load_sigma_asset_specs() (pass an instance instead).

New

  • (Preview) Added support for virtual assets. The @asset decorator and AssetSpec now accept an is_virtual parameter for defining assets that represent views or derived tables that don't need to be materialized. Virtual assets are supported in staleness calculations, execution planning, and declarative automation.
  • Job-level config defaults are now applied when partial config is provided to a run.
  • [dagster-dbt] Added enable_dbt_views_as_virtual_assets setting to DbtTranslatorSettings for automatically treating dbt views as virtual assets.

Bugfixes

  • Fixed an issue where a sensor targeting a job with run_tags and specifying an asset_selection in the RunRequest would not apply the job's run_tags to the resulting run.
  • Fixed a potential error in YAML config snapshot conversion when encountering None fields.
  • [dg] Fixed dg plus deploy configure generating a GitHub Action that used Docker instead of the PEX build strategy.
  • [dagster-cloud-cli] PR comments in CI are now scoped by deployment name, preventing overwrites across deployments.
  • [ui] Fixed "Missing" partition selection for time-based partitioned assets.
  • [ui] Fixed raw log display rendering after ansi-to-react library update.
  • [ui] "Terminate all runs" dialog now handles extremely large sets of runs more reliably.

Documentation

  • Added Dagster+ agent configuration page for serverless and hybrid deployments.
  • Added data portability documentation page.
  • Reorganized run isolation documentation for hybrid and serverless deployments.
  • Added ELT pipeline example with dlt and Sling.

Dagster Plus

... (truncated)

Changelog

Sourced from dagster-postgres's changelog.

1.13.0 (core) / 0.29.0 (libraries)

Major Changes Since 1.12.0

  • AI-assisted development: Released dagster-io/skills, a collection of Dagster-focused AI skills for coding agents like Claude Code, OpenAI Codex, and others. Expanded dg api commands for programmatic inspection of assets, runs, jobs, schedules, and more.
  • Partitioned asset checks: Asset checks can now target specific partitions of an upstream asset, aligning data quality logic with how partitioned data is produced and monitored.
  • State-backed components enabled by default: Integrations that depend on external metadata (dbt, Fivetran, Airbyte, Tableau, Looker, etc.) now use persisted local state by default, providing a more predictable code location loading experience.
  • Virtual assets (preview): New is_virtual parameter on @asset and AssetSpec for modeling assets like database views that automatically reflect upstream changes without explicit materialization.
  • 20+ new components: Added or expanded components for dbt Cloud, Spark, Azure (Blob Storage, ADLS2), GCP (BigQuery, GCS, Dataproc), Databricks, Tableau, Looker, Census, Polytomic, and more. Integrations gained richer observability, metadata, and operational support.
  • Deeper integration support: dbt Cloud supports partitioned assets; Databricks gained job-level subsetting and auto-cancel on run termination; Fivetran added polling sensors, retry-on-reschedule, and resync support; BI integrations auto-enrich assets with table metadata for cross-system lineage.
  • Dagster+ improvements: Organization-level timezone settings, service users for Pro accounts, more resilient code server redeploy behavior, improved agent failure recovery, and expanded insights and alerting workflows.

Breaking Changes

  • Removed deprecated external_asset_from_spec and external_assets_from_specs. Use AssetSpec inputs directly to Definitions(...) or AssetsDefinition(specs=[...]) instead.
  • Removed deprecated single-AssetKey deps argument support from asset dependencies. Use a sequence of AssetDep objects instead.
  • Removed deprecated get_all_asset_specs from Definitions.
  • Removed deprecated legacy_freshness_policy parameter from @observable_source_asset.
  • Removed deprecated auto_observe_interval_minutes parameter from @observable_source_asset.
  • Removed deprecated legacy_freshness_policies_by_output_name parameter from AssetsDefinition.
  • Removed deprecated load_component_at_path from ComponentLoadContext. Use context.load_component instead.
  • Removed deprecated build_defs_at_path from ComponentLoadContext.
  • [dagster-airbyte] Removed deprecated AirbyteState enum (use AirbyteJobStatusType instead) and removed deprecated legacy_freshness_policy and auto_materialize_policy parameters from build_airbyte_assets().
  • [dagster-looker] Removed deprecated DagsterLookerResource.build_defs, get_asset_key, get_dashboard_asset_key, get_explore_asset_key, get_view_asset_key methods, and Type[DagsterLookerApiTranslator] support from API helpers.
  • [dagster-powerbi] Removed deprecated PowerBIWorkspace.build_defs(), translator key helpers (use get_asset_spec() instead), and Type[DagsterPowerBITranslator] support in load_powerbi_asset_specs() (pass an instance instead).
  • [dagster-sigma] Removed deprecated SigmaOrganization.build_defs(), DagsterSigmaTranslator.get_asset_key() (use get_asset_spec(...).key instead), and Type[DagsterSigmaTranslator] support in load_sigma_asset_specs() (pass an instance instead).

New

  • (Preview) Added support for virtual assets. The @asset decorator and AssetSpec now accept an is_virtual parameter for defining assets that represent views or derived tables that don't need to be materialized. Virtual assets are supported in staleness calculations, execution planning, and declarative automation.
  • Job-level config defaults are now applied when partial config is provided to a run.
  • [dagster-dbt] Added enable_dbt_views_as_virtual_assets setting to DbtTranslatorSettings for automatically treating dbt views as virtual assets.

Bugfixes

  • Fixed an issue where a sensor targeting a job with run_tags and specifying an asset_selection in the RunRequest would not apply the job's run_tags to the resulting run.
  • Fixed a potential error in YAML config snapshot conversion when encountering None fields.
  • [dg] Fixed dg plus deploy configure generating a GitHub Action that used Docker instead of the PEX build strategy.
  • [dagster-cloud-cli] PR comments in CI are now scoped by deployment name, preventing overwrites across deployments.
  • [ui] Fixed "Missing" partition selection for time-based partitioned assets.
  • [ui] Fixed raw log display rendering after ansi-to-react library update.
  • [ui] "Terminate all runs" dialog now handles extremely large sets of runs more reliably.

Documentation

  • Added Dagster+ agent configuration page for serverless and hybrid deployments.
  • Added data portability documentation page.
  • Reorganized run isolation documentation for hybrid and serverless deployments.
  • Added ELT pipeline example with dlt and Sling.

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dagster group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [dagster](https://github.com/dagster-io/dagster) | `1.12.22` | `1.13.0` |
| [dagster-webserver](https://github.com/dagster-io/dagster) | `1.12.22` | `1.13.0` |
| [dagster-dg-cli](https://github.com/dagster-io/dagster) | `1.12.22` | `1.13.0` |
| [dagster-k8s](https://github.com/dagster-io/dagster) | `0.28.22` | `0.29.0` |
| [dagster-postgres](https://github.com/dagster-io/dagster) | `0.28.22` | `0.29.0` |


Updates `dagster` from 1.12.22 to 1.13.0
- [Release notes](https://github.com/dagster-io/dagster/releases)
- [Changelog](https://github.com/dagster-io/dagster/blob/master/CHANGES.md)
- [Commits](dagster-io/dagster@1.12.22...1.13.0)

Updates `dagster-webserver` from 1.12.22 to 1.13.0
- [Release notes](https://github.com/dagster-io/dagster/releases)
- [Changelog](https://github.com/dagster-io/dagster/blob/master/CHANGES.md)
- [Commits](dagster-io/dagster@1.12.22...1.13.0)

Updates `dagster-dg-cli` from 1.12.22 to 1.13.0
- [Release notes](https://github.com/dagster-io/dagster/releases)
- [Changelog](https://github.com/dagster-io/dagster/blob/master/CHANGES.md)
- [Commits](dagster-io/dagster@1.12.22...1.13.0)

Updates `dagster-k8s` from 0.28.22 to 0.29.0
- [Release notes](https://github.com/dagster-io/dagster/releases)
- [Changelog](https://github.com/dagster-io/dagster/blob/master/CHANGES.md)
- [Commits](https://github.com/dagster-io/dagster/commits)

Updates `dagster-postgres` from 0.28.22 to 0.29.0
- [Release notes](https://github.com/dagster-io/dagster/releases)
- [Changelog](https://github.com/dagster-io/dagster/blob/master/CHANGES.md)
- [Commits](https://github.com/dagster-io/dagster/commits)

---
updated-dependencies:
- dependency-name: dagster
  dependency-version: 1.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dagster
- dependency-name: dagster-webserver
  dependency-version: 1.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dagster
- dependency-name: dagster-dg-cli
  dependency-version: 1.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dagster
- dependency-name: dagster-k8s
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dagster
- dependency-name: dagster-postgres
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dagster
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Apr 14, 2026
@jcardozo-eth jcardozo-eth merged commit 5b67486 into main Apr 15, 2026
3 checks passed
@dependabot dependabot bot deleted the dependabot/uv/dagster-7c6f35349c branch April 15, 2026 12:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant