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

potiuk pushed a change to branch restore-test-airflow-release-commands
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit d65dea5ef0 Bring back release airflow command to be run in canary build
     add c37ab12116 Remove redundant compatibility usage of importlib_metadata 
(#38368)
     add a1473c92c1 Revert "Check task attribute before use in 
sentry.add_tagging() (#37143)" (#38519)
     add b0307b5dd4 Resolve `PT012` in `google` provider tests (#38471)
     add 5df7a1eb55 Add pre-commit to check if tests are in the right folders 
(#38520)
     add a03324382b Improve finalization of tests (#38499)
     add 8c44bcb508 Allow users to write dag_id and task_id in their national 
characters, added display name for dag / task (v2) (#38446)
     add 4ca80cc5d3 Review and set variables in our workflows where appropriate 
(#38523)
     add 28f9bf24fc Bring back release airflow command to be run in canary build

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   (d65dea5ef0)
            \
             N -- N -- N   refs/heads/restore-test-airflow-release-commands 
(28f9bf24fc)

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.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/additional-ci-image-checks.yml   |   42 +-
 .github/workflows/additional-prod-image-tests.yml  |    6 +
 .github/workflows/basic-tests.yml                  |   44 +
 .github/workflows/build-images.yml                 |   10 +-
 .github/workflows/check-providers.yml              |   27 +-
 .github/workflows/ci-image-build.yml               |   17 +-
 .github/workflows/ci.yml                           |   15 +-
 .github/workflows/docs.yml                         |   10 +-
 .github/workflows/finalize-tests.yml               |   13 +-
 .github/workflows/helm-tests.yml                   |    3 +
 .github/workflows/integration-tests.yml            |    3 +
 .github/workflows/k8s-tests.yml                    |    3 +
 .github/workflows/prod-image-build.yml             |   15 +-
 .github/workflows/push-image-cache.yml             |   50 +-
 .github/workflows/run-unit-tests.yml               |    6 +-
 ...atic-checks-mypy-and-constraints-generation.yml |    9 +-
 .pre-commit-config.yaml                            |    8 +
 airflow/api_connexion/openapi/v1.yaml              |   16 +
 airflow/api_connexion/schemas/dag_schema.py        |    1 +
 .../api_connexion/schemas/task_instance_schema.py  |    1 +
 airflow/api_connexion/schemas/task_schema.py       |    1 +
 airflow/cli/commands/dag_command.py                |    1 +
 ...lta_sensor_async.py => example_display_name.py} |   36 +-
 airflow/example_dags/example_params_trigger_ui.py  |   15 +-
 airflow/example_dags/example_params_ui_tutorial.py |    5 +-
 ...39_2_9_0_add_display_name_for_dag_and_task_.py} |   27 +-
 airflow/models/abstractoperator.py                 |   15 +
 airflow/models/baseoperator.py                     |   12 +
 airflow/models/dag.py                              |   24 +
 airflow/models/mappedoperator.py                   |    4 +
 airflow/models/taskinstance.py                     |    6 +
 airflow/providers/docker/hooks/docker.py           |    8 +-
 airflow/sentry.py                                  |  196 ++++
 airflow/sentry/__init__.py                         |   29 -
 airflow/sentry/blank.py                            |   40 -
 airflow/sentry/configured.py                       |  176 ---
 airflow/serialization/schema.json                  |    4 +-
 airflow/serialization/serialized_objects.py        |    1 +
 airflow/www/static/js/dag/details/Header.tsx       |    7 +-
 airflow/www/static/js/types/api-generated.ts       |   13 +
 airflow/www/templates/airflow/dag.html             |    7 +-
 airflow/www/templates/airflow/dags.html            |    8 +-
 airflow/www/templates/airflow/grid.html            |    2 +-
 airflow/www/templates/airflow/task_instance.html   |    2 +-
 airflow/www/templates/airflow/trigger.html         |    2 +-
 airflow/www/views.py                               |   24 +-
 contributing-docs/08_static_code_checks.rst        |    2 +
 dev/breeze/doc/images/output_static-checks.svg     |   10 +-
 dev/breeze/doc/images/output_static-checks.txt     |    2 +-
 dev/breeze/src/airflow_breeze/pre_commit_ids.py    |    1 +
 docs/apache-airflow/img/airflow_erd.sha256         |    2 +-
 docs/apache-airflow/img/airflow_erd.svg            | 1172 ++++++++++----------
 docs/apache-airflow/migrations-ref.rst             |    4 +-
 pyproject.toml                                     |   23 -
 .../pre_commit_check_tests_in_right_folders.py     |  104 ++
 tests/api_connexion/endpoints/test_dag_endpoint.py |   32 +
 .../test_mapped_task_instance_endpoint.py          |    1 +
 .../api_connexion/endpoints/test_task_endpoint.py  |    7 +
 .../endpoints/test_task_instance_endpoint.py       |    7 +
 tests/api_connexion/schemas/test_dag_schema.py     |    5 +
 .../schemas/test_task_instance_schema.py           |    2 +
 tests/api_connexion/schemas/test_task_schema.py    |    2 +
 tests/conftest.py                                  |    2 +
 tests/models/test_taskinstance.py                  |   19 +-
 tests/providers/docker/hooks/test_docker.py        |    8 +-
 .../providers/google/cloud/hooks/test_bigquery.py  |    4 +-
 .../hooks/test_cloud_storage_transfer_service.py   |    4 +-
 .../providers/google/cloud/hooks/test_dataflow.py  |   63 +-
 .../providers/google/cloud/hooks/test_dataprep.py  |   26 +-
 .../google/cloud/hooks/test_kubernetes_engine.py   |    9 +-
 tests/providers/google/cloud/hooks/test_pubsub.py  |   38 +-
 .../google/cloud/operators/test_bigtable.py        |  112 +-
 .../google/cloud/operators/test_cloud_sql.py       |   72 +-
 .../test_cloud_storage_transfer_service.py         |   89 +-
 .../google/cloud/operators/test_compute.py         |  292 ++---
 .../google/cloud/operators/test_datafusion.py      |   29 +-
 .../google/cloud/operators/test_dataproc.py        |   75 +-
 .../google/cloud/operators/test_functions.py       |  130 ++-
 .../cloud/operators/test_kubernetes_engine.py      |    6 +-
 .../google/cloud/operators/test_mlengine.py        |  288 +++--
 .../google/cloud/operators/test_spanner.py         |   14 +-
 .../google/cloud/sensors/test_datafusion.py        |    2 +-
 .../google/cloud/sensors/test_dataproc.py          |    3 +-
 tests/providers/google/cloud/sensors/test_gcs.py   |    1 -
 .../providers/google/cloud/sensors/test_pubsub.py  |    6 -
 .../google/cloud/transfers/test_gcs_to_bigquery.py |  225 ++--
 .../cloud/utils/test_credentials_provider.py       |    2 +-
 .../google/common/hooks/test_base_google.py        |    5 +-
 tests/serialization/test_dag_serialization.py      |    1 +
 tests/test_sentry.py                               |   65 --
 tests/utils/test_dot_renderer.py                   |    6 +-
 tests/www/views/test_views_tasks.py                |    7 +
 92 files changed, 1979 insertions(+), 1964 deletions(-)
 copy airflow/example_dags/{example_time_delta_sensor_async.py => 
example_display_name.py} (67%)
 copy 
airflow/migrations/versions/{0134_2_9_0_add_rendered_map_index_to_taskinstance.py
 => 0139_2_9_0_add_display_name_for_dag_and_task_.py} (60%)
 create mode 100644 airflow/sentry.py
 delete mode 100644 airflow/sentry/__init__.py
 delete mode 100644 airflow/sentry/blank.py
 delete mode 100644 airflow/sentry/configured.py
 create mode 100755 
scripts/ci/pre_commit/pre_commit_check_tests_in_right_folders.py
 delete mode 100644 tests/test_sentry.py

Reply via email to