You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by as...@apache.org on 2021/05/17 16:33:41 UTC

[airflow] branch v2-1-test updated (13a1533 -> b86794b)

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

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


 discard 13a1533  Update default versions v2-1-test in the 2.1 branch
     add bb115da  Get rid of requests as core dependency (#15781)
     add c7da390  Detect 🚧 as a WIP PR (#15893)
     add 821ea6f  Fix spacing in ``AwsBatchWaitersHook`` docstring (#15839)
     add ac3454e  Fix 500 error from updateTaskInstancesState API endpoint when `dry_run` not passed (#15889)
     add 12995cf  Replace DockerOperator's 'volumes' arg for 'mounts' (#15843)
     add 57f6635  Use 'authentication backend' instead of executor in the section about authentication backends. (#15894)
     add abcd487  Add optional result handler to database hooks (#15581)
     add b86794b  Update default versions v2-1-test in the 2.1 branch

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   (13a1533)
            \
             N -- N -- N   refs/heads/v2-1-test (b86794b)

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/mergeable.yml                              |   2 +-
 .pre-commit-config.yaml                            |  58 ++-
 CHANGELOG.txt                                      |   2 +
 CONTRIBUTING.rst                                   |  16 +-
 INSTALL                                            |  16 +-
 UPDATING.md                                        |  12 +
 .../.gitignore => airflow/_vendor/__init__.py      |   0
 airflow/_vendor/connexion/__init__.py              |  48 +++
 airflow/_vendor/connexion/__main__.py              |   3 +
 airflow/_vendor/connexion/apis/__init__.py         |   1 +
 airflow/_vendor/connexion/apis/abstract.py         | 446 +++++++++++++++++++++
 airflow/_vendor/connexion/apis/aiohttp_api.py      | 394 ++++++++++++++++++
 airflow/_vendor/connexion/apis/flask_api.py        | 310 ++++++++++++++
 airflow/_vendor/connexion/apis/flask_utils.py      |  81 ++++
 airflow/_vendor/connexion/apps/__init__.py         |   1 +
 airflow/_vendor/connexion/apps/abstract.py         | 249 ++++++++++++
 airflow/_vendor/connexion/apps/aiohttp_app.py      |  95 +++++
 airflow/_vendor/connexion/apps/flask_app.py        | 138 +++++++
 airflow/_vendor/connexion/cli.py                   | 210 ++++++++++
 .../_vendor/connexion/decorators/__init__.py       |   0
 .../connexion/decorators/coroutine_wrappers.py     |  53 +++
 airflow/_vendor/connexion/decorators/decorator.py  |  51 +++
 airflow/_vendor/connexion/decorators/metrics.py    |  54 +++
 airflow/_vendor/connexion/decorators/parameter.py  | 123 ++++++
 airflow/_vendor/connexion/decorators/produces.py   |  49 +++
 airflow/_vendor/connexion/decorators/response.py   | 112 ++++++
 airflow/_vendor/connexion/decorators/security.py   | 341 ++++++++++++++++
 .../_vendor/connexion/decorators/uri_parsing.py    | 329 +++++++++++++++
 airflow/_vendor/connexion/decorators/validation.py | 386 ++++++++++++++++++
 airflow/_vendor/connexion/exceptions.py            | 142 +++++++
 airflow/_vendor/connexion/handlers.py              |  85 ++++
 airflow/_vendor/connexion/http_facts.py            |  15 +
 airflow/_vendor/connexion/json_schema.py           | 114 ++++++
 airflow/_vendor/connexion/jsonifier.py             |  57 +++
 airflow/_vendor/connexion/lifecycle.py             |  41 ++
 airflow/_vendor/connexion/mock.py                  |  47 +++
 airflow/_vendor/connexion/operations/__init__.py   |   8 +
 airflow/_vendor/connexion/operations/abstract.py   | 445 ++++++++++++++++++++
 airflow/_vendor/connexion/operations/compat.py     |   3 +
 airflow/_vendor/connexion/operations/openapi.py    | 380 ++++++++++++++++++
 airflow/_vendor/connexion/operations/secure.py     | 164 ++++++++
 airflow/_vendor/connexion/operations/swagger2.py   | 310 ++++++++++++++
 airflow/_vendor/connexion/options.py               | 144 +++++++
 airflow/_vendor/connexion/problem.py               |  42 ++
 airflow/_vendor/connexion/resolver.py              | 192 +++++++++
 airflow/_vendor/connexion/setup.cfg                |   7 +
 airflow/_vendor/connexion/setup.py                 | 119 ++++++
 airflow/_vendor/connexion/spec.py                  | 262 ++++++++++++
 airflow/_vendor/connexion/utils.py                 | 250 ++++++++++++
 airflow/api/auth/backend/basic_auth.py             |   5 +-
 airflow/api/auth/backend/default.py                |   6 +-
 airflow/api/auth/backend/deny_all.py               |   5 +-
 airflow/api/auth/backend/kerberos_auth.py          |   5 +-
 airflow/api/client/api_client.py                   |   4 +-
 .../api_connexion/endpoints/connection_endpoint.py |   2 +-
 .../api_connexion/endpoints/dag_run_endpoint.py    |   2 +-
 .../endpoints/role_and_permission_endpoint.py      |   2 +-
 airflow/api_connexion/exceptions.py                |   2 +-
 .../api_connexion/schemas/task_instance_schema.py  |   2 +-
 airflow/cli/commands/info_command.py               |   6 +-
 airflow/example_dags/example_dag_decorator.py      |   5 +-
 airflow/hooks/dbapi.py                             |  41 +-
 .../providers/amazon/aws/hooks/batch_waiters.py    |   4 +-
 airflow/providers/docker/CHANGELOG.rst             |  16 +
 .../example_dags/example_docker_copy_data.py       |  10 +-
 airflow/providers/docker/operators/docker.py       |  16 +-
 airflow/providers/docker/operators/docker_swarm.py |   1 +
 airflow/providers/docker/provider.yaml             |   1 +
 airflow/providers/google/cloud/hooks/cloud_sql.py  |   4 +-
 airflow/providers/oracle/operators/oracle.py       |   2 +-
 airflow/utils/log/file_task_handler.py             |   4 +-
 airflow/www/extensions/init_views.py               |   4 +-
 docs/apache-airflow/extra-packages-ref.rst         |   4 +-
 docs/apache-airflow/security/api.rst               |   2 +-
 docs/conf.py                                       |   1 +
 docs/exts/docs_build/third_party_inventories.py    |   1 +
 docs/spelling_wordlist.txt                         |   1 +
 licenses/LICENSE-connexion.txt                     |   9 +
 setup.cfg                                          |  14 +-
 setup.py                                           |  33 +-
 .../endpoints/test_task_instance_endpoint.py       |  20 +
 tests/cli/commands/test_info_command.py            |  29 +-
 tests/hooks/test_dbapi.py                          |  36 +-
 tests/providers/apache/druid/hooks/test_druid.py   |   2 +-
 tests/providers/apache/pinot/hooks/test_pinot.py   |   2 +-
 tests/providers/docker/operators/test_docker.py    |  10 +-
 .../docker/operators/test_docker_swarm.py          |   3 +
 .../elasticsearch/hooks/test_elasticsearch.py      |   2 +-
 tests/providers/exasol/hooks/test_exasol.py        |   2 +-
 tests/providers/mysql/hooks/test_mysql.py          |   2 +-
 tests/providers/oracle/hooks/test_oracle.py        |   2 +-
 tests/providers/oracle/operators/test_oracle.py    |  10 +-
 tests/providers/postgres/hooks/test_postgres.py    |   2 +-
 tests/providers/presto/hooks/test_presto.py        |   2 +-
 tests/providers/snowflake/hooks/test_snowflake.py  |   4 +-
 tests/providers/sqlite/hooks/test_sqlite.py        |   2 +-
 tests/providers/trino/hooks/test_trino.py          |   2 +-
 tests/providers/vertica/hooks/test_vertica.py      |   2 +-
 tests/www/views/test_views.py                      |   5 +
 99 files changed, 6626 insertions(+), 134 deletions(-)
 copy scripts/ci/docker-compose/empty/.gitignore => airflow/_vendor/__init__.py (100%)
 create mode 100755 airflow/_vendor/connexion/__init__.py
 create mode 100644 airflow/_vendor/connexion/__main__.py
 create mode 100644 airflow/_vendor/connexion/apis/__init__.py
 create mode 100644 airflow/_vendor/connexion/apis/abstract.py
 create mode 100644 airflow/_vendor/connexion/apis/aiohttp_api.py
 create mode 100644 airflow/_vendor/connexion/apis/flask_api.py
 create mode 100644 airflow/_vendor/connexion/apis/flask_utils.py
 create mode 100644 airflow/_vendor/connexion/apps/__init__.py
 create mode 100644 airflow/_vendor/connexion/apps/abstract.py
 create mode 100644 airflow/_vendor/connexion/apps/aiohttp_app.py
 create mode 100644 airflow/_vendor/connexion/apps/flask_app.py
 create mode 100644 airflow/_vendor/connexion/cli.py
 copy scripts/ci/docker-compose/empty/.gitignore => airflow/_vendor/connexion/decorators/__init__.py (100%)
 create mode 100644 airflow/_vendor/connexion/decorators/coroutine_wrappers.py
 create mode 100644 airflow/_vendor/connexion/decorators/decorator.py
 create mode 100644 airflow/_vendor/connexion/decorators/metrics.py
 create mode 100644 airflow/_vendor/connexion/decorators/parameter.py
 create mode 100644 airflow/_vendor/connexion/decorators/produces.py
 create mode 100644 airflow/_vendor/connexion/decorators/response.py
 create mode 100644 airflow/_vendor/connexion/decorators/security.py
 create mode 100644 airflow/_vendor/connexion/decorators/uri_parsing.py
 create mode 100644 airflow/_vendor/connexion/decorators/validation.py
 create mode 100644 airflow/_vendor/connexion/exceptions.py
 create mode 100644 airflow/_vendor/connexion/handlers.py
 create mode 100644 airflow/_vendor/connexion/http_facts.py
 create mode 100644 airflow/_vendor/connexion/json_schema.py
 create mode 100644 airflow/_vendor/connexion/jsonifier.py
 create mode 100644 airflow/_vendor/connexion/lifecycle.py
 create mode 100644 airflow/_vendor/connexion/mock.py
 create mode 100644 airflow/_vendor/connexion/operations/__init__.py
 create mode 100644 airflow/_vendor/connexion/operations/abstract.py
 create mode 100644 airflow/_vendor/connexion/operations/compat.py
 create mode 100644 airflow/_vendor/connexion/operations/openapi.py
 create mode 100644 airflow/_vendor/connexion/operations/secure.py
 create mode 100644 airflow/_vendor/connexion/operations/swagger2.py
 create mode 100644 airflow/_vendor/connexion/options.py
 create mode 100644 airflow/_vendor/connexion/problem.py
 create mode 100644 airflow/_vendor/connexion/resolver.py
 create mode 100644 airflow/_vendor/connexion/setup.cfg
 create mode 100755 airflow/_vendor/connexion/setup.py
 create mode 100644 airflow/_vendor/connexion/spec.py
 create mode 100644 airflow/_vendor/connexion/utils.py
 create mode 100644 licenses/LICENSE-connexion.txt