Dagster Versions Save

An orchestration platform for the development, production, and observation of data assets.

1.3.1

1 year ago

New

  • Performance improvements when evaluating time-partitioned run requests within sensors and schedules.
  • [ui] Performance improvements when loading the asset catalog and launchpad for deployments with many time-partitioned assets.

Bugfixes

  • Fixed an issue where loading a Definitions object that included sensors attached to multiple jobs would raise an error.
  • Fixed a bug in which Pythonic resources would produce underlying resource values that would fail reference equality checks. This would lead to a conflicting resource version error when using the same Pythonic resource in multiple places.

1.3.0

1 year ago

Major Changes since 1.2.0 (core) / 0.18.0 (libraries)

Core

  • Auto-materialize policies replace the asset reconciliation sensor - We significantly renovated the APIs used for specifying which assets are scheduled declaratively. Compared to build_asset_reconciliation_sensors , AutoMaterializePolicys work across code locations, as well as allow you to customize the conditions under which each asset is auto-materialized. [docs]
  • Asset backfill page - A new page in the UI for monitoring asset backfills shows the progress of each asset in the backfill.
  • Clearer labels for tracking changes to data and code - Instead of the opaque “stale” indicator, Dagster’s UI now indicates whether code, upstream data, or dependencies have changed. When assets are in violation of their FreshnessPolicys, Dagster’s UI now marks them as “overdue” instead of “late”.
  • Auto-materialization and observable source assets - Assets downstream of an observable source asset now use the source asset observations to determine whether upstream data has changed and assets need to be materialized.
  • Pythonic Config and Resources - The set of APIs introduced in 1.2 is no longer experimental [community memo]. Examples, integrations, and documentation have largely ported to the new APIs. Existing resources and config APIs will continue to be supported for the foreseeable future. Check out migration guide to learn how to incrementally adopt the new APIs.

Docs

  • Improved run concurrency docs - You asked (in support), and we answered! This new guide is a one-stop-shop for understanding and implementing run concurrency, whether you’re on Dagster Cloud or deploying to your own infrastructure.
  • Additions to the Intro to Assets tutorial - We’ve added two new sections to the assets tutorial, focused on scheduling and I/O. While we’re close to wrapping things up for the tutorial revamp, we still have a few topics to cover - stay tuned!
  • New guide about building machine learning pipelines - Many of our users learn best by example - this guide is one way we’re expanding our library of examples. In this guide, we walk you through building a simple machine learning pipeline using Dagster.
  • Re-organized Dagster Cloud docs - We overhauled how the Dagster Cloud docs are organized, bringing them more in line with the UI.

Since 1.2.7 (core) / 0.18.7 (libraries)

New

  • Long-running runs can now be terminated after going over a set runtime. See the run termination docs to learn more.
  • Adds a performance improvement to partition status caching for multi-partitioned assets containing a time dimension.
  • [ui] Asset groups are now included in global search.
  • [ui] Assets in the asset catalog have richer status information that matches what is displayed on the asset graph.
  • [dagster-aws] New AthenaClientResource, ECRPublicResource, RedshiftClientResource, S3Resource, S3FileManagerResource, ConfigurablePickledObjectS3IOManager, SecretsManagerResource follow Pythonic resource system. The existing APIs remain supported.
  • [dagster-datadog] New DatadogResource follows Pythonic resource system. The existing datadog_resource remains supported.
  • [dagster-ge] New GEContextResource follows Pythonic resource system. The existing ge_context_resource remains supported.
  • [dagster-github] New GithubResource follows Pythonic resource system. The existing github_resource remains supported.
  • [dagster-msteams] New MSTeamsResource follows Pythonic resource system. The existing msteams_resource remains supported.
  • [dagster-slack] New SlackResource follows Pythonic resource system. The existing slack_resource remains supported.

Bugfixes

  • Fixed an issue where using pdb.set_trace no longer worked when running Dagster locally using dagster dev or dagit.
  • Fixed a regression where passing custom metadata on @asset or Out caused an error to be thrown.
  • Fixed a regression where certain states of the asset graph would cause GQL errors.
  • [ui] Fixed a bug where assets downstream of source assets would sometimes incorrectly display a “New data” (previously “stale”) tag for assets with materializations generated from ops (as opposed to SDA materializations).
  • [ui] Fixed a bug where URLs for code locations named pipelines or jobs could lead to blank pages.
  • [ui] When configuring a partition-mapped asset backfill, helpful context no longer appears nested within the “warnings” section
  • [ui] For observable source assets,the asset sidebar now shows a “latest observation” instead of a “latest materialization”

Breaking Changes

  • By default, resources defined on Definitions are now automatically bound to jobs. This will only result in a change in behavior if you a) have a job with no "io_manager" defined in its resource_defs and b) have supplied an IOManager with key "io_manager" to the resource_defs argument of your Definitions. Prior to 1.3.0, this would result in the job using the default filesystem-based IOManager for the key "io_manager". In 1.3.0, this will result in the "io_manager" supplied to your Definitions being used instead. The BindResourcesToJobs wrapper, introduced in 1.2 to simulate this behavior, no longer has any effect.
  • [dagster-celery-k8s] The default kubernetes namespace for run pods when using the Dagster Helm chart with the CeleryK8sRunLauncher is now the same namespace as the Helm chart, instead of the default namespace. To restore the previous behavior, you can set the celeryK8sRunLauncher.jobNamespace field to the string default.
  • [dagster-snowflake-pandas] Due to a longstanding issue storing Pandas Timestamps in Snowflake tables, the SnowflakePandasIOManager has historically converted all timestamp data to strings before storing it in Snowflake. Now, it will instead ensure that timestamp data has a timezone, and if not, attach the UTC timezone. This allows the timestamp data to be stored as timestamps in Snowflake. If you have been storing timestamp data using the SnowflakePandasIOManager you can set the store_timestamps_as_strings=True configuration to continue storing timestamps as strings. For more information, and instructions for migrating Snowflake tables to use timestamp types, see the Migration Guide.

Changes to experimental APIs

  • Pythonic Resources and Config
    • Enabled passing RunConfig to many APIs which previously would only accept a config dictionary.
    • Enabled passing raw Python objects as resources to many APIs which previously would only accept ResourceDefinition.
    • Added the ability to pass execution config when constructing a RunConfig object.
    • Introduced more clear error messages when trying to mutate state on a Pythonic config or resource object.
    • Improved direct invocation experience for assets, ops, schedules and sensors using Pythonic config and resources. Config and resources can now be passed directly as args or kwargs.
  • The minutes_late and previous_minutes_late properties on the experimental FreshnesPolicySensorContext have been renamed to minutes_overdue and previous_minutes_overdue, respectively.

Removal of deprecated APIs

  • [previously deprecated, 0.15.0] metadata_entries arguments to event constructors have been removed. While MetadataEntry still exists and will only be removed in 2.0, it is no longer passable to any Dagster public API — users should always pass a dictionary of metadata values instead.

Experimental

  • Adds a performance improvement to the multi-asset sensor context’s latest_materialization_records_by_key function.

Documentation

  • The Google BigQuery tutorial and reference pages have been updated to use the new BigQueryPandasIOManager and BigQueryPySparkIOManager.
  • The Snowflake tutorial and reference pages have been updated to use the new SnowflakePandasIOManager and SnowflakePySparkIOManager.

Dagster Cloud

  • Previously, when deprovisioning an agent, code location servers were cleaned up in serial. Now, they’re cleaned up in parallel.

1.2.7

1 year ago

New

  • Resource access (via both required_resource_keys and Pythonic resources) are now supported in observable source assets.
  • [ui] The asset graph now shows how many partitions of each asset are currently materializing, and blue bands appear on the partition health bar.
  • [ui] Added a new page to monitor an asset backfill.
  • [ui] Performance improvement for Runs page for runs that materialize large numbers of assets.
  • [ui] Performance improvements for Run timeline and left navigation for users with large numbers of jobs or assets.
  • [ui] In the run timeline, consolidate “Ad hoc materializations” rows into a single row.
  • [dagster-dbt] Python 3.10 is now supported.
  • [dagster-aws] The EcsRunLauncher now allows you to customize volumes and mount points for the launched ECS task. See the API docs for more information.
  • [dagster-duckdb, dagster-duckdb-pandas, dagster-duckdb-pyspark] New DuckDBPandasIOManager and DuckDBPySparkIOManager follow Pythonic resource system. The existing duckdb_pandas_io_manager and duckdb_pyspark_io_manager remain supported.
  • [dagster-gcp, dagster-gcp-pandas, dagster-gcp-pyspark] New BigQueryPandasIOManager and BigQueryPySparkIOManager follow Pythonic resource system. The existing bigquery_pandas_io_manager and bigquery_pyspark_io_manager remain supported.
  • [dagster-gcp] The BigQuery resource now accepts authentication credentials as configuration. If you pass GCP authentication credentials to gcp_crentials , a temporary file to store the credentials will be created and the GOOGLE_APPLICATION_CREDENTIALS environment variable will be set to the temporary file. When the BigQuery resource is garbage collected, the environment variable will be unset and the temporary file deleted.
  • [dagster-snowflake, dagster-snowflake-pandas, dagster-snowflake-pyspark] New SnowflakePandasIOManager and SnowflakePySparkIOManager follow Pythonic resource system. The existing snowflake_pandas_io_manager and snowflake_pyspark_io_manager remain supported.

Bugfixes

  • Fixed an issue where dagster dev would periodically emit a harmless but annoying warning every few minutes about a gRPC server being shut down.
  • Fixed a schedule evaluation error that occurred when schedules returned a RunRequest(partition_key=...) object.
  • Fixed a bug that caused errors in the asset reconciliation sensor when the event log includes asset materializations with partitions that aren’t part of the asset’s PartitionsDefinition.
  • Fixed a bug that caused errors in the asset reconciliation sensor when a partitioned asset is removed.
  • Fixed an issue where run_request_for_partition would incorrectly raise an error for a job with a DynamicPartitionsDefinition that was defined with a function.
  • Fixed an issue where defining a partitioned job with unpartitioned assets via define_asset_job would raise an error.
  • Fixed a bug where source asset observations could not be launched from dagit when the asset graph contained partitioned assets.
  • Fixed a bug that caused __ASSET_JOB has no op named ... errors when using automatic run retries.
  • [ui] The asset partition health bar now correctly renders partial failed partitions of multi-dimensional assets in a striped red color.
  • [ui] Fixed an issue where steps that were skipped due to an upstream dependency failure were incorrectly listed as “Preparing” in the right-hand column of the runs timeline.
  • [ui] Fixed markdown base64 image embeds.
  • [ui] Guard against localStorage quota errors when storing launchpad config tabs.
  • [dagster-aws] Fixed an issue where the EcsRunLauncher would fail to launch runs if the use_current_ecs_task_config field was set to False but no task_definition field was set.
  • [dagster-k8s] Fixed an issue introduced in 1.2.6 where older versions of the kubernetes Python package were unable to import the package.

Community Contributions

  • The EcsRunLauncher now allows you to set a capacity provider strategy and customize the ephemeral storage used for launched ECS tasks. See the docs for details. Thanks AranVinkItility!
  • Fixed an issue where freshness policies were not being correctly applied to assets with key prefixes defined via AssetsDefinition.from_op. Thanks @tghanken for the fix!
  • Added the minimum_interval_seconds parameter to enable customizing the evaluation interval on the slack run failure sensor, thanks @ldnicolasmay!
  • Fixed a docs example and updated references, thanks @NicolasPA!

Experimental

  • The Resource annotation for Pythonic resource inputs has been renamed to ResourceParam in preparation for the release of the feature in 1.3.
  • When invoking ops and assets that request resources via parameters directly, resources can now be specified as arguments.
  • Improved various error messages related to Pythonic config and resources.
  • If the Resources Dagit feature flag is enabled, they will now show up in the overview page and search.

Documentation

1.2.6

1 year ago

Bugfixes

  • Fixed a GraphQL resolution error which occurred when retrieving metadata for step failures in the event log.

1.2.5 (core) / 0.18.5 (libraries)

New

  • materialize and materialize_to_memory now both accept a selection argument that allows specifying a subset of assets to materialize.
  • MultiPartitionsDefinition is no longer marked experimental.
  • Context methods to access time window partition information now work for MultiPartitionsDefinitions with a time dimension.
  • Improved the performance of the asset reconciliation sensor when a non-partitioned asset depends on a partitioned asset.
  • load_assets_from_package_module and similar methods now accept a freshness_policy, which will be applied to all loaded assets.
  • When the asset reconciliation sensor is scheduling based on freshness policies, and there are observable source assets, the observed versions now inform the data time of the assets.
  • build_sensor_context and build_multi_asset_sensor_context can now take a Definitions object in place of a RepositoryDefinition
  • [UI] Performance improvement for loading asset partition statuses.
  • [dagster-aws] s3_resource now accepts use_ssl and verify configurations.

Bugfixes

  • Fixed a bug that caused an error to be raised when passing a multi-asset into the selection argument on define_asset_job.
  • Fixes a graphQL error that displays on Dagit load when an asset’s partitions definition is change from a single-dimensional partitions definition to a MultiPartitionsDefinition.
  • Fixed a bug that caused backfills to fail when spanning assets that live in different code locations.
  • Fixed an error that displays when a code location with a MultiPartitionsMapping (experimental) is loaded.
  • Fixed a bug that caused errors with invalid TimeWindowPartitionMappings to not be bubbled up to the UI.
  • Fixed an issue where the scheduler would sometimes incorrectly handle spring Daylight Savings Time transitions for schedules running at 2AM in a timezone other than UTC.
  • Fixed an issue introduced in the 1.2.4 release where running pdb stopped working when using dagster dev.
  • Fixed an issue where it is was possible to create AssetMaterialization objects with a null AssetKey.
  • Previously, if you had a TimeWindowPartitionsDefinition with a non-standard cron schedule, and also provided a minute_of_hour or similar argument in build_schedule_from_partitioned_job. Dagster would silently create the wrong cron expression. It now raises an error.
  • The asset reconciliation sensor now no longer fails when the event log contains materializations that contain partitions that aren’t contained in the asset’s PartitionsDefinition. These partitions are now ignored.
  • Fixed a regression that prevented materializing dynamically partitioned assets from the UI (thanks @planvin!)
  • [UI] On the asset graph, the asset health displayed in the sidebar for the selected asset updates as materializations and failures occur.
  • [UI] The asset partitions page has been adjusted to make materialization and observation event metadata more clear.
  • [UI] Large table schema metadata entries now display within a modal rather than taking up considerable space on the page.
  • [UI] Launching a backfill of a partitioned asset with unpartitioned assets immediately upstream no longer shows the “missing partitions” warning.
  • [dagster-airflow] fixed a bug in the PersistentAirflowDatabase where versions of airflow from 2.0.0 till 2.3.0 would not use the correct connection environment variable name.
  • [dagster-census] fixed a bug with the poll_sync_run function ofdagster-census that prevented polling from working correctly (thanks @ldincolasmay!)

Deprecations

  • The run_request_for_partition method on JobDefinition and UnresolvedAssetJobDefinition is now deprecated and will be removed in 2.0.0. Instead, directly instantiate a run request with a partition key via RunRequest(partition_key=...).

Documentation

  • Added a missing link to next tutorial section (Thanks Mike Kutzma!)

1.2.4

1 year ago

New

  • Further performance improvements to the asset reconciliation sensor.
  • Performance improvements to asset backfills with large numbers of partitions.
  • New AssetsDefinition.to_source_assets to method convert a set of assets to SourceAsset objects.
  • (experimental) Added partition mapping that defines dependency relationships between different MultiPartitionsDefinitions.
  • [dagster-mlflow] Removed the mlflow pin from the dagster-mlflow package.
  • [ui] Syntax highlighting now supported in rendered markdown code blocks (from metadata).

Bugfixes

  • When using build_asset_reconciliation_sensor, in some cases duplicate runs could be produced for the same partition of an asset. This has been fixed.

  • When using Pythonic configuration for resources, aliased field names would cause an error. This has been fixed.

  • Fixed an issue where context.asset_partitions_time_window_for_output threw an error when an asset was directly invoked with build_op_context.

  • [dagster-dbt] In some cases, use of ephemeral dbt models could cause the dagster representation of the dbt dependency graph to become incorrect. This has been fixed.

  • [celery-k8s] Fixed a bug that caused JSON deserialization errors when an Op or Asset emitted JSON that doesn't represent a DagsterEvent.

  • Fixed an issue where launching a large backfill while running dagster dev would sometimes fail with a connection error after running for a few minutes.

  • Fixed an issue where dagster dev would sometimes hang when running Dagster code that attempted to read in input via stdin.

  • Fixed an issue where runs that take a long time to import code would sometimes continue running even after they were stopped by run monitoring for taking too long to start.

  • Fixed an issue where AssetSelection.groups() would simultaneously select both source and regular assets and consequently raise an error.

  • Fixed an issue where BindResourcesToJobs would raise errors encapsulating jobs which had config specified at definition-time.

  • Fixed Pythonic config objects erroring when omitting optional values rather than specifying None.

  • Fixed Pythonic config and resources not supporting Enum values.

  • DagsterInstance.local_temp and DagsterInstance.ephemeral now use object instance scoped local artifact storage temporary directories instead of a shared process scoped one, removing a class of thread safety errors that could manifest on initialization.

  • Improved direct invocation behavior for ops and assets which specify resource dependencies as parameters, for instance:

    class MyResource(ConfigurableResource):
        pass
    
    @op
    def my_op(x: int, y: int, my_resource: MyResource) -> int:
        return x + y
    
    my_op(4, 5, my_resource=MyResource())
    
  • [dagster-azure] Fixed an issue with an AttributeError being thrown when using the async DefaultAzureCredential (thanks @mpicard)

  • [ui] Fixed an issue introduced in 1.2.3 in which no log levels were selected by default when viewing Run logs, which made it appear as if there were no logs at all.

Deprecations

  • The environment_vars argument to ScheduleDefinition is deprecated (the argument is currently non-functional; environment variables no longer need to be whitelisted for schedules)

Community Contributions

  • Typos fixed in [CHANGES.md](http://CHANGES.md) (thanks @fridiculous)
  • Links to telemetry docs fixed (thanks @Abbe98)
  • --path-prefix can now be supplied via Helm chart (thanks @mpicard)

Documentation

  • New machine learning pipeline with Dagster guide
  • New example of multi-asset conditional materialization
  • New tutorial section about scheduling
  • New images on the Dagster README

All Changes

https://github.com/dagster-io/dagster/compare/1.2.3...1.2.4

See All Contributors
  • f361ef7 - [refactor] delete Materialization (#13030) by @smackesey
  • 7268f46 - Add in progress subsets to the partition cache (#13045) by @johannkm
  • 0032e2c - Add multipartitioned assets with dynamic dimension to toys (#13061) by @clairelin135
  • 89c4ed1 - add docs example for multi-asset conditional materialization (#13054) by @sryza
  • 2bd9a12 - Add docs for source asset observation jobs/schedules (#13062) by @smackesey
  • 971010b - Revert "Add in progress subsets to the partition cache (#13045)" by @johannkm
  • 40a569a - [asset-reconciliation][bug] Fix issue where overly-aggressive runs would be kicked off. (#13069) by @OwenKephart
  • 2edf1ee - tweaks to cross-repo-assets toy (#12973) by @sryza
  • 2addaa5 - Show unauthorized error graphql error message (#13064) by @salazarm
  • ece6c4d - [dagster-io/ui] Make Suggest component a bit more flexible (#13056) by @hellendag
  • d8e98d9 - Fix disabled state for launchpad button submenu (#13078) by @salazarm
  • 296dabb - Re-enable in progress subsets in the partition cache (#13082) by @johannkm
  • dce7bc6 - Add dynamic partitions name resolver to dimension type (#13070) by @clairelin135
  • 60b5e20 - asset sensor test docs (#13065) by @prha
  • 9cafa85 - Fix issue where backfill fails when gRPC server is replaced mid-backfill (#13085) by @gibsondan
  • d86e3a5 - Use instance from sensor/schedule context to instantiate resources, delay until accessed (#13041) by @benpankow
  • e20af6b - Add materializing subset to asset gql (#13046) by @johannkm
  • 90a92bf - feat(helm): add path-prefix to dagit command (#13080) by @mpicard
  • 160f3ec - Use dynamic partition definition name for dimension of multipartition definition (#13090) by @salazarm
  • e86a59c - [typing/static] Fix @repository decorator typing (#12295) by @smackesey
  • 61cc090 - [instance] make local artifact directory scheme thread safe (#13043) by @alangenfeld
  • d1e75d0 - 1.2.3 changelog (#13094) by @jamiedemaria
  • 5fd2bb6 - Ensure pyright venvs use statically legible editable installs (#13089) by @smackesey
  • e780948 - [docs] - Remove finished code from dbt tutorial template (#13091) by @erinkcochran87
  • 961a9f8 - [ui] Upgrade react-markdown (#13092) by @hellendag
  • 1c60da6 - Fix submitting backfills synchronously from graphql (#13093) by @gibsondan
  • dfbabb4 - Test get and set serialized_in_progress_partition_subset (#13063) by @johannkm
  • 6dc4e0c - ExitStack.pop_all -> close (#13050) by @alangenfeld
  • 299cd81 - Automation: versioned docs for 1.2.3 by @elementl-devtools
  • 804e113 - Fraser/rework readme (#12565) by @frasermarlow
  • ed8bc7b - [ui] Use DefaultLogLevels when there is no level state stored (#13109) by @hellendag
  • 5646656 - Set stdin to DEVNULL when opening dagster subprocesses (#13099) by @gibsondan
  • 6ff1cd9 - add a vercel github action to build docs/storybook previews (#13052) by @prha
  • d5db43f - [refactor] Remove frozen{list,dict,tags} classes (#12293) by @smackesey
  • bd4408b - Docs for setting up Gitlab CI, branch deployment guide (#12998) by @prha
  • bb0601a - Add assets def to op context (#13088) by @clairelin135
  • b73a36e - make AssetsDefinition.to_source_assets public (#13073) by @sryza
  • 0b745c3 - [docs] New ML pipeline guide PR (#13100) by @odette-elementl
  • 0d2c1a7 - [freshness-refactor][3/n] Update methods on the CachingDataTimeResolver to work with scalar data time (#12906) by @OwenKephart
  • f18cede - Fixing refs to images in the README (#13126) by @tacastillo
  • d7e906e - restrict vercel builds based on paths (#13129) by @prha
  • f707541 - fix missing snapshots (#13134) by @OwenKephart
  • 7f9d8f4 - Telemetry for dynamic partitions (#12605) by @clairelin135
  • a5c572b - fix missing snapshots (again) (#13136) by @OwenKephart
  • fd195cc - [freshness-refactor][4/n] Simplify scheduling algorithm (#13019) by @OwenKephart
  • 3d6f822 - Deprecate environment_vars argument to ScheduleDefinition, @schedule (#13044) by @smackesey
  • 157f80e - [refactor] delete hourly/daily/weekly/monthly schedule decorators, PartitionScheduleDefinition, build_schedule_from_partition (#13006) by @smackesey
  • 1d0a09e - [refactor] simplify dependency dict typing (#12521) by @smackesey
  • f3af63b - celery-k8s executor: handle stdout that's valid json but not a dagster event (#13143) by @johannkm
  • 3e41d51 - fix typo in CHANGES.md (#13140) by @fridiculous
  • 009573b - Fix branch deployment docs (#13131) by @dpeng817
  • b6bd87a - Update multiple agents docs (#13135) by @dpeng817
  • 1e5d825 - add toy for eager asset reconciliation (#13066) by @sryza
  • cddf96a - trying again by moving the images to the same directory as the readme (#13127) by @tacastillo
  • 4f0dddd - [tech][templates] moving the scaffold project's asset loader outside of the defs (#13103) by @tacastillo
  • bb470bc - [docs][tutorial-revamp] Adding a section for scheduling to the tutorial (#13101) by @tacastillo
  • 3720e26 - replacing corrupt .png image (#13157) by @frasermarlow
  • e6d28a6 - [dagster-dbt] Fix bug when calculating transitive dependencies (#13128) by @OwenKephart
  • 38059c4 - deploy storybook to prod when landing pushes on master (#13159) by @prha
  • 8d8d30a - [dagster-azure] fix: AttributeError: 'coroutine' object has no attribute 'token' (#13110) by @mpicard
  • 42131b0 - Add support for more asset tags (#13153) by @braunjj
  • c3fcacd - [caching-refactor] Remove use of get_and_update_asset_status_cache. (#13151) by @OwenKephart
  • 7ba99aa - [asset-reconciliation][perf] Cache common properties on the TimeWindowPartitionsDefinition (#12981) by @OwenKephart
  • 06e6ba5 - MultiPartitionMapping (#12950) by @clairelin135
  • 602eeb7 - [asset-reconciliation] Fix issue with duplicate runs for partitions with in-progress materializations (#13130) by @OwenKephart
  • 07f6569 - update telemetry documentation links (#13176) by @Abbe98
  • 5550452 - [structured config] respect field aliases for resources (#13177) by @jamiedemaria
  • 8e93585 - [refactor] Remove PartitionSetDefinition (#13145) by @smackesey
  • d4a3258 - TableMetadataValue toy (#13124) by @smackesey
  • 616b613 - fix repository decorator typing (#13180) by @smackesey
  • 1c64b59 - add storybook for @core in addition to @ui (#13184) by @prha
  • b8c20ca - feat(dbt): follow dbt Core's version support constraints (#13189) by @rexledesma
  • 18a8939 - Fix case where a pipeline load takes long enough that run monitoring kills it (#13156) by @gibsondan
  • 417c919 - Allow newlines in error messages in Dagit (#13193) by @gibsondan
  • 410c9d6 - Make sure we always wait for all grpc server processes to spin down in tests (#13146) by @gibsondan
  • 6ae3ddc - unpin mlflow from dagster-mlflow (#13194) by @gibsondan
  • 0ec55e4 - Greatly reduce the number of gRPC calls when doing large asset backfills (#13086) by @gibsondan
  • 305f07c - don't run mlflow tests on python 3.11 (#13197) by @gibsondan
  • cd6c386 - [pythonic config] Treat Optional as both not-required and Noneable (#12975) by @benpankow
  • 7f27f3b - [pythonic config] Add support for enums (#12979) by @benpankow
  • f494b38 - [pythonic resources] Make direct invocation of ops/assets w/ resources easier (#13002) by @benpankow
  • 93db1f4 - [bugfix] make AssetSelection.groups() resolve to only regular assets (#13196) by @smackesey
  • 613fba7 - [fix] Fix behavior of BindResourcesToJobs when jobs have config specified (#13057) by @benpankow
  • 9851c54 - [serdes] remove extraneous @cached_method use (#13206) by @alangenfeld
  • 7c045dd - 1.2.4 changelog (#13226) by @smackesey
  • 2cf765c - 1.2.4 by @elementl-devtools
  • f361ef7 - [refactor] delete Materialization (#13030) by @smackesey
  • 7268f46 - Add in progress subsets to the partition cache (#13045) by @johannkm
  • 0032e2c - Add multipartitioned assets with dynamic dimension to toys (#13061) by @clairelin135
  • 89c4ed1 - add docs example for multi-asset conditional materialization (#13054) by @sryza
  • 2bd9a12 - Add docs for source asset observation jobs/schedules (#13062) by @smackesey
  • 971010b - Revert "Add in progress subsets to the partition cache (#13045)" by @johannkm
  • 40a569a - [asset-reconciliation][bug] Fix issue where overly-aggressive runs would be kicked off. (#13069) by @OwenKephart
  • 2edf1ee - tweaks to cross-repo-assets toy (#12973) by @sryza
  • 2addaa5 - Show unauthorized error graphql error message (#13064) by @salazarm
  • ece6c4d - [dagster-io/ui] Make Suggest component a bit more flexible (#13056) by @hellendag
  • d8e98d9 - Fix disabled state for launchpad button submenu (#13078) by @salazarm
  • 296dabb - Re-enable in progress subsets in the partition cache (#13082) by @johannkm
  • dce7bc6 - Add dynamic partitions name resolver to dimension type (#13070) by @clairelin135
  • 60b5e20 - asset sensor test docs (#13065) by @prha
  • 9cafa85 - Fix issue where backfill fails when gRPC server is replaced mid-backfill (#13085) by @gibsondan
  • d86e3a5 - Use instance from sensor/schedule context to instantiate resources, delay until accessed (#13041) by @benpankow
  • e20af6b - Add materializing subset to asset gql (#13046) by @johannkm
  • 90a92bf - feat(helm): add path-prefix to dagit command (#13080) by @mpicard
  • 160f3ec - Use dynamic partition definition name for dimension of multipartition definition (#13090) by @salazarm
  • e86a59c - [typing/static] Fix @repository decorator typing (#12295) by @smackesey
  • 61cc090 - [instance] make local artifact directory scheme thread safe (#13043) by @alangenfeld
  • d1e75d0 - 1.2.3 changelog (#13094) by @jamiedemaria
  • 5fd2bb6 - Ensure pyright venvs use statically legible editable installs (#13089) by @smackesey
  • e780948 - [docs] - Remove finished code from dbt tutorial template (#13091) by @erinkcochran87
  • 961a9f8 - [ui] Upgrade react-markdown (#13092) by @hellendag
  • 1c60da6 - Fix submitting backfills synchronously from graphql (#13093) by @gibsondan
  • dfbabb4 - Test get and set serialized_in_progress_partition_subset (#13063) by @johannkm
  • 6dc4e0c - ExitStack.pop_all -> close (#13050) by @alangenfeld
  • 299cd81 - Automation: versioned docs for 1.2.3 by @elementl-devtools
  • 804e113 - Fraser/rework readme (#12565) by @frasermarlow
  • ed8bc7b - [ui] Use DefaultLogLevels when there is no level state stored (#13109) by @hellendag
  • 5646656 - Set stdin to DEVNULL when opening dagster subprocesses (#13099) by @gibsondan
  • 6ff1cd9 - add a vercel github action to build docs/storybook previews (#13052) by @prha
  • d5db43f - [refactor] Remove frozen{list,dict,tags} classes (#12293) by @smackesey
  • bd4408b - Docs for setting up Gitlab CI, branch deployment guide (#12998) by @prha
  • bb0601a - Add assets def to op context (#13088) by @clairelin135
  • b73a36e - make AssetsDefinition.to_source_assets public (#13073) by @sryza
  • 0b745c3 - [docs] New ML pipeline guide PR (#13100) by @odette-elementl
  • 0d2c1a7 - [freshness-refactor][3/n] Update methods on the CachingDataTimeResolver to work with scalar data time (#12906) by @OwenKephart
  • f18cede - Fixing refs to images in the README (#13126) by @tacastillo
  • d7e906e - restrict vercel builds based on paths (#13129) by @prha
  • f707541 - fix missing snapshots (#13134) by @OwenKephart
  • 7f9d8f4 - Telemetry for dynamic partitions (#12605) by @clairelin135
  • a5c572b - fix missing snapshots (again) (#13136) by @OwenKephart
  • fd195cc - [freshness-refactor][4/n] Simplify scheduling algorithm (#13019) by @OwenKephart
  • 3d6f822 - Deprecate environment_vars argument to ScheduleDefinition, @schedule (#13044) by @smackesey
  • 157f80e - [refactor] delete hourly/daily/weekly/monthly schedule decorators, PartitionScheduleDefinition, build_schedule_from_partition (#13006) by @smackesey
  • 1d0a09e - [refactor] simplify dependency dict typing (#12521) by @smackesey
  • f3af63b - celery-k8s executor: handle stdout that's valid json but not a dagster event (#13143) by @johannkm
  • 3e41d51 - fix typo in CHANGES.md (#13140) by @fridiculous
  • 009573b - Fix branch deployment docs (#13131) by @dpeng817
  • b6bd87a - Update multiple agents docs (#13135) by @dpeng817
  • 1e5d825 - add toy for eager asset reconciliation (#13066) by @sryza
  • cddf96a - trying again by moving the images to the same directory as the readme (#13127) by @tacastillo
  • 4f0dddd - [tech][templates] moving the scaffold project's asset loader outside of the defs (#13103) by @tacastillo
  • bb470bc - [docs][tutorial-revamp] Adding a section for scheduling to the tutorial (#13101) by @tacastillo
  • 3720e26 - replacing corrupt .png image (#13157) by @frasermarlow
  • e6d28a6 - [dagster-dbt] Fix bug when calculating transitive dependencies (#13128) by @OwenKephart
  • 38059c4 - deploy storybook to prod when landing pushes on master (#13159) by @prha
  • 8d8d30a - [dagster-azure] fix: AttributeError: 'coroutine' object has no attribute 'token' (#13110) by @mpicard
  • 42131b0 - Add support for more asset tags (#13153) by @braunjj
  • c3fcacd - [caching-refactor] Remove use of get_and_update_asset_status_cache. (#13151) by @OwenKephart
  • 7ba99aa - [asset-reconciliation][perf] Cache common properties on the TimeWindowPartitionsDefinition (#12981) by @OwenKephart
  • 06e6ba5 - MultiPartitionMapping (#12950) by @clairelin135
  • 602eeb7 - [asset-reconciliation] Fix issue with duplicate runs for partitions with in-progress materializations (#13130) by @OwenKephart
  • 07f6569 - update telemetry documentation links (#13176) by @Abbe98
  • 5550452 - [structured config] respect field aliases for resources (#13177) by @jamiedemaria
  • 8e93585 - [refactor] Remove PartitionSetDefinition (#13145) by @smackesey
  • d4a3258 - TableMetadataValue toy (#13124) by @smackesey
  • 616b613 - fix repository decorator typing (#13180) by @smackesey
  • 1c64b59 - add storybook for @core in addition to @ui (#13184) by @prha
  • b8c20ca - feat(dbt): follow dbt Core's version support constraints (#13189) by @rexledesma
  • 18a8939 - Fix case where a pipeline load takes long enough that run monitoring kills it (#13156) by @gibsondan
  • 417c919 - Allow newlines in error messages in Dagit (#13193) by @gibsondan
  • 410c9d6 - Make sure we always wait for all grpc server processes to spin down in tests (#13146) by @gibsondan
  • 6ae3ddc - unpin mlflow from dagster-mlflow (#13194) by @gibsondan
  • 0ec55e4 - Greatly reduce the number of gRPC calls when doing large asset backfills (#13086) by @gibsondan
  • 305f07c - don't run mlflow tests on python 3.11 (#13197) by @gibsondan
  • cd6c386 - [pythonic config] Treat Optional as both not-required and Noneable (#12975) by @benpankow
  • 7f27f3b - [pythonic config] Add support for enums (#12979) by @benpankow
  • f494b38 - [pythonic resources] Make direct invocation of ops/assets w/ resources easier (#13002) by @benpankow
  • 93db1f4 - [bugfix] make AssetSelection.groups() resolve to only regular assets (#13196) by @smackesey
  • 613fba7 - [fix] Fix behavior of BindResourcesToJobs when jobs have config specified (#13057) by @benpankow
  • 9851c54 - [serdes] remove extraneous @cached_method use (#13206) by @alangenfeld
  • 7c045dd - 1.2.4 changelog (#13226) by @smackesey
  • 2cf765c - 1.2.4 by @elementl-devtools

1.2.3

1 year ago
  • Jobs defined via define_asset_job now auto-infer their partitions definitions if not explicitly defined.
  • Observable source assets can now be run as part of a job via define_asset_job. This allows putting them on a schedule/sensor.
  • Added an instance property to the HookContext object that is passed into Op Hook functions, which can be used to access the current DagsterInstance object for the hook.
  • (experimental) Dynamic partitions definitions can now exist as dimensions of multi-partitions definitions.
  • [dagster-pandas] New create_table_schema_metadata_from_dataframe function to generate a TableSchemaMetadataValue from a Pandas DataFrame. Thanks @AndyBys!
  • [dagster-airflow] New option for setting dag_run configuration on the integration’s database resources.
  • [ui] The asset partitions page now links to the most recent failed or in-progress run for the selected partition.
  • [ui] Asset descriptions have been moved to the top in the asset sidebar.
  • [ui] Log filter switches have been consolidated into a single control, and selected log levels will be persisted locally so that the same selections are used by default when viewing a run.
  • [ui] You can now customize the hour formatting in timestamp display: 12-hour, 24-hour, or automatic (based on your browser locale). This option can be found in User Settings.

Bugfixes

  • In certain situations a few of the first partitions displayed as “unpartitioned” in the health bar despite being materialized. This has now been fixed, but users may need to run dagster asset wipe-partitions-status-cache to see the partitions displayed.
  • Starting 1.1.18, users with a gRPC server that could not access the Dagster instance on user code deployments would see an error when launching backfills as the instance could not instantiate. This has been fixed.
  • Previously, incorrect partition status counts would display for static partitions definitions with duplicate keys. This has been fixed.
  • In some situations, having SourceAssets could prevent the build_asset_reconciliation_sensor from kicking off runs of downstream assets. This has been fixed.
  • The build_asset_reconciliation_sensor is now much more performant in cases where unpartitioned assets are upstream or downstream of static-partitioned assets with a large number of partitions.
  • [dagster-airflow] Fixed an issue were the persistent Airflow DB resource required the user to set the correct Airflow database URI environment variable.
  • [dagster-celery-k8s] Fixed an issue where run monitoring failed when setting the jobNamespace field in the Dagster Helm chart when using the CeleryK8sRunLauncher.
  • [ui] Filtering on the asset partitions page no longer results in keys being presented out of order in the left sidebar in some scenarios.
  • [ui] Launching an asset backfill outside an asset job page now supports partition mapping, even if your selection shares a partition space.
  • [ui] In the run timeline, date/time display at the top of the timeline was sometimes broken for users not using the en-US browser locale. This has been fixed.

1.2.2

1 year ago

New

  • Dagster is now tested on Python 3.11.

  • Users can now opt in to have resources provided to Definitions bind to their jobs. Opt in by wrapping your job definitions in BindResourcesToJobs. This will become the default behavior in the future.

    @op(required_resource_keys={"foo")
    def my_op(context)
        print(context.foo)
    
    @job
    def my_job():
      my_op()
    
    defs = Definitions(
        jobs=BindResourcesToJobs([my_job])
        resources={"foo": foo_resource}
    
  • Added dagster asset list and dagster asset materialize commands to Dagster’s command line interface, for listing and materializing software-defined assets.

  • build_schedule_from_partitioned_job now accepts jobs partitioned with a MultiPartitionsDefinition that have a time-partitioned dimension.

  • Added SpecificPartitionsPartitionMapping, which allows an asset, or all partitions of an asset, to depend on a specific subset of the partitions in an upstream asset.

  • load_asset_value now supports SourceAssets.

  • [ui] Ctrl+K has been added as a keyboard shortcut to open global search.

  • [ui] In the run logs table, the timestamp column has been moved to the far left, which will hopefully allow for better visual alignment with op names and tags.

  • [dagster-dbt] A new node_info_to_definition_metadata_fn to load_assets_from_dbt_project and load_assets_from_dbt_manifest allows custom metadata to be attached to the asset definitions generated from these methods.

  • [dagster-celery-k8s] The Kubernetes namespace that runs using the CeleryK8sRunLauncher are launched in can now be configured by setting the jobNamespace field in the Dagster Helm chart under celeryK8sRunLauncherConfig.

  • [dagster-gcp] The BigQuery I/O manager now accepts timeout configuration. Currently, this configuration will only be applied when working with Pandas DataFrames, and will set the number of seconds to wait for a request before using a retry.

  • [dagster-gcp] [dagster-snowflake] [dagster-duckdb] The BigQuery, Snowflake, and DuckDB I/O managers now support self-dependent assets. When a partitioned asset depends on a prior partition of itself, the I/O managers will now load that partition as a DataFrame. For the first partition in the dependency sequence, an empty DataFrame will be returned.

  • [dagster-k8s] k8s_job_op now supports running Kubernetes jobs with more than one pod (Thanks @Taadas).

Bugfixes

  • Fixed a bug that causes backfill tags that users set in the UI to not be included on the backfill runs, when launching an asset backfill.
  • Fixed a bug that prevented resume from failure re-execution for jobs that contained assets and dynamic graphs.
  • Fixed an issue where the asset reconciliation sensor would issue run requests for assets that were targeted by an active asset backfill, resulting in duplicate runs.
  • Fixed an issue where the asset reconciliation sensor could issue runs more frequently than necessary for assets with FreshnessPolicies having intervals longer than 12 hours.
  • Fixed an issue where AssetValueLoader.load_asset_value() didn’t load transitive resource dependencies correctly.
  • Fixed an issue where constructing a RunConfig object with optional config arguments would lead to an error.
  • Fixed the type annotation on ScheduleEvaluationContext.scheduled_execution_time to not be Optional.
  • Fixed the type annotation on OpExecutionContext.partition_time_window ****(thanks @elben10).
  • InputContext.upstream_output.log is no longer None when loading a source asset.
  • Pydantic type constraints are now supported by the Pythonic config API.
  • An input resolution bug that occurred in certain conditions when composing graphs with same named ops has been fixed.
  • Invoking an op with collisions between positional args and keyword args now throws an exception.
  • async def ops are now invoked with asyncio.run.
  • TimeWindowPartitionDefinition now throws an error at definition time when passed an invalid cron schedule instead of at runtime.
  • [ui] Previously, using dynamic partitions with assets that required config would raise an error in the launchpad. This has been fixed.
  • [dagster-dbt] Previously, setting a cron_schedule_timezone inside of the config for a dbt model would not result in that property being set on the generated FreshnessPolicy. This has been fixed.
  • [dagster-gcp] Added a fallback download url for the GCSComputeLogManager when the session does not have permissions to generate signed urls.
  • [dagster-snowflake] In a previous release, functionality was added for the Snowflake I/O manager to attempt to create a schema if it did not already exist. This caused an issue when the schema already existed but the account did not have permission to create the schema. We now check if a schema exists before attempting to create it so that accounts with restricted permissions do not error, but schemas can still be created if they do not exist.

Breaking Changes

  • validate_run_config no longer accepts pipeline_def or mode arguments. These arguments refer to legacy concepts that were removed in Dagster 1.0, and since then there have been no valid values for them.

Experimental

  • Added experimental support for resource requirements in sensors and schedules. Resources can be specified using required_resource_keys and accessed through the context or specified as parameters:

    @sensor(job=my_job, required_resource_keys={"my_resource"})
    def my_sensor(context):
        files_to_process = context.my_resource.get_files()
    		...
    
    @sensor(job=my_job)
    def my_sensor(context, my_resource: MyResource):
        files_to_process = my_resource.get_files()
    		...
    

Documentation

  • Added a page on asset selection syntax to the Concepts documentation.

All Changes

https://github.com/dagster-io/dagster/compare/1.2.1...1.2.2

See All Contributors
  • fb5de00 - [dagster-gcp-pandas] add timeout config (#12637) by @jamiedemaria
  • b91626c - [docs][tutorial-revamp] Basic tutorial revamp parts 1 through 4 (#12509) by @tacastillo
  • f49ec38 - feat(dbt): add support for --debug (#12722) by @rexledesma
  • 5753806 - Default useful Dagster helm chart features to on (#12737) by @gibsondan
  • 589df01 - [For 1.2] Allow both protobuf 3 and 4 in dagster (#12466) by @gibsondan
  • 953e377 - [toys repo] Export partitioned assets toys (#12733) by @salazarm
  • c9ace2c - [pythonic config] Allow using 'resource_defs' with resource args in assets (#12679) by @benpankow
  • bfc222c - [refactor] Remove symbols deprecated until 1.2 (#12360) by @smackesey
  • 5321cfc - [dagster-snowflake] fix inconsistencies in snowflake resource (#12633) by @jamiedemaria
  • cce3edf - [ui] Update permissions for launching jobs and materializing assets (#12681) by @hellendag
  • 2636f63 - [For 1.2] Change default run monitoring settings (#11512) by @gibsondan
  • 8009dc8 - [For 1.2] Don't include run/job tags in k8s_job_ops k8s config computations (#12345) by @gibsondan
  • 5655fc4 - Remove Partitioned Schedules from docs, fix dagit staleStatusCauses mocks (#12742) by @smackesey
  • aecc22c - [Sensor Testing] Add "Test again" button (#12735) by @salazarm
  • 3e06e5f - [1.2.0] [refactor] Delete DagsterTypeMaterializer (#12516) by @smackesey
  • 2431f5e - change DynamicPartitionsDefinition.__repr__ (#12754) by @sryza
  • a5fdaa8 - Recommended Project Structure Guide (#12656) by @odette-elementl
  • cb54b6f - [pythonic config] Add test showcasing use of Pydantic validators (#12536) by @benpankow
  • e10b0b3 - fix serialization of TableRecord (#10731) by @sryza
  • 3915c7a - [dagster-gcp-pandas] revert flaky test (#12748) by @jamiedemaria
  • 6322734 - [typing/static] PartitionsDefinition covariant type var (#12284) by @smackesey
  • b67f436 - [rename] LogicalVersion -> DataVersion (#12500) by @smackesey
  • aac63ae - [rename] LogicalVersion -> DataVersion in gql/dagit (#12501) by @smackesey
  • f10592f - [rename] Rename LogicalVersion -> DataVersion in docs (#12503) by @smackesey
  • ad9d771 - [dagster-airflow] add make_persistent_airflow_db_resource (#12305) by @Ramshackle-Jamathon
  • 54cbe5f - [ui] Remove usePermissionsDEPRECATED (#12771) by @hellendag
  • cb8b44c - [Asset Details Page] Auto-select partition in materialization dialog. (#12734) by @salazarm
  • 204fec1 - feat(databricks)!: remove create_databricks_job_op (#12600) by @rexledesma
  • 383307e - Make permissions_for_location require keyword args (#12774) by @gibsondan
  • 8d696fa - Remove DynamicPartitionsDefinitions API methods (#12744) by @clairelin135
  • a5e9f77 - Set default memory/CPU for new ECS tasks based on runtime platform (#12767) by @gibsondan
  • a428709 - cron_schedule validation for time window partitions (#12761) by @prha
  • 0181a64 - update some guide titles and descriptions (#12775) by @sryza
  • 909a7a7 - add primary keys to all run tables (#12711) by @prha
  • e13e20c - document PartitionMappings in partitions concepts page (#12768) by @sryza
  • 6531476 - make sure kv/daemon_heartbeat queries explicitly enumerate columns (#12789) by @prha
  • fe6f7c4 - update API docs for freshness policies (#12788) by @OwenKephart
  • 6bcec7d - [apidoc] asset_selection repository -> Definitions (#11303) by @yuhan
  • b2ba3d5 - Fix typing on mem_io_manager (#12791) by @dpeng817
  • 28821f1 - [docs] add note about biquery temp tables (#12747) by @jamiedemaria
  • c2c365d - Remove deprecated MetadataEntry constructors, update entry_data internal refs (#12724) by @smackesey
  • 2f1500e - [dagster-airflow] persistent db docs (#12485) by @Ramshackle-Jamathon
  • 3f8b46d - [pythonic resources][fix] Fix inheriting attributes when extending Pythonic resources (#12781) by @benpankow
  • 1c4f5cb - MetadataEntryUnion (#12725) by @smackesey
  • 3811ff7 - [docs] - Update RBAC docs for Cloud (#12752) by @erinkcochran87
  • d53888d - [dagit] Update the asset partitions / events view after run failures (#12798) by @bengotow
  • 24ed3bd - [dagit] Asset node rendering tweaks (#12764, #12765) (#12794) by @bengotow
  • b508302 - Reflect dynamically-added partitions in asset sidebar immediately (#12778) by @salazarm
  • 06d4499 - [Create Partition Dialog] Autofocus input (#12777) by @salazarm
  • a6914da - Remove PartitionMetadataEntry (#12726) by @smackesey
  • a23f2c7 - Maintain a separate cursor in the asset partition cache pointing back to the earliest in progress run (#12782) by @johannkm
  • b032715 - [ui] Run logs: make Timestamp the first column (#12805) by @hellendag
  • ddddc00 - [snowflake-pyspark] refactor spark session creation in tests (#12738) by @jamiedemaria
  • c402ec0 - [db io managers] refactor tests to test table creation (#12739) by @jamiedemaria
  • 590b725 - [dagit] Fix yaml editor help context when indented on a new line (#12537) (#12804) by @bengotow
  • 1908b11 - make context.upstream_output.log work for source assets (#12787) by @sryza
  • 9553d00 - [typing/runtime] serdes (#12523) by @smackesey
  • af55f6f - [dagit] Show “Observe” on source asset details pages, not “Materialize" (#12803) by @bengotow
  • 90f2c7d - [ui] Disable "Open in launchpad" based on permissions (#12817) by @hellendag
  • 0c2c592 - Add a way to cause partition health data to refetch without passing around refetch callbacks (#12822) by @salazarm
  • 4128578 - [ui] Fix space oddities on Schedules overview table (#12810) by @hellendag
  • 8b6bec5 - [ESLint] Update missing graphql variable type rule to check mutations and subscriptions too (#12779) by @salazarm
  • 1b4fedc - Test get and set new asset cache fields (#12820) by @johannkm
  • 173bdd7 - [duckdb-polars] fix readme (#12499) by @jamiedemaria
  • 73eede0 - [freshness-refactor][1/n] Separate part of CachingInstanceQueryer into CachingDataTimeResolver (#12809) by @OwenKephart
  • eab9b33 - [ui] Affordance for copying asset key (#12829) by @hellendag
  • 0c36c23 - [fix][dagit] Allow resources page to scroll (#12827) by @benpankow
  • 85fb26f - [async op] use asyncio.run (#12785) by @alangenfeld
  • c7a1f7f - [dagster-airflow] remove double encoding of timezones (#12811) by @Ramshackle-Jamathon
  • d7b7189 - [ui] Support Ctrl+K to trigger search (#12840) by @hellendag
  • 9aea76c - Virtualize TagSelector component (#12841) by @salazarm
  • 4caeb4e - [Launchpad] Allow adding new dynamic partition from launchpad UI (#12757) by @salazarm
  • eff1d9e - [tox] download latest pip (#12821) by @alangenfeld
  • 6788d37 - [dagster-snowflake] fix permissions issue when creating schemas (#12802) by @jamiedemaria
  • 2507015 - [pythonic config] Special rendering for env vars in UI (#12446) by @benpankow
  • a3b50ff - nothing input toy (#12849) by @sryza
  • f4b5a34 - latestRunForPartition gql (#12845) by @johannkm
  • 622eefc - [dagster-dbt] add support for node_info_to_definition_metadata_fn (#12831) by @OwenKephart
  • 81c7843 - Remove nothing types from asset graph (#12848) by @salazarm
  • 9a391a0 - [TagSelector] Allow filtering tags in dropdown (#12844) by @salazarm
  • 8caf6ee - Add a tooltip on asset nodes in the graph (#12853) by @salazarm
  • 3988f44 - [pythonic resources] Keep track of utilized env vars in external repo data (#12557) by @benpankow
  • 615268c - Changelog 1.2.0 (#12851) by @dpeng817
  • dab8b87 - add a local download url fallback for GCS (#12815) by @prha
  • 796279a - [freshness-refactor][2/n] Reorganize/Rename/Remove/Document CachingInstanceQueryer methods (#12813) by @OwenKephart
  • d464c1a - fix type annotation for partition_time_window (#12850) by @sryza
  • ac47dc2 - Revert "fix type annotation for partition_time_window" (#12860) by @sryza
  • c60f46b - Automation: versioned docs for 1.2.0 by @elementl-devtools
  • b8014b9 - Add volatility property to CachingStaleStatusResolver (#12855) by @smackesey
  • 8f4d41b - Update CHANGES.md (#12864) by @Ramshackle-Jamathon
  • e18607e - [docs] - Add doc checklist to PR template (#12861) by @erinkcochran87
  • a4320d6 - Fix partition_time_window type error (#12838) by @elben10
  • 2421fd0 - Add 1.2.0 changes to migration.md (#12866) by @clairelin135
  • 7ebb44a - Fix config w/ dynamic partitions error (#12710) by @clairelin135
  • b3fcd49 - [1.2] make ScheduleEvaluationContext.scheduled_execution_time non-optional (#12623) by @sryza
  • 2f53acb - asset materialize CLI (#12691) by @sryza
  • b04cb79 - [refactor] serdes pack/deserialize APIs (#12524) by @smackesey
  • 4d14935 - [refactor] MayHaveInstanceWeakRef error on access non-existent _instance (#12553) by @smackesey
  • f49dc0a - asset list command (#12790) by @sryza
  • 3e0d5b1 - fixups to config_schedule.py (#12874) by @sryza
  • f350d4b - Fix some upcoming lint errors in docstrings (#12704) by @charliermarsh
  • cf997c0 - [db io managers] support self dependent assets in db io managers (#12700) by @jamiedemaria
  • fa086c7 - Fix markdown links in changelog (#12877) by @johannkm
  • 237b8c6 - Fix dagster-k8s job execution when a job has more than 1 pod (#12731) by @Taadas
  • 845d1e9 - take grpcio-health-checking pins out of backcompat suite (#12876) by @gibsondan
  • ca8714f - Fix ruff (#12879) by @gibsondan
  • 2ffd661 - need to explicitly return a known existing column for updates (#12883) by @prha
  • ddd58e5 - Fix docs build (#12884) by @smackesey
  • 75cb437 - add 1.2.1 changelog (#12887) by @prha
  • 63bf6b7 - add SpecificPartitionsPartitionMapping (#12878) by @sryza
  • e8eddef - Automation: versioned docs for 1.2.1 by @elementl-devtools
  • 31dc8bd - [docs] - Apply style guide to Asset versioning and caching guide (#12895) by @erinkcochran87
  • 12a3d70 - [dagster-ui] Sync the search filter to the query string on most pages (#12899) by @bengotow
  • 84ed448 - on asset backfills, propagate backfill tags to runs (#12886) by @sryza
  • 03cbce6 - Support SourceAssets in load_asset_value (#12859) by @sryza
  • 630fb5c - Fix transitive resource deps for asset value loader (#12872) by @dpeng817
  • 49180eb - [typing/static] telemetry (#12714) by @smackesey
  • 6f0d5b6 - add docs page on asset selection syntax (#12871) by @sryza
  • f301c86 - Add dropdown for materializing using launchpad (#12852) by @salazarm
  • 3d9cc2d - [ui] Refactor permissions objects (#12903) by @hellendag
  • c105fea - avoid custom PartitionMapping on IO manager concept page (#12902) by @sryza
  • e088a26 - [bk] Add changelog check step (#12865) by @benpankow
  • 8af8cab - tutorial intro tweaks (#12780) by @sryza
  • 530469f - Move docs style guidelines from pull request template to contribution guide (#12875) by @sryza
  • 36a4192 - remove support for legacy APIs from validate_run_config (#12881) by @sryza
  • 3d9ba7f - make reconciliation perf test names easier to scan, and turn them all on (#12908) by @sryza
  • 78c6654 - Make fetch_flattened_time_window_ranges support arbitrary statuses (#12863) by @johannkm
  • 339419a - Build schedule from multipartitioned job (#12907) by @clairelin135
  • 63184c4 - [ui] Clean up temporary permission code (#12923) by @hellendag
  • cbf85f6 - [op] error on multiple values for argument (#12473) by @alangenfeld
  • f8e23a6 - test assets in dynamic re-execution (#12651) by @alangenfeld
  • 2d8874b - Support requiring resources in sensors, experimentally (#12401) by @benpankow
  • 8f8fac7 - Support requiring resources in schedules, experimentally (#12697) by @benpankow
  • 00b4ada - [pythonic config] support Pydantic constrained types (#12703) by @benpankow
  • 8b8c4b2 - [docs] Add env var docs to Pythonic config experimental docs (#12740) by @benpankow
  • 430d929 - [pythonic resources] Surface utilized env vars in GraphQL (#12558) by @benpankow
  • af4fca6 - [dagit] Allow the lineage tab to appear before the asset definition has loaded (#12191) (#12814) by @bengotow
  • f468ed5 - Support defaulting to selected partitions for Multi-partitioned Assets (#12856) by @salazarm
  • 84031b3 - fix execution plan step output collisions (#12799) by @alangenfeld
  • 811eb80 - [pythonic config] Fix using RunConfig with optional config fields (#12933) by @benpankow
  • e47d172 - [Partitions] Use OrdinalPartitionSelector for STATIC partitioned assets (#12919) by @salazarm
  • 4c53596 - fix ruff (#12936) by @alangenfeld
  • 57f0b7f - Unpin grpcio on dagster for python 3.11 (#12917) by @gibsondan
  • d5c3200 - Allow setting the job_namespace for the celery k8s run launcher (#12911) by @gibsondan
  • 169777d - [dagster-dbt] add cron_schedule_timezone to set of properties parsed from dbt config (#12904) by @OwenKephart
  • 67ecc96 - Redesign partition backfill modal (#12928) by @salazarm
  • d43a5ce - Fix error reporter infinite loop (#12941) by @salazarm
  • ad03463 - Add Python 3.11 to dagster buildkite (#12723) by @gibsondan
  • cb775d4 - Bind top-level resources to jobs at Definitions-time (#12430) by @benpankow
  • d342604 - [asset-reconciliation] Do not reconcile partitions involved in active asset backfills (#12926) by @OwenKephart
  • 2ae1d72 - [asset-reconciliation] Fix behavior that could cause overly-aggressive updates (#12940) by @OwenKephart
  • c13f13a - improve execution plan snapshot use in execute_run (#12660) by @alangenfeld
  • f2ff644 - open backfill options section by default (#12957) by @salazarm
  • 5a03457 - [Partition Backfill Dialog] Update backfill options spacing (#12959) by @salazarm
  • aea2c8b - Resolve transitive resource deps for schedules and sensors (#12946) by @benpankow
  • 4a34e5b - changelog 1.2.2 (#12960) by @yuhan
  • c9ca27f - Fix pandera tests (#12947) by @smackesey
  • 1e4fc7e - [dagit] Use pure-asset backfills instead of hidden asset job backfills (#12948) by @bengotow
  • 3b6c517 - 1.2.2 by @elementl-devtools

1.2.1

1 year ago

Bugfixes

  • Fixed a bug with postgres storage where daemon heartbeats were failing on instances that had not been migrated with dagster instance migrate after upgrading to 1.2.0.

1.2.0

1 year ago

Major Changes since 1.1.0 (core) / 0.17.0 (libraries)

Core

  • Added a new dagster dev command that can be used to run both Dagit and the Dagster daemon in the same process during local development. [docs]
  • Config and Resources
  • Repository > Definitions [docs]
  • Declarative scheduling
    • The asset reconciliation sensor is now 100x more performant in many situations, meaning that it can handle more assets and more partitions.
    • You can now set freshness policies on time-partitioned assets.
    • You can now hover over a stale asset to learn why that asset is considered stale.
  • Partitions
    • DynamicPartitionsDefinition allows partitioning assets dynamically - you can add and remove partitions without reloading your definitions (experimental). [docs]
    • The asset graph in the UI now displays the number of materialized, missing, and failed partitions for each partitioned asset.
    • Asset partitions can now depend on earlier time partitions of the same asset. Backfills and the asset reconciliation sensor respect these dependencies when requesting runs [example].
    • TimeWindowPartitionMapping now accepts start_offset and end_offset arguments that allow specifying that time partitions depend on earlier or later time partitions of upstream assets [docs].
  • Backfills
    • Dagster now allows backfills that target assets with different partitions, such as a daily asset which rolls up into a weekly asset, as long as the root assets in the selection are partitioned in the same way.
    • You can now choose to pass a range of asset partitions to a single run rather than launching a backfill with a run per partition [instructions].

Integrations

  • Weights and Biases - A new integration dagster-wandb with Weights & Biases allows you to orchestrate your MLOps pipelines and maintain ML assets with Dagster. [docs]
  • Snowflake + PySpark - A new integration dagster-snowflake-pyspark allows you to store and load PySpark DataFrames as Snowflake tables using the snowflake_pyspark_io_manager. [docs]
  • Google BigQuery - A new BigQuery I/O manager and new integrations dagster-gcp-pandas and dagster-gcp-pyspark allow you to store and load Pandas and PySpark DataFrames as BigQuery tables using the bigquery_pandas_io_manager and bigquery_pyspark_io_manager. [docs]
  • Airflow The dagster-airflow integration library was bumped to 1.x.x, with that major bump the library has been refocused on enabling migration from Airflow to Dagster. Refer to the docs for an in-depth migration guide.
  • Databricks - Changes:
    • Added op factories to create ops for running existing Databricks jobs (create_databricks_run_now_op), as well as submitting one-off Databricks jobs (create_databricks_submit_run_op).
    • Added a new Databricks guide.
    • The previous create_databricks_job_op op factory is now deprecated.

Docs

  • Automating pipelines guide - Check out the best practices for automating your Dagster data pipelines with this new guide. Learn when to use different Dagster tools, such as schedules and sensors, using this guide and its included cheatsheet.
  • Structuring your Dagster project guide - Need some help structuring your Dagster project? Learn about our recommendations for getting started and scaling sustainably.
  • Tutorial revamp - Goodbye cereals and hello HackerNews! We’ve overhauled our intro to assets tutorial to not only focus on a more realistic example, but to touch on more Dagster concepts as you build your first end-to-end pipeline in Dagster. Check it out here.

Stay tuned, as this is only the first part of the overhaul. We’ll be adding more chapters - including automating materializations, using resources, using I/O managers, and more - in the next few weeks.

Since 1.1.21 (core) / 0.17.21 (libraries)

New

  • Freshness policies can now be assigned to assets constructed with @graph_asset and @graph_multi_asset.
  • The project_fully_featured example now uses the built in DuckDB and Snowflake I/O managers.
  • A new “failed” state on asset partitions makes it more clear which partitions did not materialize successfully. The number of failed partitions is shown on the asset graph and a new red state appears on asset health bars and status dots.
  • Hovering over “Stale” asset tags in the Dagster UI now explains why the annotated assets are stale. Reasons can include more recent upstream data, changes to code versions, and more.
  • [dagster-airflow] support for persisting airflow db state has been added with make_persistent_airflow_db_resource this enables support for Airflow features like pools and cross-dagrun state sharing. In particular retry-from-failure now works for jobs generated from Airflow DAGs.
  • [dagster-gcp-pandas] The BigQueryPandasTypeHandler now uses google.bigquery.Client methods load_table_from_dataframe and query rather than the pandas_gbq library to store and fetch DataFrames.
  • [dagster-k8s] The Dagster Helm chart now only overrides args instead of both command and args for user code deployments, allowing to include a custom ENTRYPOINT in your the Dockerfile that loads your code.
  • The protobuf<4 pin in Dagster has been removed. Installing either protobuf 3 or protobuf 4 will both work with Dagster.
  • [dagster-fivetran] Added the ability to specify op_tags to build_fivetran_assets (thanks @Sedosa!)
  • @graph_asset and @graph_multi_asset now support passing metadata (thanks @askvinni)!

Bugfixes

  • Fixed a bug that caused descriptions supplied to @graph_asset and @graph_multi_asset to be ignored.
  • Fixed a bug that serialization errors occurred when using TableRecord.
  • Fixed an issue where partitions definitions passed to @multi_asset and other functions would register as type errors for mypy and other static analyzers.
  • [dagster-aws] Fixed an issue where the EcsRunLauncher failed to launch runs for Windows tasks.
  • [dagster-airflow] Fixed an issue where pendulum timezone strings for Airflow DAG start_date would not be converted correctly causing runs to fail.
  • [dagster-airbyte] Fixed an issue when attaching I/O managers to Airbyte assets would result in errors.
  • [dagster-fivetran] Fixed an issue when attaching I/O managers to Fivetran assets would result in errors.

Database migration

  • Optional database schema migrations, which can be run via dagster instance migrate:
    • Improves Dagit performance by adding a database index which should speed up job run views.
    • Enables dynamic partitions definitions by creating a database table to store partition keys. This feature is experimental and may require future migrations.
    • Adds a primary key id column to the kvs, daemon_heartbeats and instance_info tables, enforcing that all tables have a primary key.

Breaking Changes

  • The minimum grpcio version supported by Dagster has been increased to 1.44.0 so that Dagster can support both protobuf 3 and protobuf 4. Similarly, the minimum protobuf version supported by Dagster has been increased to 3.20.0. We are working closely with the gRPC team on resolving the upstream issues keeping the upper-bound grpcio pin in place in Dagster, and hope to be able to remove it very soon.

  • Prior to 0.9.19, asset keys were serialized in a legacy format. This release removes support for querying asset events serialized with this legacy format. Contact #dagster-support for tooling to migrate legacy events to the supported version. Users who began using assets after 0.9.19 will not be affected by this change.

  • [dagster-snowflake] The execute_queryand execute_queries methods of the SnowflakeResource now have consistent behavior based on the values of the fetch_results and use_pandas_result parameters. If fetch_results is True, the standard Snowflake result will be returned. If fetch_results and use_pandas_result are True, a pandas DataFrame will be returned. If fetch_results is False and use_pandas_result is True, an error will be raised. If both are False, no result will be returned.

  • [dagster-snowflake] The execute_queries command now returns a list of DataFrames when use_pandas_result is True, rather than appending the results of each query to a single DataFrame.

  • [dagster-shell] The default behavior of the execute and execute_shell_command functions is now to include any environment variables in the calling op. To restore the previous behavior, you can pass in env={} to these functions.

  • [dagster-k8s] Several Dagster features that were previously disabled by default in the Dagster Helm chart are now enabled by default. These features are:

    • The run queue (by default, without a limit). Runs will now always be launched from the Daemon.
    • Run queue parallelism - by default, up to 4 runs can now be pulled off of the queue at a time (as long as the global run limit or tag-based concurrency limits are not exceeded).
    • Run retries - runs will now retry if they have the dagster/max_retries tag set. You can configure a global number of retries in the Helm chart by setting run_retries.max_retries to a value greater than the default of 0.
    • Schedule and sensor parallelism - by default, the daemon will now run up to 4 sensors and up to 4 schedules in parallel.
    • Run monitoring - Dagster will detect hanging runs and move them into a FAILURE state for you (or start a retry for you if the run is configured to allow retries). By default, runs that have been in STARTING for more than 5 minutes will be assumed to be hanging and will be terminated.

    Each of these features can be disabled in the Helm chart to restore the previous behavior.

  • [dagster-k8s] The experimental k8s_job_op op and execute_k8s_job functions no longer automatically include configuration from a dagster-k8s/config tag on the Dagster job in the launched Kubernetes job. To include raw Kubernetes configuration in a k8s_job_op, you can set the container_config, pod_template_spec_metadata, pod_spec_config, or job_metadata config fields on the k8s_job_op (or arguments to the execute_k8s_job function).

  • [dagster-databricks] The integration has now been refactored to support the official Databricks API.

    • create_databricks_job_op is now deprecated. To submit one-off runs of Databricks tasks, you must now use the create_databricks_submit_run_op.
    • The Databricks token that is passed to the databricks_client resource must now begin with https://.

Changes to experimental APIs

  • [experimental] LogicalVersion has been renamed to DataVersion and LogicalVersionProvenance has been renamed to DataProvenance.
  • [experimental] Methods on the experimental DynamicPartitionsDefinition to add, remove, and check for existence of partitions have been removed. Refer to documentation for updated API methods.

Removal of deprecated APIs

  • [previously deprecated, 0.15.0] Static constructors on MetadataEntry have been removed.
  • [previously deprecated, 1.0.0] DagsterTypeMaterializer, DagsterTypeMaterializerContext, and @dagster_type_materializer have been removed.
  • [previously deprecated, 1.0.0] PartitionScheduleDefinition has been removed.
  • [previously deprecated, 1.0.0] RunRecord.pipeline_run has been removed (use RunRecord.dagster_run).
  • [previously deprecated, 1.0.0] DependencyDefinition.solid has been removed (use DependencyDefinition.node).
  • [previously deprecated, 1.0.0] The pipeline_run argument to build_resources has been removed (use dagster_run)

Community Contributions

  • Deprecated iteritems usage was removed and changed to the recommended items within dagster-snowflake-pandas (thanks @sethkimmel3)!
  • Refactor to simply the new @asset_graph decorator (thanks @simonvanderveldt)!

Experimental

  • User-computed DataVersions can now be returned on Output
  • Asset provenance info can be accessed via OpExecutionContext.get_asset_provenance

Documentation

  • The Asset Versioning and Caching Guide now includes a section on user-provided data versions
  • The community contributions doc block Picking a github issue was not correctly rendering, this has been fixed (thanks @Sedosa)!

1.1.21

1 year ago

New

  • Further performance improvements for build_asset_reconciliation_sensor.
  • Dagster now allows you to backfill asset selections that include mapped partition definitions, such as a daily asset which rolls up into a weekly asset, as long as the root assets in your selection share a partition definition.
  • Dagit now includes information about the cause of an asset’s staleness.
  • Improved the error message for non-matching cron schedules in TimeWindowPartitionMappings with offsets. (Thanks Sean Han!)
  • [dagster-aws] The EcsRunLauncher now allows you to configure the runtimePlatform field for the task definitions of the runs that it launches, allowing it to launch runs using Windows Docker images.
  • [dagster-azure] Add support for DefaultAzureCredential for adls2_resource (Thanks Martin Picard!)
  • [dagster-databricks] Added op factories to create ops for running existing Databricks jobs (create_databricks_run_now_op), as well as submitting one-off Databricks jobs (create_databricks_submit_run_op). See the new Databricks guide for more details.
  • [dagster-duckdb-polars] Added a dagster-duckdb-polars library that includes a DuckDBPolarsTypeHandler for use with build_duckdb_io_manager, which allows loading / storing Polars DataFrames from/to DuckDB. (Thanks Pezhman Zarabadi-Poor!)
  • [dagster-gcp-pyspark] New PySpark TypeHandler for the BigQuery I/O manager. Store and load your PySpark DataFrames in BigQuery using bigquery_pyspark_io_manager.
  • [dagster-snowflake] [dagster-duckdb] The Snowflake and DuckDB IO managers can now load multiple partitions in a single step - e.g. when a non-partitioned asset depends on a partitioned asset or a single partition of an asset depends on multiple partitions of an upstream asset. Loading occurs using a single SQL query and returns a single DataFrame.

Bugfixes

  • Previously, if an AssetSelection which matched no assets was passed into define_asset_job, the resulting job would target all assets in the repository. This has been fixed.
  • Fixed a bug that caused the UI to show an error if you tried to preview a future schedule tick for a schedule built using build_schedule_from_partitioned_job.
  • When a non-partitioned non-asset job has an input that comes from a partitioned SourceAsset, we now load all partitions of that asset.
  • Updated the fs_io_manager to store multipartitioned materializations in directory levels by dimension. This resolves a bug on windows where multipartitioned materializations could not be stored with the fs_io_manager.
  • Schedules and sensors previously timed out when attempting to yield many multipartitioned run requests. This has been fixed.
  • Fixed a bug where context.partition_key would raise an error when executing on a partition range within a single run via Dagit.
  • Fixed a bug that caused the default IO manager to incorrectly raise type errors in some situations with partitioned inputs.
  • [ui] Fixed a bug where partition health would fail to display for certain time window partitions definitions with positive offsets.
  • [ui] Always show the “Reload all” button on the code locations list page, to avoid an issue where the button was not available when adding a second location.
  • [ui] Fixed a bug where users running multiple replicas of dagit would see repeated Definitions reloaded messages on fresh page loads.
  • [ui] The asset graph now shows only the last path component of linked assets for better readability.
  • [ui] The op metadata panel now longer capitalizes metadata keys
  • [ui] The asset partitions page, asset sidebar and materialization dialog are significantly smoother when viewing assets with a large number of partitions (100k+)
  • [dagster-gcp-pandas] The Pandas TypeHandler for BigQuery now respects user provided location information.
  • [dagster-snowflake] ProgrammingError was imported from the wrong library, this has been fixed. Thanks @herbert-allium!

Experimental

  • You can now set an explicit logical version on Output objects rather than using Dagster’s auto-generated versions.
  • New get_asset_provenance method on OpExecutionContext allows fetching logical version provenance for an arbitrary asset key.
  • [ui] - you can now create dynamic partitions from the partition selection UI when materializing a dynamically partitioned asset

Documentation

All Changes

https://github.com/dagster-io/dagster/compare/1.1.20...1.1.21

See All Contributors
  • 4343d59 - dagster-census api docs (#12413) by @yuhan
  • 24b7e9b - graph_asset and graph_multi_asset decorators (#10152) by @sryza
  • aa29161 - [dagster-snowflake-pyspark] fix bug loading partitions (#12472) by @jamiedemaria
  • 2197dec - add graphql fields for querying run tags (#12409) by @prha
  • 8889b48 - Add stale status causes (#11953) by @smackesey
  • 323cdc8 - fix (#12477) by @salazarm
  • 8e21900 - Update Contributing doc with instructions for ruff/pyright (#12481) by @smackesey
  • c472edb - [bigquery] mark bigquery io manager experimental (#12479) by @jamiedemaria
  • f2084d7 - add partial tag autocomplete for run filter input (#12410) by @prha
  • 93e7cc1 - Support env valueFrom in Helm chart (#12425) by @johannkm
  • 6601156 - Update GQL to expose StaleStatus and StaleStatusCause (#11952) by @smackesey
  • 0ffe4a7 - remove timestamp comparisons of code location entries to reduce OSS dagit replica spam (#12407) by @prha
  • 6af6f55 - Fix state status logical version test (#12484) by @smackesey
  • a15d965 - fix ruff (#12486) by @alangenfeld
  • 2c97adf - use opt_nullable_mapping for dagster library versions (#12487) by @alangenfeld
  • 965152d - clarify error when op is missing argument for In (#12456) by @sryza
  • 361b0ee - Remove existing RunConfig class (#12488) by @benpankow
  • 75b6a5c - [pythonic resources] Clean up initialization of env vars, treat resource objects as immutable (#12445) by @benpankow
  • e3c8825 - [structured config] Add support for Selectors w/ pydantic discriminated unions (#11280) by @benpankow
  • 2d43d39 - Allow setting logical version inside op (#12189) by @smackesey
  • 39f525a - Replace usages of nslookupwithnc for user deployments (#11033) by @michaeljguarino
  • 2492317 - Revert "Replace usages of nslookupwithnc for user deployments (#11033)" by @johannkm
  • b7fae37 - [pythonic resources] Last set of class renames (#12490) by @benpankow
  • 763283f - [dagster-azure] Add support for DefaultAzureCredential for adls2_resource (#11309) by @mpicard
  • 1d1f5ce - Add example of customizing task role and execution role arn to the ECS agent docs (#12491) by @gibsondan
  • c4e3e87 - add dagster-duckdb-polars library (#12197) by @pzarabadip
  • 3a05583 - [draft][pythonic config][docs] Introduce intro to Resources doc utilizing Pythonic resources (#12260) by @benpankow
  • efed336 - [pythonic config] Add structured RunConfig object for specifying runtime, job config (#11965) by @benpankow
  • 2f4a0e5 - [draft][pythonic config][docs] Introduce intro to Config doc utilizing Pythonic config (#12349) by @benpankow
  • 4439129 - 1.1.20 changelog (#12506) by @benpankow
  • 3dc1233 - refactor(databricks): lift polling methods up to the client (#12382) by @rexledesma
  • edac939 - [fix] fix sphinx airflow version parsing (#12507) by @benpankow
  • 215ae70 - Automation: versioned docs for 1.1.20 by @elementl-devtools
  • da35211 - [dagit] Expose range-based asset health, use it for partition status rendering (#12302) by @bengotow
  • e3fd740 - [dagit] Use range-based asset health for asset partitions / job partitions pages (#12434) by @bengotow
  • 63b4273 - Fix 1.1.20 changelog codeblock (#12525) by @johannkm
  • 2b1ad7c - [dagit] Delete generated GraphQL types before regenerating (#12518) by @hellendag
  • 024db65 - [refactor] Delete build_solid_context (#12513) by @smackesey
  • 18e7eb6 - [typing/static] serdes (#12522) by @smackesey
  • 3e30026 - [refactor] make ResolvedRunConfig.to_dict use "ops" (#12514) by @smackesey
  • 7e34083 - Improve multipartition performance for get_partition (#12431) by @clairelin135
  • e798edf - feat(databricks): override user agent in resource (#12526) by @rexledesma
  • 7036fca - Bump typing-extensions dep to >=4.4.0 (#12529) by @smackesey
  • 781a8ea - [docs] Snowflake reference page fixes (#12455) by @jamiedemaria
  • 2cc338b - [bugfix] Make assets downstream of partitions never stale in dagit (#12528) by @smackesey
  • 65e92a1 - Enable internal testing for writing asset cached status data (#12497) by @clairelin135
  • 281ec4b - [typing] fix typing in daemon tests (#12475) by @dpeng817
  • f596b2f - dynamic partitions toy (#12533) by @sryza
  • 7875f44 - pare down multi-partition runtime type checking in upath IO manager (#12508) by @sryza
  • 102c0bc - [dagit] Upgrade to Jest 29, allow more time for coverage collection (#12534) by @bengotow
  • a3b7dfc - Add description to invariant check (#12496) by @CodeMySky
  • e00ba72 - [fix] Correctly resolve asset jobs with empty selections (#12531) by @OwenKephart
  • 9d9b072 - [dagit] Support backfills on partition-mapped asset selections (#12458) by @bengotow
  • 4fc6e3e - [dagit] Remove unnecessary usage of <TestProvider> (#12519) by @bengotow
  • 31022e0 - Fix multipartitions w/ fs_io_manager on windows (#12414) by @clairelin135
  • dd4ba07 - Fix master (#12550) by @clairelin135
  • c93eb54 - Booleans that check permissions for specific objects and automatically incorporate per-location checks (#12548) by @gibsondan
  • e867fcc - docs(dagster-dbt): add example to retrieve asset keys from dbt selection (#12323) by @rexledesma
  • 704c638 - Fix IO manager doc snippets (#12545) by @clairelin135
  • 6f2af95 - fix setup.cfg in create package (#12559) by @jamiedemaria
  • 3a5ff3e - Fetch multipartition key from context methods (#12512) by @clairelin135
  • 7d2b6be - Include partition in asset materialization planned event (#12333) by @johannkm
  • 97fe5a0 - handle multiple non-time-window partitions in db io managers (#12517) by @sryza
  • 848c6e8 - Add runtime_platform to EcsRunLauncher (#12566) by @gibsondan
  • 2b22589 - Tag Selector Component (#12564) by @salazarm
  • 1c3633c - Storybook for LaunchAssetChoosePartitionsDialog (#12567) by @salazarm
  • 9ff5327 - Update setting-up-alerts.mdx (#12582) by @johannkm
  • 2726401 - Move useViewport to uiformcore (#12578) by @salazarm
  • 9a519d0 - [ui] Always show "Reload all" button (#12588) by @hellendag
  • a6b91b3 - Bump minimist from 1.2.5 to 1.2.8 in /js_modules/dagit (#12595) by @dependabot[bot]
  • 57830ae - Expose partition definition name (#12585) by @salazarm
  • 6a1696b - add dynamic partitions example (#12494) by @sryza
  • 2faf365 - [dagit] Do not capitalize tag keys in the Dagit op metadata panel (#12591) by @bengotow
  • bc130b8 - [graphql] empty numPartitions and partitionNames for cross-partitioning backfills (#12462) by @sryza
  • 14337e8 - [dagit] Use last path component of linked assets on the asset graph + add tooltips (#12590) by @bengotow
  • 116ec37 - [dagster-snowflake] Fix ProgrammingError import in snowflake_io_manager (#12576) by @herbert-allium
  • 9041d57 - remove dagster-cloud dep from dynamic partitions example (#12603) by @sryza
  • c8bd24a - fix future ticks for partitioned schedules (#12601) by @sryza
  • a41fecf - fix loading partitioned source assets in non-partitioned non-asset jobs (#12586) by @sryza
  • c78992f - Update stale reasons to remove UNKNOWN, add MISSING (#12584) by @smackesey
  • 216c9fc - GQL Add dynamic partition mutation (#12562) by @clairelin135
  • 84201da - Add asset provenance access to OpExecutionContext (#12467) by @smackesey
  • 7e3be46 - feat(databricks): add basic op implementations (#12492) by @rexledesma
  • 2ffb21e - docs(databricks): add guide for Databricks integration (#12326) by @rexledesma
  • d170c85 - migrate some tests away from AssetGroup (#12606) by @sryza
  • 1a3019b - divest permissions for editing sensor from updating sensor cursor (#12589) by @dpeng817
  • f532d6e - [dagit] Fix tests pinned to February (#12616) by @bengotow
  • e403d39 - Move tests, fixtures, and storybooks into folders (#12614) by @salazarm
  • 6ac4cff - Add root stale causes for assets (#12619) by @smackesey
  • dab3831 - docs for graphs that depend on assets (#12597) by @sryza
  • 122d46e - [UI] Dynamic partition creation and selection (#12615) by @salazarm
  • e4418ee - [asset-reconciliation][perf] Do not get/set known_used_data in asset reconciliation loop (#12433) by @OwenKephart
  • e4aeeee - [dagster-gcp-pyspark] Add BigQuery PySpark type handler (#12398) by @jamiedemaria
  • b552e39 - Automating pipeline guide (#12547) by @odette-elementl
  • a1b96c7 - Capture db timeout errors for tag key queries (#12596) by @prha
  • e1f9d7f - Get partitions with planned but not completed materializations, the event log query (#12404) by @johannkm
  • 83c875d - Add failures to partition status cache (#12599) by @johannkm
  • ff7d080 - [bigquery-pandas] pipe gcp location through to type handler (#12587) by @jamiedemaria
  • 08e5e0e - [docs, bigquery] tutorial and reference guide (#12452) by @jamiedemaria
  • 5d9e03c - make freshness policies work with graph_asset and graph_multi_asset (#12630) by @sryza
  • f8acfcd - Revert "Add failures to partition status cache (#12599)" by @johannkm
  • 7f4676b - Revert "Get partitions with planned but not completed materializations, the event log query (#12404)" by @johannkm
  • 445a134 - Modify get_first_partition_window to account for offset (#12504) by @clairelin135
  • a1b4eea - [dagit] Switch to staleStatus for stale tags, display causes in tooltips (#12611) by @bengotow
  • 349a0b0 - Change format of staleness root causes and remove old resolvers (#12628) by @smackesey
  • c6e54a6 - Helm: Support valueFrom in user deployments (#12644) by @johannkm
  • 69f751c - Update asset versioning guide (#12659) by @smackesey
  • 6d17799 - update CHANGES.md for 1.1.21 (#12662) by @sryza
  • ed9e77b - docs(databricks): update guide based on feedback (#12669) by @rexledesma
  • c607767 - 1.1.21 by @elementl-devtools