Changelog
1.13.14 (core) / 0.29.14 (libraries)
Bugfixes
- Fixed a 401 error from the serverless I/O manager when materializing assets in an organization with more than one full deployment.
- Fixed a 400 error from the serverless I/O manager when materializing assets whose storage keys contain special characters.
1.13.13 (core) / 0.29.13 (libraries)
New
- [ui] The asset launch dialog now automatically expands the warnings section when alerts are present.
Bugfixes
- Fixed an issue where a fresh installation of
dagstercould resolve an incompatible version ofgrpcio-health-checking, breaking code server imports due to aprotobufversion conflict. - [ui] Fixed an error that occurred when viewing tick details for declarative automation runs.
1.13.12 (core) / 0.29.12 (libraries)
New
- [ui] Improved the performance of the runs feed for runs that target large numbers of assets and asset checks. The feed now fetches a bounded preview of the selection and loads the full lists on demand.
- [dagster-aws] Added a
dashboard_refresh_intervalparameter toPipesEMRServerlessClientand increased its default so that Spark UI URLs are no longer invalidated prematurely during a run. (Thanks, @noy-solvin!)
Bugfixes
- Fixed a bug where a partitioned asset check with its own automation condition could raise a
CheckErrorand halt the entire automation tick when it was requested on a tick that did not materialize the asset it targets. - Fixed a bug where a code location could be left stuck in an error state after a transient gRPC failure during refresh (common during Kubernetes rolling deployments). The gRPC server watcher now periodically retries refresh for locations whose load error is a
DagsterUserCodeUnreachableError. (Thanks, @jmoldow!) - [ui] Fixed an issue where long pool names could overflow their container; they are now truncated, and the run pools dialog wraps and scrolls when there are many pools.
- [dagster-dbt] Fixed a
KeyErroronfailureswhen converting dbt run results to Dagster events for runs that omit that key (such as dbt Fusion).
1.13.11 (core) / 0.29.11 (libraries)
New
- [ui] The asset catalog page now renders as a single virtualized list, so workspaces with many asset groups or code locations no longer freeze the UI when expanding those sections.
- [dagster-dbt] Added a new
"insights"option toDbtProjectComponent'sinclude_metadatafield, enabling Dagster+ Insights tracking from YAML config. - [dagster-graphql] Added an optional
limitargument and newassetSelectionCount/assetCheckSelectionCountfields to theRunGraphQL type, so clients can render a bounded preview of a run's asset/check selection alongside the true totals.
Bugfixes
- Asset check history is now cleared when an asset or its partitions are wiped; stale entries no longer linger in the Execution History and Partitions views.
- [ui] The run detail page header now displays the asset-check count for asset-job runs, and the count is now read from the execution plan rather than by scanning the full run event log.
- [ui] The "View asset lineage" item in the run actions menu now correctly scopes to the assets in that run.
- [dagster-dbt]
.with_insights()now logs a warning instead of raising when called against an unsupported adapter.
Documentation
- Added a new page documenting Dagster+ code-location snapshot size limits, with a script you can run locally to estimate snapshot sizes before deploying.
- Documented the "Run concurrency" Insights metric.
- Fixed an invalid
poolconfig in the "Preventing concurrent dbt snapshots"DbtProjectComponentexample.
1.13.10 (core) / 0.29.10 (libraries)
Bugfixes
- Fixed a bug where
DagsterInstance.get_latest_materialization_event(andget_asset_records) could return a stale pre-wipe materialization for a wiped asset once a new run targeting the asset started or an observation was reported. In Dagster+, fixed the analogous bug where wiping partitions could leave the wiped partition's materialization as the asset's latest materialization. - Fixed an issue where an asset backfill could get stuck — emitting no further runs but never completing — when an asset whose partitions definition includes certain dates depended on an asset whose partitions definition excludes them.
- Fixed a performance issue where assets partitioned by a cron schedule using an explicit minute list (e.g.
0,30 * * * *) computed partition counts much more slowly than the equivalent*/30schedule. - Improved the performance of loading the backfills for a partition set on deployments with a large number of backfills, which previously fetched and deserialized every backfill in the deployment on each request.
- [ui] Fixed a performance regression that caused views with truncated text, such as the asset catalog, to render slowly.
- [dagster-cloud] Fixed an issue where importing
dagster_cloud.serverlesscould fail with a missingboto3dependency on serverless deployments that did not install the[serverless]extra.
1.13.9 (core) / 0.29.9 (libraries)
New
- Asset group names may now contain
/separators to define hierarchical groups (e.g.marketing/ads). Hierarchical groups can be selected with wildcards in asset selections (e.g.group:"marketing/*") and are rendered as nested groups in the asset graph. - Added an
is:filter to the asset selection syntax and search filters to select assets by type (e.g.is:external,is:materializable). - [dg]
DG_PROJECT_PYTHON_EXECUTABLEin a project's.envis now parsed viapython-dotenv, soexport KEY=value, quoted values, and trailing comments are honored. - [ui] When filtering assets in the lineage view with the selection input, a "Save selection" button now allows creating a saved selection directly from the input value.
- [ui] Redesigned the recent updates timeline on asset pages.
- [dagster-cloud] Uploads through S3 presigned URLs (code location snapshots, serverless I/O manager objects, compute logs, and PEX files) now retry on transient HTTP 500 errors from S3.
- [dagster-dlt]
DltLoadCollectionComponentnow supportspartitions_defandbackfill_policy. (Thanks, @Benjamin0313!) - [helm] User code deployments now support running multiple replicas via
replicaCount. All replicas of a deployment share a consistent gRPC server ID, so multi-replica deployments do not trigger spurious code location reloads. (Thanks, @HynekBlaha!)
Bugfixes
- Fixed an issue where date-like strings (e.g.
"2021-10-30") in YAML config files were converted to datetime objects instead of being passed through as strings. - Fixed an issue where run failure sensors did not receive error information when a run failed due to a step failure. The originating step error is now available on the sensor context.
- Fixed an issue where schedules using cron strings constrained to specific hours or days (e.g.
*/15 9-16 * * 1-5) were incorrectly treated as ticking uniformly throughout the day, which could produce overcounted partition counts and oversized backfills. - Fixed a deadlock that could occur when shutting down event log watchers on Postgres or MySQL storage while a watch callback was concurrently unsubscribing.
TemplatedSqlComponentnow generates a unique default op name based on its template, preventing op name collisions when multiple components omit an explicit execution name.- [ui] Fixed an issue where clicking "View runs" in the backfill step status dialog did not open the runs dialog.
- [ui] On the asset partitions page, the focused partition now resets when it falls outside the selected partition range, instead of continuing to display a partition that is no longer in the range.
Documentation
- [dagster-dbt] Added a "Blue/green deployments" section to the dbt patterns and best practices guide, covering the clone-then-swap pattern.
1.13.8 (core) / 0.29.8 (libraries)
New
- Special characters are now allowed in team
ownersfor jobs, schedules, and sensors. (Thanks, @dragos-pop!) - Added
kindstags and icons for Microsoft Fabric and OneLake. (Thanks, @MartyP233!) - The BigQuery, Snowflake, and DuckDB I/O managers now skip the table write when an asset returns an empty DataFrame, logging a warning instead. This prevents incorrect type inference and degenerate tables for empty partitions.
- [ui] The per-code-location "Docs" tab is now "Components", with its content available under a "Library" subtab. Existing
/docslinks continue to work via redirect. - [dagster-aws] The EMR PySpark step launcher now honors a configured S3 job package path.
- [dagster-cloud]
code_server.*metrics now carry aserver_instance_idtag identifying the underlying gRPC server process. For multi-replica code locations, the tag identifies whichever replica answered the most recent metrics ping.
Bugfixes
InstigationLoggernow stringifies log record attributes that are not JSON-serializable instead of failing to emit the log. (Thanks, @jonaslb!)- Fixed a SQL injection vulnerability in
dagster-clickhouse,dagster-clickhouse-pandas, anddagster-clickhouse-polarswhen using dynamic partition keys. ClickHouse partition queries now bind partition key values as driver parameters instead of interpolating them into SQL strings. - Fixed an issue where tag values in component YAML files were not coerced correctly.
- [dg]
dg labs ai dispatchno longer writes aplan.mdartifact into version control. - [dg] Fixed an error that occurred when using
TypedDict-typed fields in component configuration. - [ui] Fixed partition step status labels and squares that rendered incorrectly after the CSS Modules migration.
- [ui] Fixed backfill progress not reaching 100% until all runs had completed.
- [dagster-databricks] Fixed Databricks workspace job list pagination and added retries for rate-limit responses.
- [dagster-dbt] Fixed
DbtProject.prepare()to always rundbt depswhen dependency files are present. - [dagster-dbt] Fixed YAML-based translation in
DbtProjectComponentsubclasses to also translate dependency keys. - [dagster-dbt] Fixed an issue where dbt unit tests could be ignored unexpectedly.
- [dagster-dbt] Fixed incorrect asset key translation when generating column lineage with
DbtProjectComponent. - [dagster-dbt] Fixed unbounded recursive copying of the
.local_defs_state()directory when a dbt project was located at the repository root. - [dagster-cloud-cli] Fixed
dg plus deployfailing withNo module named pipinuv-managed environments. - [dagster-cloud-cli] Removed an overly strict dependency-file check from the Docker deploy path.
Documentation
- Added an integration reference for
dagster-elasticsearch. - Added documentation for the OpenLineage integration.
- Added documentation for
dagster-hf-datasets. - Added an example covering deployment strategies.
1.13.7 (core) / 0.29.7 (libraries)
New
- Added an
ownersparameter tobuild_schedule_from_partitioned_jobto set owners on the resulting schedule. (Thanks, @dragos-pop!) - [dagster-airlift] Added support for Python 3.12, 3.13, and 3.14.
- [dagster-fivetran] The Fivetran component now supports a
fetch_column_metadataoption to fetch column-level metadata for synced tables. - [dagster-k8s] When
includeConfigInLaunchedRuns.enabledis set in the Helm chart, run pods now inheritnodeSelector,tolerations, andpodSecurityContextfrom user deployment configuration.
Bugfixes
- Fixed a SQL injection vulnerability in
dagster-clickhouse,dagster-clickhouse-pandas, anddagster-clickhouse-polarswhen using dynamic partition keys. ClickHouse partition queries now use driver parameter binding instead of interpolating partition key values into SQL strings. - Fixed a race condition where readers polling for a run to reach
FAILUREcould observe the failed status before thedagster/failure_reasontag was written. - Fixed a regression where a blocking asset check that did not emit a result (e.g. a dbt test that dbt declined to run under
indirect_selection: cautiousorbuildable) could silently cause downstream assets to be skipped. Missing blocking check results now allow downstream assets to proceed and log a warning; failed blocking checks continue to fail the step and the run as before. - Improved deduplication in
AutomationCondition.any_downstream_conditions()to prevent recursive blowups in condition size when combined with other automation conditions. - [ui] Fixed extra scrollbars appearing in the asset overview and asset sidebar.
- [dagster-k8s] Fixed an
AttributeErrorwhen usingkubernetesclient v36+, which uses PEP 585 dict syntax (e.g.dict[str, str]) in its OpenAPI type annotations. (Thanks, @vanika02!)
1.13.6 (core) / 0.29.6 (libraries)
New
- Schedule, sensor, and asset daemon ticks now dispatch instigators round-robin across code locations, preventing a single code location with many instigators from delaying launches in other code locations.
- Added
dg api run launchcommand for launching runs from the CLI against the Dagster+ API. - Improved declarative automation performance for assets sharing the same cron schedule.
- [ui] The asset catalog now shows a toggle to hide duplicate connections-defined assets when an SDA and a connection target the same table, and the asset sidebar links to matched assets.
- [dagster-dbt] Added a configurable job pool to
DbtCloudComponentandDbtCloudWorkspaceto work around dbt Cloud's one-concurrent-run-per-job limit.
Bugfixes
- Fixed an issue where asset keys and partitions containing leading "/" characters or ".." characters would sometimes cause IOManagers to read and write outside of the supplied
base_path. - Fixed a regression where a blocking asset check that did not emit a result (e.g. a dbt test skipped under
indirect_selection: cautiousorbuildable) would silently cause downstream assets to be skipped. Missing check results now allow downstream assets to proceed; failed checks still fail the step. - Softened the
job_snapshot_idmismatch invariant in execution plan persistence from a crash to a warning, preventing run launch failures when client and server compute slightly different snapshot IDs. - Pinned
antlr4-python3-runtimeto<4.14to prevent potential breakage from future ANTLR minor version bumps. - [ui] Fixed minor flex alignment issues for tags and metadata buttons on asset catalog detail pages.
- [dagster-k8s] Added support for the PEP 585
dict[str, str]syntax used by thekubernetesclient v36+ when snake-casing model dictionaries, fixing anAttributeError: module 'kubernetes.client.models' has no attribute 'dict[str, str]'raised onkubernetes>=36. (Thanks, @vanika02!)
Documentation
- Added documentation for defining asset dependencies across code locations.
- Added
dg utilsCLI reference documentation. - Added missing
DAGSTER_POSTGRES_HOSTenvironment variable to the Docker deployment documentation. - Expanded Databricks integration documentation with Databricks Connect, serverless compute (Pipes), and UC Volumes patterns.
- [dagster-dbt] Documented the
FROM_ASSET_FAILUREretry strategy for dbt asset jobs.
1.13.5 (core) / 0.29.5 (libraries)
New
- Added kinds tags for Alteryx, Boomi, and SAP.
- Raised the SQLite
busy_timeoutdefault from 5s to 30s onSqliteEventLogStorageandConsolidatedSqliteEventLogStorageto better tolerate slow or network-backed$DAGSTER_HOMEfilesystems. - [ui] Removed the "Scheduled" tab from the runs feed.
- [ui] The sensor tick timeline now shows more ticks on the newest page, matching the list of ticks shown in the table below.
- [dagster-k8s] Added a
delete_pod_on_completionflag toPipesK8sClient.run, allowing callers to opt out of the automatic pod deletion at the end of a Pipes run. - [dagstermill] Dropped support for papermill 1.x.
dagstermillnow requirespapermill>=2.0.0.
Bugfixes
- Job backfills now retry on transient daemon errors such as code-server unreachable, matching the existing behavior for asset backfills. The
DAGSTER_MAX_ASSET_BACKFILL_RETRIESenvironment variable has been renamed toDAGSTER_MAX_BACKFILL_RETRIES, with a fallback to the old name for backwards compatibility. - Fixed a bug where asset checks could be dropped from a
JobDefinitionwhen selected as part of a subset selection. - Fixed a bug where, in a partitioned-asset backfill running multiple partitions concurrently, an inline
AssetCheckResultcould record atarget_materializationpointing to a different partition's materialization. - Fixed a regression introduced in 1.12.10 where
OutputContext.asset_partition_key_rangeandInputContext.asset_partition_key_rangecould raiseCheckError: The instance is not available to load partitionsfor assets using aMultiPartitionsDefinitionthat includes aDynamicPartitionsDefinition. - Improved the error message shown when the instance is not available to load dynamic partitions, recommending the use of
partition_loading_context. - [ui] Fixed an issue where viewing the Lineage tab for an asset could cause the page header to disappear.
- [dagster-dbt] Fixed a bug where, when a dbt asset selection grew large enough to switch from inline
--select/--excludeto a temporaryselectors.yml, runtime--excludearguments were silently dropped. - [dagster-dbt] Fixed runtime selection arguments not being properly applied when used with
@dbt_assetsops. - [dagstermill] Increased the default Jupyter kernel-startup timeout for
dagstermillnotebook ops from 60s to 120s.
1.13.4 (core) / 0.29.4 (libraries)
New
typing.Mappingandtyping.Sequenceannotations are now supported on op and asset inputs.- Added a
path_prefixparameter toDagsterGraphQLClientto support connecting to webserver deployments behind a non-root path prefix. - Added a
storage_kindfield toTableMetadataSetto denote the storage system that backs a table (e.g.,snowflake,databricks,bigquery). define_asset_jobnow validates owner strings at definition time, producing clearer error messages for invalid owners.- [ui] The
schedule:andsensor:selector syntax now matches assets in jobs targeted by the schedule or sensor, in addition to assets directly in the asset selection. - [dagster-azure] Added a configurable
endpoint_suffixparameter to ADLS2 and Blob Storage utilities, resources, components, and compute log manager (also exposed asendpointSuffixin the Helm chart forAzureBlobComputeLogManager), enabling Azure Government Cloud, Azure China, and other sovereign cloud endpoints. - [dagster-dbt] Added a
translationparameter toDbtCloudComponentfor customizing how dbt models are translated into Dagster assets. - [dagster-soda] Added a new
dagster-sodalibrary (preview) containing theSodaScanComponentfor executing Soda Core data quality checks.
Bugfixes
- Fixed a bug where asset checks could be dropped from a job during subset selection.
- Asset checks can now be defined on assets whose names contain dots.
- [dg] Fixed a bug where
dg plus deploydid not read the local config stored bydg plus login. - [ui] Fixed the "Flatten graphs" toggle in the graph query input on the Launchpad.
- [ui] Restored CommonMark-compliant Markdown line break rendering in Markdown descriptions and docs blocks. (Thanks, @vidiyala99!)
- [dagster-airbyte] Fixed an issue where Airbyte job timestamp parsing could fail with newer Airbyte API versions due to stricter ISO format handling.
- [dagster-aws]
InsufficientFreeAddressesInSubnetand "Task provisioning failed" are now treated as transient ECS stop reasons, so affected runs are retried instead of marked as a permanent failure. - [dagster-dbt] Fixed a bug where path-based dbt selectors did not match assets correctly because absolute paths were not calculated relative to the project root.
- [dagster-dbt] Fixed an issue where conflicting source metadata could spuriously raise an error.
Documentation
- Added documentation for multi-region failover in Dagster+.
- Renamed the DuckDB integration documentation to MotherDuck.
- Rebranded the in-app Compass assistant as Dagster+ AI in documentation.
1.13.3 (core) / 0.29.3 (libraries)
New
- Added an
ownersparameter todefine_asset_job, mirroring the field on regular jobs. - Improved error messages when required config is missing in Dagster jobs, with clearer guidance on which fields are missing and example config to provide.
LOGS_CAPTUREDevent messages no longer say "Started capturing logs", since compute log managers typically upload logs on completion rather than streaming in real time.- [ui] Added client-side validation for the deployment settings YAML editor that warns when unknown keys are detected.
- [ui] Op tags are now shown on the asset details page in a separate "Op tags" row, alongside the asset's own tags.
- [ui] Redesigned the sensor dry run dialog with a stacked cursor layout, copy buttons for cursor values, and an inline run config preview.
- [dagster-clickhouse] Added new
dagster-clickhouse,dagster-clickhouse-pandas, anddagster-clickhouse-polarslibraries with native ClickHouse resources, IO managers, anddgcomponents. - [dagster-cloud] The
EcsUserCodeLaunchernow accepts arepository_credentialsconfig option, allowing ECR credentials to be configured at the agent or deployment level instead of only per code location. - [dagster-postgres] Added workload identity federation (WIF) authentication for PostgreSQL via a new
auth_providerconfig option (azure_wif,gcp_wif, oraws_wif), with optional extrasdagster-postgres[azure],dagster-postgres[gcp], anddagster-postgres[aws]. The Helm chart supports WIF viaglobal.postgresqlAuthWifEnabled. (Thanks, @JohnMav!)
Bugfixes
- Fixed an error when starting a schedule whose name was previously used for a sensor (or vice versa).
- Fixed a race condition in Pipes that could cause dynamically-added log readers to be missed.
- [dg] Fixed bugs in the GitLab hybrid scaffolder used by
dg plus deploy configure. - [ui] Fixed the open/close behavior of the partition selector in the materialization dialog.
- [ui] Fixed false-positive syntax errors in asset selection inputs while the autocomplete dropdown was open.
- [ui] Fixed
key:valueautocompletion in search inputs not advancing into value-suggestion context when accepting a key with the Enter key. - [ui] Fixed the asset catalog "Group by Owner" and "Group by Tags" views not showing assets with empty owner or tag arrays under a "None" section.
- [ui] Fixed asset selection summary tiles with long titles visually overlapping with adjacent UI.
- [ui] Fixed monospace text in several places that had reverted to the default font.
- [dagster-airbyte] Fixed errors parsing timestamps from newer versions of the Airbyte API.
- [dagster-cloud] Fixed an issue where the
--defs-state-infoargument was applied to the multipex server command but not to the gRPC server command in serverless deployments. - [dagster-dbt] Fixed an issue where dbt assets configured with
enable_duplicate_source_asset_keyscould emit duplicate dependency entries and ambiguous source metadata when multiple dbt sources resolved to the same asset key. - [dagster-k8s] Added a workaround for an upstream issue in the Kubernetes Python client where setting the
NO_PROXYorno_proxyenvironment variable did not affect the configuration of Kubernetes API calls. - [dagster-snowflake] Replaced deprecated Pydantic
validatorusage withfield_validatorto eliminate Pydantic deprecation warnings.
Documentation
- Added documentation for writing unit tests for declarative automation conditions.
- Added documentation for branch deployment RBAC.
- Added a dedicated documentation page for branch deployment concurrency settings.
- Documented the new asset-event webhook tokens.
- Clarified asset metric monitor behavior in the alerts documentation.
- Added required API scopes to the Databricks connection documentation.
- Updated the Databricks connection documentation with an OAuth flow for service principals.
- [dg] Documented the
dgCLI configuration option for setting a custom virtual environment path.
1.13.2 (core) / 0.29.2 (libraries)
New
- [ui] Users can now hold Cmd or Ctrl while clicking launch, materialize, re-execute, or retry buttons to open the resulting run in a new browser tab instead of navigating away from the current page.
- [ui] Added an Azure DevOps kind tag icon for assets tagged with the
azuredevopskind. - [dg] The
dg utils integrationssub-command has been removed. - [dagster-databricks]
DatabricksClientResourcenow accepts acredentials_strategyargument, enabling federated and custom authentication flows via the Databricks SDK'sCredentialsStrategyprotocol. (Thanks, @hbellur0526!)
Bugfixes
- Fixed an issue where the asset daemon could fail when encountering foreign sensor cursors in automation condition sensor state.
- Fixed an issue where run retries were sometimes not executed by the event log consumer daemon.
- Fixed an issue where an invalid multi-partition key format could cause errors when computing partition statuses.
- [dg] Fixed an issue where the
--api-tokenflag was ignored when passed todgCLI commands. - [dg] Fixed an issue in
dg api asset-checkswhere the command used a non-existent top-level GraphQL resolver path. - [ui] Fixed incorrect font rendering caused by a CSS variable name mismatch.
- [ui] Fixed an issue where the run config editor dialog displayed at an incorrect height.
- [ui] Fixed an issue where clicking asset selection autocomplete suggestions could cause the input to lose focus.
- [ui] Fixed an issue where the Users table in Org Settings did not support horizontal scrolling.
- [dagster-cloud-cli] Fixed GitHub Enterprise authentication for branch deployment CI/CD workflows.
- [dagster-databricks] Fixed a
TypeErrorwhencredentials_strategywasNone. - [dagster-dbt] Fixed a thread-safety issue in concurrent metadata fetching that could cause intermittent errors.
- [dagster-snowflake-polars] Fixed an issue where dynamic partition keys were not properly escaped.
Dagster Plus
- [ui] Branch deployments now expose run queue settings in the run queue configuration dialog.
1.13.1 (core) / 0.29.1 (libraries)
New
- Added
PipesCompositeMessageReader(preview) to support multiple concurrent message streams in a single Pipes session. - Added
sensor:,schedule:, andjob:attribute support to the asset selection syntax (e.g.,sensor:my_sensor,job:my_job). - Added
automation_type:attribute support to the asset selection syntax, allowing queries likeautomation_type:scheduleorautomation_type:sensor. - State-backed integration components (e.g.,
AirbyteWorkspaceComponent,FivetranWorkspaceComponent) now default toLOCAL_FILESYSTEMstate storage instead oflegacy_code_server_snapshots. - [ui] Improved asset selection autocomplete performance.
- [dagster-dbt]
DagsterDbtTranslatorSettings.enable_source_metadatanow defaults toTrue, enabling upstream asset key remapping based on dbt source table names by default.
Bugfixes
- Fixed a possible SQL injection in a few IO managers when used with dynamic partition.
- Fixed an issue where runs executed via
execute_in_process()would sometimes fail to display the step timeline in the Dagster UI. - Fixed a bug where multi-asset definitions containing virtual assets would produce incorrect execution plans.
- [ui] Fixed the tick result button for sensors using dynamic partitions.
- [dagster-aws]
PickledObjectS3IOManagernow defaults the S3 key prefix to an empty string when none is provided. (Thanks, @aksestok!) - [dagster-databricks]
PipesDatabricksClient.run_multi_taskandPipesDatabricksServerlessClient.run_multi_tasknow give each submitted task its own message destination by default, fixing chunk-file collisions between concurrent tasks. - [dagster-dbt] Fixed the dbt Cloud v2 polling sensor and adhoc job to use stable, ID-based identifiers, preventing naming conflicts.
- [dagster-dbt] Fixed the dbt Cloud v2 polling sensor to correctly filter out runs from adhoc jobs.
Documentation
- Added a guide for virtual assets.
- Added documentation for partitioned asset checks.
- Added documentation for the
free_slots_after_run_end_secondsconcurrency configuration option. - Clarified SCIM provisioning and SSO permission requirements in the authentication documentation.
- Added a guide for migrating Dagster+ from the US to the EU control plane.
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 apicommands 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_virtualparameter on@assetandAssetSpecfor 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_specandexternal_assets_from_specs. UseAssetSpecinputs directly toDefinitions(...)orAssetsDefinition(specs=[...])instead. - Removed deprecated single-
AssetKeydepsargument support from asset dependencies. Use a sequence ofAssetDepobjects instead. - Removed deprecated
get_all_asset_specsfromDefinitions. - Removed deprecated
legacy_freshness_policyparameter from@observable_source_asset. - Removed deprecated
auto_observe_interval_minutesparameter from@observable_source_asset. - Removed deprecated
legacy_freshness_policies_by_output_nameparameter fromAssetsDefinition. - Removed deprecated
load_component_at_pathfromComponentLoadContext. Usecontext.load_componentinstead. - Removed deprecated
build_defs_at_pathfromComponentLoadContext. - [dagster-airbyte] Removed deprecated
AirbyteStateenum (useAirbyteJobStatusTypeinstead) and removed deprecatedlegacy_freshness_policyandauto_materialize_policyparameters frombuild_airbyte_assets(). - [dagster-looker] Removed deprecated
DagsterLookerResource.build_defs,get_asset_key,get_dashboard_asset_key,get_explore_asset_key,get_view_asset_keymethods, andType[DagsterLookerApiTranslator]support from API helpers. - [dagster-powerbi] Removed deprecated
PowerBIWorkspace.build_defs(), translator key helpers (useget_asset_spec()instead), andType[DagsterPowerBITranslator]support inload_powerbi_asset_specs()(pass an instance instead). - [dagster-sigma] Removed deprecated
SigmaOrganization.build_defs(),DagsterSigmaTranslator.get_asset_key()(useget_asset_spec(...).keyinstead), andType[DagsterSigmaTranslator]support inload_sigma_asset_specs()(pass an instance instead).
New
- (Preview) Added support for virtual assets. The
@assetdecorator andAssetSpecnow accept anis_virtualparameter 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_assetssetting toDbtTranslatorSettingsfor automatically treating dbt views as virtual assets.
Bugfixes
- Fixed an issue where a sensor targeting a job with
run_tagsand specifying anasset_selectionin theRunRequestwould not apply the job'srun_tagsto the resulting run. - Fixed a potential error in YAML config snapshot conversion when encountering
Nonefields. - [dg] Fixed
dg plus deploy configuregenerating 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-reactlibrary 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
- Added SCIM Groups filter support for
members.value eqqueries. - Fixed an issue where the Dagster+ Kubernetes agent would emit log noise about
DAGSTER_CLOUD_RAW_GIT_URLandDAGSTER_CLOUD_GIT_URLenvironment variables whenonlyAllowUserDefinedK8sConfigFieldswas set. - Fixed incorrect alert type label for metrics alerts.
1.12.22 (core) / 0.28.22 (libraries)
New
- [dg]
dgprojects can now configureagent_queueandimageinpyproject.tomlunder[tool.dg.project], which are included in the generateddagster_cloud.yamlwhen runningdg plus deploy. - [dg] Added
dg api job listanddg api job getcommands for querying job metadata including schedules, sensors, and tags. - [dg] Added
dg api asset-check list,dg api asset-check get-executions, anddg api asset get-partition-statuscommands. - [ui] The asset overview page now shows a loading spinner for "Latest materialization" while data is loading, instead of a dash.
- [ui] Removed the legacy asset catalog component and the
flagAssetCatalogSidebarfeature flag. The asset catalog sidebar is now always enabled. - [ui] The pipeline snapshot link is no longer shown in the Run Actions Menu for hidden asset group jobs.
- [dagster-aws] The
EcsRunLauncherand Dagster+ ECS agent now supply idempotency tokens when creating ECS services and tasks, improving retry behavior after transient failures. - [dagster-dbt]
DbtCloudComponentnow supports an option to include a polling sensor for monitoring dbt Cloud job runs.
Bugfixes
- Fixed
snap_to_yamlincorrectly removing empty dicts that represent valid config values forPermissive,Map, andNoneableconfig types. - Fixed an issue where resources defined in parent components could incorrectly trigger
DagsterInvalidDefinitionErrorduring nested componentpost_processingresolution. (Thanks, @vidiyala99!) - [dagster-aws] Fixed
PipesECSClientincorrectly treating a task that failed to start as a successful execution. - [dagster-fivetran] Fixed an incorrect connector URL format generated by the Fivetran integration.
- [ui] Fixed a performance issue where canceling a backfill before any runs executed would unnecessarily fetch the entire asset materialization history.
- [dg] Fixed
dg plus deploynot correctly pulling in environment variables when refreshing definitions state for state-backed components. - [ui] Fixed ANSI color rendering in run logs.
- [ui] Fixed a visual rendering issue with the graph depth input field.
Documentation
- Added a migration guide for moving from sensors to declarative automation.
- Added documentation for the ECS executor.
Dagster Plus
- Alert policies can now be muted for a configurable duration. Muted policies do not send notifications and show when they will resume.
- [dagster-dbt] Added
dg plus integrations dbt download-manifestcommand to download dbt manifests from Dagster Plus for local development.
1.12.21 (core) / 0.28.21 (libraries)
New
- Removed the
setuptools<82pin from thedagsterpackage. - Added support for the
partitionsattribute in asset selection syntax to filter assets by partition definition type (e.g.,partitions:"static"). - [dagster-spark] Added Spark Declarative Pipeline support in feature preview.
- [ui] Added a date range picker to the backfill modal for date-formatted partitions.
- [ui] The "Report evaluation" action for asset checks has been moved to a consolidated dropdown menu.
Bugfixes
- [dagster-dbt] Fixed issue that could cause
DbtProjectComponents with custom translation methods to not work with utilities likebuild_schedule_from_dbt_selection. - [ui] Fixed asset catalog sidebar not clearing key prefix filters when navigating back to root.
- [ui] Fixed deployment switcher button text color in Light Mode.
- [ui] Fixed duplicate "Catalog" breadcrumb on asset detail pages.
- [ui] Fixed lineage graph edges disappearing when zoomed out by increasing the maximum visible edge limit.
Documentation
- Added cross-account service discovery documentation for ECS agents, including the
service_discovery_role_arnconfiguration parameter. - Added Snowflake EL ingestion pattern documentation.
1.12.20 (core) / 0.28.20 (libraries)
New
- Execution context classes (
OpExecutionContext,AssetExecutionContext,AssetCheckExecutionContext) now expose amulti_partition_keyproperty that returns aMultiPartitionKeywhen the current run is a multi-partition run. - Added
BrazeandRunpodkind tags. (Thanks, @dragos-pop!) - [dagster-databricks] The Databricks job run URL is now rendered as a clickable link in the Dagster UI.
- [dagster-dbt] Added
DbtCloudComponentfor loading dbt Cloud projects as Dagster assets using the Components API. - [dagster-dbt] The
dbt_cloud_assetsdecorator now supports partitioned assets via thepartitions_defparameter. - [dagster-fivetran] Added a polling sensor for Fivetran observability, which detects externally-triggered syncs and emits materialization events.
- [dagster-fivetran]
FivetranWorkspacenow supports aretry_on_rescheduleoption to automatically retry syncs rescheduled by Fivetran due to quota limits, as well asresyncoperations. - [dagster-fivetran] The Fivetran translator now includes sync schedule and custom report metadata on connector assets.
- [dagster-k8s] The Dagster Helm chart and Dagster+ Kubernetes Agent Helm chart now support
k8sApiCaBundlePathto configure a custom CA certificate path for Kubernetes API communication. - [dagster-k8s] Code location server Kubernetes Services now support a
service_spec_configfield for arbitrary Kubernetes Service spec overrides (for example,clusterIP: Nonefor headless services).
Bugfixes
- Fixed an issue where time window partitions with exclusions would sometimes create more runs than needed when using single-run backfills.
- Fixed a "Cannot access partition_key for a non-partitioned run" error that could occur with multi-asset definitions that included non-partitioned assets or asset checks alongside partitioned ones.
- [dagster-aws] Fixed
s3_pickle_io_managerfailing with dynamic outputs when step keys contain bracket characters in the generated S3 object path. - [dagster-aws] Fixed an issue in
PipesEMRServerlessClientwhere a custom CloudWatch log group name configured inmonitoringConfiguration.cloudWatchLoggingConfiguration.logGroupNamewas ignored, causing log streaming to always use the default/aws/emr-serverlesslog group. (Thanks, @kchainani-figma!) - [ui] Fixed the asset recent updates trend visualization when multiple event types share the same run ID.
- [ui] Fixed text wrapping and spacing in the asset event detail view for long partition names and run titles.
Documentation
- Added a troubleshooting guide for Kubernetes agent network connectivity issues, including TCP keepalive configuration recommendations for Helm chart deployments.
1.12.19 (core) / 0.28.19 (libraries)
New
- Added a "Report Execution" dialog to the asset checks detail view, allowing users to manually record check evaluation results.
- Added database pool configuration options (
--db-pool-recycle,--db-pool-pre-ping, and others) todg devanddagster dev. - Added
dg plus config viewcommand for inspecting the current CLI configuration. - [ui] Updated the Usage dialog and Run timeline to display "Jobless asset materializations" (previously "Ad hoc materializations") with a tooltip describing what is grouped within this category.
- [ui] Planned run events are now excluded from the event count shown in the run log filter.
- [dagster-azure] Added component support for
dagster-azure, includingAzureBlobStorageResourceComponentandADLS2ResourceComponentfor declarative YAML configuration of Azure resources. - [dagster-databricks]
DatabricksAssetBundleComponentis now subsettable at the job level, enabling selective execution of individual Databricks tasks. - [dagster-databricks]
DatabricksAssetBundleComponentnow uses the Databricks CLI to resolve variable references to task and job names in bundle templates. - [dagster-databricks] Databricks jobs are now cancelled when the corresponding Dagster run is terminated in
DatabricksWorkspaceComponent. - [dagster-dbt]
dagster-dbtnow prefersdbt-corefor manifest parsing when it is installed. - [dagster-gcp] Added
BigQueryResourceComponent,GCSResourceComponent,GCSFileManagerResourceComponent, andDataprocResourceComponentfor declarative YAML configuration of GCP resources. - [dagster-gcp]
BigQueryIOManagernow supports a configurablewrite_modeparameter (truncate,replace, orappend).
Bugfixes
- Fixed an issue where auto-run reexecution would attempt to rerun jobs belonging to already-completed or cancelled backfills.
- Fixed an issue where backfill errors that were subsequently retried would remain incorrectly associated with the backfill.
dg plus pull envnow merges pulled secrets into the existing.envfile instead of replacing it, preserving any locally-set variables not present in Dagster Plus.- [ui] Fixed rendering of newlines in markdown blockquotes in the UI.
- [dagster-databricks] Fixed a
KeyErrorforrun_page_urlinDatabricksWorkspaceComponent. - [dagster-databricks] Fixed asset mapping in
DatabricksAssetBundleComponentandDatabricksWorkspaceComponentto use job and task key combinations, preventing conflicts when task keys are not unique across jobs.
Dagster Plus
- The Dagster+ agent now automatically redeploys local code servers that enter a failure state when the control plane expects them to be loaded.
1.12.18 (core) / 0.28.18 (libraries)
New
- Added event type filtering to the asset Recent Updates timeline, allowing users to toggle between Materializations and Observations when both event types are present. Filter preference is persisted to local storage.
psycopg2-binaryhas been removed as a dependency fromdagster-postgres. If you were previously relying on this transitive dependency, you may need to explicitly addpsycopg2-binaryto your project.- [ui] The launchpad UI no longer prefills optional resource defaults in the config editor. To see and edit the defaults, click "Scaffold all default config".
- [ui] For op jobs in code locations that have reloaded, the launchpad now always shows a message indicating that the config may be stale.
- [ui] Asset health status indicators now distinguish between loading, unknown, and no data states for improved debugging.
- [ui] The asset overview timeline now correctly displays the most recent event without cutting it off.
- [dagster-dbt]
DbtProjectandDbtProjectComponentnow exposeprepare_project_cli_argsto allow customizing CLI arguments used to generate the manifest. - [dagster-looker, dagster-omni, dagster-powerbi, dagster-sigma, dagster-tableau] BI integration assets are now automatically enriched with
dagster/table_namemetadata. Additionally,dagster-tableauanddagster-lookerassets now populatedagster/storage_kindbased on the upstream connection type. - [dagster-sling] The
slingpackage import is now deferred to improve import-time performance.
Bugfixes
- Fixed a bug where Dagster incorrectly called
__enter__on nested resource attributes annotated withdagster.ResourceDependencyduring parent resource setup. (Thanks, @danielgafni!) - [ui] Fixed text wrapping and layout for long URIs in asset storage metadata section.
Documentation
- Added documentation for custom metrics in Dagster+ Insights.
- Added and enhanced webhook alerting documentation, including a guide for incident.io integration.
Dagster Plus
- Organization-level timezone settings are now supported, allowing organizations to set a default timezone for users who haven't explicitly set a preference.
- [ui] Asset job run data is now included in Job insights.
- [ui] Code locations with loaded but failed agents now display a warning icon with agent status details in a popover.
- [ui] Added run queue time metric visualization to Job insights.
- [ui] Updated Alert policy list style for improved scannability and legibility.
1.12.17 (core) / 0.28.17 (libraries)
Bugfixes
- Fix bug with inclusion of built webapp in
dagster-webserverthat caused the Dagster UI to fail to load.
1.12.16 (core) / 0.28.16 (libraries) (YANKED)
This version of Dagster inadvertently did not include the webapp code in the published dagster-webserver package.
Bugfixes
- [ui] Fixed redirect to login when the user's session expires.
- [ui] Fixed console error noise during asset lineage navigation.
Dagster Plus
- [ui] Improved loading states and autoscroll behavior in the AI chat UI.
- [ui] Fixed the icon selector in the saved selection creation flow.
1.12.15 (core) / 0.28.15 (libraries)
New
- Pool names can now be any non-whitespace character, instead of requiring alphanumbeic characters, slashes, and underscores.
- [dagster-aws] The
EcsRunLauncherwill now retry a task launch when a RunTask API call fails due to a throttling error in an underlying EC2 API call. - [dagster-tableau] Tableau workbooks and projects can now be filtered using the
workbook_selectorandproject_selectorinTableauComponent.
Bugfixes
- [ui] Fixed issue where saved launchpad config was not used for single-partition asset materializations.
- [ui] Fix console error noise during asset lineage navigation.
- [ui] Fixed an issue where the "Start X Automations" and "Stop X Automations" menu options on the Automations tab were sometimes incorrectly disabled.
- [dagster-dbt] The
DbtProjectconstructor now correctly accepts strings for thetarget_pathparameter.
1.12.14 (core) / 0.28.14 (libraries)
New
@asset_checkandAssetCheckSpecnow support apartitions_defparameter, allowing checks to execute against specific partitions of their upstream asset rather than the entire contents. If set, the partition definition must match the definition of the targeted asset.- [ui] The "Select all" checkbox has been restored to the Automations list.
Bugfixes
- Fixed performance issue where the partition selector would freeze for 30+ seconds when selecting "All" on assets with large (100k+) partition sets. (Thanks, @ljodea!)
- Fixed an issue with cron schedules using step patterns (like
*/10or*/30) in the day-of-month field where invalid days weren't properly skipped. - [ui] Fixed an issue that could cause incorrect partition statuses to be displayed in the UI.
- [ui] Partition percentages now round in a more intuitive way.
- [ui] Row count metadata is now displayed even when set to zero.
- [dagster-databricks] Fixed an issue where op name generation would occasionally lead to collisions.
- [dagster-sigma] When building assets for Sigma workbooks that depend on tables unknown to Dagster, an error is logged instead of throwing an exception.
- [dagster-k8s] Fixed an issue where
PipesK8sClientwould sometimes fail when containers in theignored_containerslist failed. - [dagster-github] Ensured compatibility with
pyjwt>=2.11.0,which introduced breaking changes.
Documentation
- Added an example of censoring PII in run logs.
- Updated branch deployment docs to include single-agent setup.
1.12.13 (core) / 0.28.13 (libraries)
New
- [dagster-polytomic]
PolytomicComponenthas been added and can be used to represent your Polytomic bulk sync schemas as external assets in Dagster - [dagster-fivetran] Added warning log when no Fivetran groups are found to help users troubleshoot permission issues.
1.12.12 (core) / 0.28.12 (libraries)
New
dg plus deploy startnow validates deployment akin todagster-cloud ci check.- [dagster-aws] Added a suite of new components that map to all existing resources in the library.
- [dagster-k8s] Increased the maximum version of kubernetes to 35.x.x.
- [ui] You can now unpin asset groups that no longer contain any assets.
Bugfixes
- Fixed type errors reported by Pyright's strict mode when using
@asset,@multi_asset, and@graph_assetdecorators. - Running
dg launch --partition-rangefor an asset without an explicitly defined single-run-backfill policy now provides a clean error message. - Fixed issue where the celery_executor
config_sourcevalues were ignored. (Thanks, @danielbitzer!) - Fixed issue with
dg plus deploy refresh-defs-stateURL construction for EU regions. - Fixed helm chart validation error when enabling
concurrencyconfig with defaultqueuedRunCoordinatorvalues. dg list defsnow correctly shows labels for automation conditions.- [dagster-dbt] Fixed issue with the
dagster-dbt project prepare-and-packagecommand where user files nameddbt.pycould shadow thedbtmodule. (Thanks, @alexaustin007!) - [dagster-dbt] Fix errors raised when dbt functions are present in dbt manifest. (Thanks, @eso-xyme!)
- [ui] Fixes a bug where creating an alert policy from your Favorites would crash the app.
Dagster Plus
- Fixed an issue while using the 'isolated_agents' configuration parameter in Dagster+ where runs that were terminated due to exceeding a maximum runtime would sometimes fail to terminate the run worker process after the run was marked as failed.