You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ep...@apache.org on 2023/03/10 08:35:26 UTC

[airflow] branch v2-5-test updated (57458d92d0 -> 5f97914127)

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

ephraimanierobi pushed a change to branch v2-5-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit 57458d92d0 Regenerate ERD diagrams for v2-5 branch
    omit 1571fca92c Pin ruff to specific version and prevent from "fixing" cli conftest (#29040)
    omit b50028c272 Switch to ruff for faster static checks (#28893)
    omit d9939499f8 Fix bugs introduced when moving the code of issue generation to breeze (#28683)
    omit 52025d45e9 Make options output of breeze command consistent and complete (#29097)
    omit 2b848caccd Add release flag to Breeze generate-issue-content (#28952)
    omit 7e0bdb0467 Return error when group is not defined in breeze configuration (#29997)
    omit 08242a3f4b Add release commands to release management command config (#29995)
    omit 124179076a Add Changelog for 2.5.2
    omit 955a5590b6 Limit importlib-metadata backwport to < 5.0.0 (#29924)
    omit bb90f4afdc Migrate remaining core sensors tests to `pytest` (#28204)
    omit d6b92bfb25 Move help message to the google auth code (#29888)
    omit f167e41962 Fix CI
     add 4e72ada55f Move help message to the google auth code (#29888)
     add 57fd64d75d Migrate remaining core sensors tests to `pytest` (#28204)
     add 6767493395 Limit importlib-metadata backwport to < 5.0.0 (#29924)
     add f0fd4b71cb Add Changelog for 2.5.2
     add 8d6efad05e Add release commands to release management command config (#29995)
     add 620e6e7424 Return error when group is not defined in breeze configuration (#29997)
     add 0915a108c6 Add release flag to Breeze generate-issue-content (#28952)
     add e3bfd4414d Make options output of breeze command consistent and complete (#29097)
     add 89b3f2404c Fix bugs introduced when moving the code of issue generation to breeze (#28683)
     add 5f97914127 Fix CI

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   (57458d92d0)
            \
             N -- N -- N   refs/heads/v2-5-test (5f97914127)

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:
 .flake8                                            |   8 ++
 .github/boring-cyborg.yml                          |   1 +
 .github/workflows/ci.yml                           |   1 -
 .pre-commit-config.yaml                            |  67 ++++++++--
 .rat-excludes                                      |   1 +
 STATIC_CODE_CHECKS.rst                             |  12 +-
 airflow/cli/commands/connection_command.py         |   2 +-
 airflow/compat/functools.pyi                       |   1 -
 airflow/decorators/__init__.pyi                    |  13 +-
 airflow/example_dags/example_sensor_decorator.py   |   1 -
 airflow/example_dags/tutorial_taskflow_api.py      |   1 -
 airflow/hooks/dbapi.py                             |   6 +-
 airflow/migrations/db_types.pyi                    |   1 -
 airflow/providers/amazon/aws/hooks/emr.py          |  10 +-
 airflow/providers/amazon/aws/operators/sns.py      |   2 +-
 .../amazon/aws/transfers/dynamodb_to_s3.py         |   4 +-
 .../providers/cncf/kubernetes/utils/__init__.py    |   2 -
 .../providers/google/cloud/operators/dataproc.py   |   2 +-
 .../google/cloud/operators/kubernetes_engine.py    |   2 +-
 airflow/providers/microsoft/azure/hooks/wasb.py    |   2 +-
 airflow/providers/odbc/hooks/odbc.py               |   2 +-
 airflow/utils/context.pyi                          |   5 +-
 airflow/utils/log/action_logger.py                 |   1 -
 airflow/utils/process_utils.py                     |   4 +-
 .../src/airflow_breeze/commands/main_command.py    |   4 +-
 dev/breeze/src/airflow_breeze/global_constants.py  |   9 +-
 dev/breeze/src/airflow_breeze/pre_commit_ids.py    |   8 +-
 .../pre_commit_ids_TEMPLATE.py.jinja2              |   1 -
 docs/apache-airflow/img/airflow_erd.sha256         |   2 +-
 docs/apache-airflow/img/airflow_erd.svg            | 136 ++++++++++-----------
 docs/build_docs.py                                 |   6 +-
 docs/exts/provider_init_hack.py                    |   4 +-
 docs/spelling_wordlist.txt                         |   1 -
 images/breeze/output-commands-hash.txt             |   2 +-
 images/breeze/output_static-checks.svg             |  56 +++++----
 images/breeze/output_stop.svg                      |  24 ++--
 provider_packages/.flake8                          |   1 +
 pyproject.toml                                     | 108 ++--------------
 .../pre_commit_check_pre_commit_hooks.py           |  10 +-
 .../{pre_commit_mypy.py => pre_commit_flake8.py}   |  12 +-
 .../in_container/{run_mypy.sh => run_flake8.sh}    |   5 +-
 setup.py                                           |   8 +-
 tests/api_connexion/endpoints/test_dag_endpoint.py |  15 +++
 tests/cli/conftest.py                              |   2 +-
 .../providers/google/suite/hooks/test_calendar.py  |   3 +-
 .../cncf/kubernetes/example_spark_kubernetes.py    |   3 +-
 .../google/cloud/bigtable/example_bigtable.py      |   6 +-
 tests/test_utils/get_all_tests.py                  |   4 +-
 48 files changed, 283 insertions(+), 298 deletions(-)
 create mode 100644 .flake8
 create mode 120000 provider_packages/.flake8
 copy scripts/ci/pre_commit/{pre_commit_mypy.py => pre_commit_flake8.py} (86%)
 copy scripts/in_container/{run_mypy.sh => run_flake8.sh} (88%)