This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
from cb7697ff0b Add ENV_ID for job_name in Cloud Run system tests (#41788)
add 9ae53eea8c Add triggered_by field to DAG Run model to distinguish the
source of a trigger (#39165)
No new revisions were added by this update.
Summary of changes:
airflow/api/client/local_client.py | 2 +
airflow/api/common/mark_tasks.py | 2 +
airflow/api/common/trigger_dag.py | 10 +-
.../api_connexion/endpoints/dag_run_endpoint.py | 3 +-
airflow/api_connexion/schemas/dag_run_schema.py | 3 +-
airflow/cli/commands/dag_command.py | 2 +
airflow/cli/commands/task_command.py | 3 +
airflow/jobs/backfill_job_runner.py | 3 +-
airflow/jobs/scheduler_job_runner.py | 4 +-
.../0005_3_0_0_add_triggered_by_field_to_dagrun.py | 73 +
airflow/models/baseoperator.py | 3 +-
airflow/models/dag.py | 14 +-
airflow/models/dagrun.py | 8 +-
airflow/operators/trigger_dagrun.py | 3 +-
airflow/serialization/pydantic/dag_run.py | 2 +
airflow/utils/db.py | 2 +-
airflow/utils/types.py | 12 +
airflow/www/utils.py | 1 +
airflow/www/views.py | 3 +-
dev/perf/scheduler_dag_execution_timing.py | 2 +
docs/apache-airflow/img/airflow_erd.sha256 | 2 +-
docs/apache-airflow/img/airflow_erd.svg | 2836 ++++++++++----------
docs/apache-airflow/migrations-ref.rst | 4 +-
.../endpoints/test_dag_run_endpoint.py | 415 +--
.../endpoints/test_extra_link_endpoint.py | 7 +-
tests/api_connexion/schemas/test_dag_run_schema.py | 89 +-
tests/cli/commands/test_task_command.py | 14 +
tests/conftest.py | 17 +-
tests/dag_processing/test_processor.py | 13 +-
tests/decorators/test_python.py | 8 +
tests/jobs/test_backfill_job.py | 17 +-
tests/jobs/test_local_task_job.py | 47 +-
tests/jobs/test_scheduler_job.py | 24 +
tests/models/test_cleartasks.py | 6 +
tests/models/test_dag.py | 89 +-
tests/models/test_dagrun.py | 23 +
tests/models/test_taskinstance.py | 23 +-
tests/operators/test_bash.py | 6 +
tests/operators/test_branch_operator.py | 18 +-
tests/operators/test_datetime.py | 8 +
tests/operators/test_latest_only_operator.py | 14 +
tests/operators/test_python.py | 6 +
tests/operators/test_weekday.py | 15 +
tests/providers/common/sql/operators/test_sql.py | 19 +-
.../openlineage/plugins/test_execution.py | 9 +-
.../providers/openlineage/plugins/test_listener.py | 26 +-
tests/providers/openlineage/plugins/test_utils.py | 10 +-
tests/sensors/test_external_task_sensor.py | 20 +-
tests/serialization/test_pydantic_models.py | 7 +
.../task/task_runner/test_standard_task_runner.py | 14 +
tests/ti_deps/deps/test_prev_dagrun_dep.py | 7 +
tests/utils/log/test_task_context_logger.py | 7 +-
tests/utils/test_log_handlers.py | 14 +
tests/utils/test_sqlalchemy.py | 8 +
tests/utils/test_state.py | 6 +
.../test_task_handler_with_custom_formatter.py | 6 +
tests/utils/test_types.py | 6 +
tests/www/test_utils.py | 21 +-
tests/www/views/test_views.py | 8 +
tests/www/views/test_views_acl.py | 7 +
tests/www/views/test_views_dagrun.py | 8 +
tests/www/views/test_views_decorators.py | 7 +
tests/www/views/test_views_extra_links.py | 7 +-
tests/www/views/test_views_grid.py | 2 +
tests/www/views/test_views_log.py | 7 +
tests/www/views/test_views_rendered.py | 8 +
tests/www/views/test_views_tasks.py | 20 +-
67 files changed, 2429 insertions(+), 1681 deletions(-)
create mode 100644
airflow/migrations/versions/0005_3_0_0_add_triggered_by_field_to_dagrun.py