|
1 | 1 | # Changelog |
2 | 2 |
|
| 3 | +## 0.7.11 |
| 4 | + |
| 5 | +**Bugfix** |
| 6 | + |
| 7 | +- Fixed an issue with strict snapshot ID matching when loading historical snapshots, which caused |
| 8 | + errors on the Runs page when viewing historical runs. |
| 9 | +- Fixed an issue where `dagster_celery` had introduced a spurious dependency on `dagster_k8s` |
| 10 | + (#2435) |
| 11 | +- Fixed an issue where our Airflow, Celery, and Dask integrations required S3 or GCS storage and |
| 12 | + prevented use of filesystem storage. Filesystem storage is now also permitted, to enable use of |
| 13 | + these integrations with distributed filesystems like NFS (#2436). |
| 14 | + |
3 | 15 | ## 0.7.10 |
4 | 16 |
|
5 | 17 | **New** |
|
10 | 22 | - Mark published modules as python 3.8 compatible. |
11 | 23 | - The dagster-airflow package supports loading all Airflow DAGs within a directory path, file path, |
12 | 24 | or Airflow DagBag. |
13 | | -- The dagster-airflow package supports loading all 23 DAGs in Airflow example_dags folder and execution |
14 | | - of 17 of them (see: `make_dagster_repo_from_airflow_example_dags`). |
| 25 | +- The dagster-airflow package supports loading all 23 DAGs in Airflow example_dags folder and |
| 26 | + execution of 17 of them (see: `make_dagster_repo_from_airflow_example_dags`). |
15 | 27 | - The dagster-celery CLI tools now allow you to pass additional arguments through to the underlying |
16 | 28 | celery CLI, e.g., running `dagster-celery worker start -n my-worker -- --uid=42` will pass the |
17 | 29 | `--uid` flag to celery. |
|
22 | 34 |
|
23 | 35 | **Breaking Changes** |
24 | 36 |
|
25 | | -- Runs created prior to 0.7.8 will no longer render their execution plans as DAGs. We are only rendering |
26 | | - execution plans that have been persisted. Logs are still available. |
| 37 | +- A `dagster instance migrate` is required for this release to support the new experimental assets |
| 38 | + view. |
| 39 | +- Runs created prior to 0.7.8 will no longer render their execution plans as DAGs. We are only |
| 40 | + rendering execution plans that have been persisted. Logs are still available. |
27 | 41 | - `Path` is no longer valid in config schemas. Use `str` or `dagster.String` instead. |
28 | 42 | - Removed the `@pyspark_solid` decorator - its functionality, which was experimental, is subsumed by |
29 | 43 | requiring a StepLauncher resource (e.g. emr_pyspark_step_launcher) on the solid. |
|
0 commit comments