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 2022/02/15 22:02:03 UTC

[airflow] branch main updated (5fdd6fa -> 8d980cb)

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

ash pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git.


    from 5fdd6fa   Added retries to LivyHook #19384  (#21550)
     add 8d980cb  Implement multiple API auth backends (#21472)

No new revisions were added by this update.

Summary of changes:
 UPDATING.md                                        |  7 ++
 airflow/api/__init__.py                            | 23 +++---
 .../api/auth/backend/{default.py => session.py}    |  7 +-
 airflow/api/client/__init__.py                     | 19 ++---
 airflow/api_connexion/openapi/v1.yaml              |  4 +-
 airflow/api_connexion/security.py                  | 12 +--
 airflow/config_templates/config.yml                |  2 +-
 airflow/config_templates/default_airflow.cfg       |  2 +-
 airflow/config_templates/default_test.cfg          |  3 +-
 airflow/configuration.py                           |  1 +
 airflow/ui/README.md                               |  2 +-
 airflow/www/api/experimental/endpoints.py          |  3 +-
 airflow/www/extensions/init_jinja_globals.py       |  6 +-
 airflow/www/extensions/init_security.py            | 21 ++---
 airflow/www/static/js/connection_form.js           |  2 +-
 chart/values.yaml                                  |  2 +-
 .../api-auth-backend/google-openid.rst             |  2 +-
 docs/apache-airflow/security/api.rst               | 20 +++--
 docs/apache-airflow/start/docker-compose.yaml      |  2 +-
 docs/helm-chart/airflow-configuration.rst          |  2 +-
 scripts/ci/libraries/_kind.sh                      |  4 +-
 tests/api/auth/backend/test_kerberos_auth.py       |  2 +-
 tests/api/auth/test_client.py                      |  4 +-
 tests/api/conftest.py                              |  2 +-
 tests/api_connexion/conftest.py                    |  4 +-
 .../{test_basic_auth.py => test_auth.py}           | 91 +++++++++++++++++++++-
 .../common/auth_backend/test_google_openid.py      |  6 +-
 27 files changed, 187 insertions(+), 68 deletions(-)
 copy airflow/api/auth/backend/{default.py => session.py} (89%)
 rename tests/api_connexion/{test_basic_auth.py => test_auth.py} (56%)