This is an automated email from the ASF dual-hosted git repository.

ash pushed a change to branch precommmit-generate-tasksdk-datamodel
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit 92c661c210b Auto-generate the Pydantic datamodels for TaskSDK in 
pre-commit
     add 1abd63731ae Remove example_dags folder (#47052)
     add 811fa2b016c Replace `external_trigger` check with DagRunType (#45961)
     add 2589cedbfd0 Update count of example dags after #47052 removed some 
(#47058)
     new 89a0793991d Auto-generate the Pydantic datamodels for TaskSDK in 
pre-commit

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (92c661c210b)
            \
             N -- N -- N   refs/heads/precommmit-generate-tasksdk-datamodel 
(89a0793991d)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 airflow/api/client/local_client.py                 |    1 -
 airflow/api/common/mark_tasks.py                   |    2 +-
 airflow/api/common/trigger_dag.py                  |    1 -
 .../api_connexion/endpoints/dag_run_endpoint.py    |    2 -
 airflow/api_connexion/schemas/dag_run_schema.py    |    1 -
 airflow/api_fastapi/core_api/datamodels/dag_run.py |    1 -
 .../api_fastapi/core_api/openapi/v1-generated.yaml |    4 -
 .../api_fastapi/core_api/routes/public/assets.py   |    1 -
 .../api_fastapi/core_api/routes/public/dag_run.py  |    3 -
 .../execution_api/datamodels/taskinstance.py       |    1 -
 .../execution_api/routes/task_instances.py         |    1 -
 .../cli/commands/remote_commands/task_command.py   |    1 -
 airflow/example_dags/plugins/event_listener.py     |    4 +-
 airflow/exceptions.py                              |    1 -
 airflow/jobs/scheduler_job_runner.py               |    4 +-
 ...=> 0059_3_0_0_remove_external_trigger_field.py} |   34 +-
 airflow/models/dag.py                              |   22 +-
 airflow/models/dagrun.py                           |   18 +-
 airflow/models/taskinstance.py                     |    1 -
 airflow/ui/openapi-gen/requests/schemas.gen.ts     |    5 -
 airflow/ui/openapi-gen/requests/types.gen.ts       |    1 -
 airflow/ui/src/pages/Run/Details.tsx               |   10 +-
 airflow/utils/db.py                                |    2 +-
 airflow/utils/db_cleanup.py                        |    7 +-
 airflow/www/utils.py                               |    1 -
 airflow/www/views.py                               |    4 -
 dev/perf/scheduler_dag_execution_timing.py         |    1 -
 docs/apache-airflow/img/airflow_erd.sha256         |    2 +-
 docs/apache-airflow/img/airflow_erd.svg            | 2296 ++++++++++----------
 docs/apache-airflow/migrations-ref.rst             |    4 +-
 newsfragments/45961.significant.rst                |   22 +
 .../tests/unit/amazon/aws/hooks/test_mwaa.py       |    1 -
 .../google/cloud/example_dags/__init__.py          |   16 -
 .../cloud/example_dags/example_cloud_task.py       |   54 -
 .../openlineage/facets/AirflowDagRunFacet.json     |    3 -
 .../openlineage/facets/AirflowRunFacet.json        |    3 -
 .../airflow/providers/openlineage/utils/utils.py   |    1 -
 .../tests/unit/openlineage/plugins/test_adapter.py |    7 +-
 .../tests/unit/openlineage/utils/test_utils.py     |    2 -
 .../providers/standard/operators/latest_only.py    |    7 +-
 .../tests/unit/standard/operators/test_bash.py     |    1 -
 .../operators/test_latest_only_operator.py         |    3 -
 .../src/airflow/sdk/api/datamodels/_generated.py   |    1 -
 task_sdk/src/airflow/sdk/types.py                  |    3 -
 .../api_connexion/endpoints/test_asset_endpoint.py |    1 -
 .../endpoints/test_dag_run_endpoint.py             |   26 -
 .../endpoints/test_dag_stats_endpoint.py           |    4 -
 tests/api_connexion/schemas/test_dag_run_schema.py |    3 -
 tests/api_fastapi/common/test_exceptions.py        |    6 +-
 .../core_api/routes/public/test_assets.py          |    2 -
 .../core_api/routes/public/test_dag_run.py         |    7 -
 .../core_api/routes/public/test_dag_stats.py       |    4 -
 .../execution_api/routes/test_task_instances.py    |    1 -
 .../commands/remote_commands/test_asset_command.py |    1 -
 .../commands/remote_commands/test_dag_command.py   |    2 -
 .../commands/remote_commands/test_task_command.py  |    1 -
 tests/core/test_core.py                            |    1 -
 tests/jobs/test_scheduler_job.py                   |    6 +-
 tests/models/test_dag.py                           |    2 +-
 tests/models/test_dagrun.py                        |   15 +-
 tests/models/test_taskinstance.py                  |    1 -
 tests/operators/test_trigger_dagrun.py             |   13 +-
 tests/serialization/test_dag_serialization.py      |    4 +-
 tests/serialization/test_serialized_objects.py     |    1 -
 tests/utils/test_db_cleanup.py                     |   54 +-
 tests/www/test_utils.py                            |    1 -
 tests/www/views/test_views_grid.py                 |    2 -
 67 files changed, 1275 insertions(+), 1443 deletions(-)
 copy airflow/migrations/versions/{0037_3_0_0_add_backfill_to_dag_run_model.py 
=> 0059_3_0_0_remove_external_trigger_field.py} (59%)
 create mode 100644 newsfragments/45961.significant.rst
 delete mode 100644 
providers/google/src/airflow/providers/google/cloud/example_dags/__init__.py
 delete mode 100644 
providers/google/src/airflow/providers/google/cloud/example_dags/example_cloud_task.py

Reply via email to