This is an automated email from the ASF dual-hosted git repository.
vincbeck pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
from 6204490195e Fix (internationalization): Simplified Chinese fills in
gaps and removes extra content, optimizes description (#55564)
add 2d0831e54e7 introduce named asset watchers (#55643)
No new revisions were added by this update.
Summary of changes:
airflow-core/docs/img/airflow_erd.sha256 | 2 +-
airflow-core/docs/img/airflow_erd.svg | 51 +++----
airflow-core/docs/migrations-ref.rst | 4 +-
.../api_fastapi/core_api/datamodels/assets.py | 9 ++
.../core_api/openapi/v2-rest-api-generated.yaml | 25 ++++
.../api_fastapi/core_api/routes/public/assets.py | 23 ++++
.../src/airflow/dag_processing/collection.py | 27 ++--
.../src/airflow/jobs/scheduler_job_runner.py | 4 +-
...3_1_0_replace_asset_trigger_table_with_asset.py | 102 ++++++++++++++
airflow-core/src/airflow/models/asset.py | 58 ++++++--
airflow-core/src/airflow/models/trigger.py | 8 +-
.../airflow/ui/openapi-gen/requests/schemas.gen.ts | 31 ++++-
.../airflow/ui/openapi-gen/requests/types.gen.ts | 10 ++
airflow-core/src/airflow/utils/db.py | 2 +-
.../core_api/routes/public/test_assets.py | 148 +++++++++++++++++++++
.../tests/unit/cli/commands/test_asset_command.py | 1 +
airflow-core/tests/unit/models/test_trigger.py | 17 +--
.../src/airflowctl/api/datamodels/generated.py | 11 ++
.../tests/airflow_ctl/api/test_operations.py | 1 +
devel-common/src/tests_common/test_utils/db.py | 12 +-
20 files changed, 483 insertions(+), 63 deletions(-)
create mode 100644
airflow-core/src/airflow/migrations/versions/0085_3_1_0_replace_asset_trigger_table_with_asset.py