Skip to content

Commit

Permalink
Update dependency dagster-webserver to v1.7.13 (#121)
Browse files Browse the repository at this point in the history
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [dagster-webserver](https://github.com/dagster-io/dagster) |
project.dependencies | patch | `==1.7.12` -> `==1.7.13` |

---

### Release Notes

<details>
<summary>dagster-io/dagster (dagster-webserver)</summary>

###
[`v1.7.13`](https://github.com/dagster-io/dagster/blob/HEAD/CHANGES.md#1713-core--02313-libraries)

[Compare
Source](https://github.com/dagster-io/dagster/compare/1.7.12...1.7.13)

##### New

- The `InputContext` passed to an `IOManager` ’s `load_input` function
when invoking the `output_value` or `output_for_node` methods on
`JobExecutionResult` now has the name `"dummy_input_name"` instead of
`None`.
- \[dagster-ui] Asset materializations can now be reported from the
dropdown menu in the asset list view.
- \[dagster-dbt] `DbtProject` is adopted and no longer experimental.
Using `DbtProject` helps achieve a setup where the dbt manifest file and
dbt dependencies are available and up-to-date, during development and in
production. Check out the API docs for more:
<https://docs.dagster.io/_apidocs/libraries/dagster-dbt#dagster_dbt.DbtProject>.
- \[dagster-dbt] The `—use-dbt-project` flag was introduced for the cli
command `dagster-dbt project scaffold`. Creating a Dagster project
wrapping a dbt project using that flag will include a `DbtProject` .
- \[dagster-ui] The Dagster UI now loads events in batches of 1000 in
the run log viewer, instead of batches of 10000. This value can be
adjusted by setting the `DAGSTER_UI_EVENT_LOAD_CHUNK_SIZE` environment
variable on the Dagster webserver.
- Asset backfills will now retry if there is an unexpected exception
raised in the middle of the backfill. Previously, they would only retry
if there was a problem connecting to the code server while launching
runs in the backfill.
- Added the ability to monitor jobs which have failed to start in time
with the `RunFailureReason.START_TIMEOUT` run monitoring failure reason.
Thanks [@&#8203;jobicarter](https://github.com/jobicarter)!
- \[experimental] Introduced the ability to attach code references to
your assets, which allow you to view source code for an asset in your
editor or in git source control. For more information, see the code
references docs:
<https://docs.dagster.io/guides/dagster/code-references>.
-   \[ui] Performance improvements to loading the asset overview tab.
- \[ui] Performance improvements for rendering gantt charts with 1000’s
of ops/steps.
- \[dagster-celery] Introduced a new Dagster Celery runner, a more
lightweight way to run Dagster jobs without an executor. Thanks,
[@&#8203;egordm](https://github.com/egordm)!

##### Bugfixes

- Fixed a bug that caused tags added to `ObserveResult` objects to not
be stored with the produced `AssetObservation` event.
- Fixed a bug which could cause `metadata` defined on `SourceAssets` to
be unavailable when accessed in an IOManager.
- For subselections of graph-backed multi-assets, there are some
situations where we used to unnecessarily execute some of the
non-selected assets. Now, we no longer execute them in those situations.
There are also some situations where we would skip execution of some ops
that might be needed. More information on the particulars is available
[here](https://github.com/dagster-io/dagster/pull/22733).
- Fixed the `@graph_asset` decorator overload missing an `owners`
argument, thanks [@&#8203;askvinni](https://github.com/askvinni)!
- Fixed behavior of passing custom image config to the K8sRunLauncher,
thanks @&#8203;[marchinho11](https://github.com/marchinho11)!
- \[dagster-dbt] Fixed an issue with emitting column lineage when using
BigQuery.
- \[dagster-k8s] Added additional retries to `execute_k8s_job` when
there was a transient failure while loading logs from the launched job.
Thanks [@&#8203;piotrmarczydlo](https://github.com/piotrmarczydlo)!
- \[dagster-fivetran] Fixed an issue where the Fivetran connector
resource would sometimes hang if there was a networking issue while
connecting to the Fivetran API.
- \[dagster-aws] Fixed an issue where the EMR step launcher would
sometimes fail due to multiple versions of the `dateutil` package being
installed in the default EMR python evnrionment.
- \[ui] The “Create date” column in the runs table now correctly shows
the time at which a run was created instead of the time when it started
to execute.
-   \[ui] Fixed dark mode colors in run partitions graphs.
- \[auto-materialize] Fixed an issue which could cause errors in the
`AutoMaterializeRule.skip_on_parent_missing` rule when a parent asset
had its `PartitionsDefinition` changed.
- \[declarative-automation] Fixed an issue which could cause errors when
viewing the evaluation history of assets with `AutomationConditions`.
- \[declarative-automation] Previously,
`AutomationCondition.newly_updated()` would trigger on any
`ASSET_OBSERVATION` event. Now, it only triggers when the data version
on that event changes.

##### Breaking Changes

- \[dagster-dbt] The cli command `dagster-dbt project
prepare-for-deployment` has been replaced by `dagster-dbt project
prepare-and-package`.
- \[dagster-dbt] During development,`DbtProject` no longer prepares the
dbt manifest file and dbt dependencies in its constructor during
initialization. This process has been moved to `prepare_if_dev()`, that
can be called on the `DbtProject` instance after initialization. Check
out the API docs for more:
[https://docs.dagster.io/\_apidocs/libraries/dagster-dbt#dagster_dbt.DbtProject.prepare_if_dev](https://docs.dagster.io/\_apidocs/libraries/dagster-dbt#dagster_dbt.DbtProject.prepare_if_devhttps://docs.dagster.io/\_apidocs/libraries/dagster-dbt#dagster_dbt.DbtProject.prepare_if_dev).

##### Deprecations

- Passing `GraphDefinition` as the `job` argument to schedules and
sensors is deprecated. Derive a job from the `GraphDefinition` using
`graph_def.to_job()` and pass this instead.

##### Documentation

- Added some additional copy, headings, and other formatting to the [dbt
quickstart](https://docs.dagster.io/integrations/dbt/quickstart).
- Added information about asset checks to the [Testing assets
guide](https://docs.dagster.io/guides/dagster/testing-assets).
- Updated `dagster-plus CLI` in the sidenav to correctly be
`dagster-cloud CLI`.
- Thanks to Tim Nordenfur and Dimitar Vanguelov for fixing a few typos!
- Introduced guides to migrate Airflow pipelines to Dagster that
leverage the TaskFlow API or are containerized and executed with an
operator like the KubernetesPodOperator.
- Fixed instructions on setting secrets in Kubernetes Dagster
deployments, thanks
[@&#8203;abhinavDhulipala](https://github.com/abhinavDhulipala)!

##### Dagster Plus

- A history of code location deploys can now be viewed on the Code
Locations tab under the Deployment view. Previously deployed versions
can now be restored from history.
- \[ui] Various improvements have been made to the asset health
dashboard, which is now no longer experimental.
- \[ui] Fixed issues in per-event asset insights where bar charts
incorrectly displayed events in reverse order, and with UTC timestamps.
- Fixed a recent regression where creating an alert that notifies asset
owners that are teams raises an error.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [x] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjUuMyIsInVwZGF0ZWRJblZlciI6IjM3LjQyOS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Signed-off-by: erichesse <[email protected]>
Co-authored-by: erichesse <[email protected]>
  • Loading branch information
RKIMetadataExchange and erichesse authored Jul 19, 2024
1 parent faa345e commit 90bd3da
Showing 0 changed files with 0 additions and 0 deletions.

0 comments on commit 90bd3da

Please sign in to comment.