This is an automated email from the ASF dual-hosted git repository.
kamilbregula pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git.
from 708197b Improve command examples in docs (#9934)
add 39a0288 Add Google Authentication for experimental API (#9848)
No new revisions were added by this update.
Summary of changes:
airflow/api/__init__.py | 4 +-
airflow/api/client/__init__.py | 8 +-
airflow/api/client/api_client.py | 7 +-
airflow/api/client/json_client.py | 6 +-
airflow/config_templates/config.yml | 16 ++
airflow/config_templates/default_airflow.cfg | 11 ++
.../google/common/auth_backend}/__init__.py | 0
.../google/common/auth_backend/google_openid.py | 138 +++++++++++++
.../providers/google/common/utils}/__init__.py | 0
.../google/common/utils/id_token_credentials.py | 215 +++++++++++++++++++++
backport_packages/refactor_backport_packages.py | 7 +
docs/conf.py | 49 +++--
docs/security.rst | 50 +++++
tests/api/auth/test_client.py | 19 +-
.../common/auth_backend}/__init__.py | 0
.../common/auth_backend/test_google_openid.py | 134 +++++++++++++
.../hooks => google/common/utils}/__init__.py | 0
.../common/utils/test_id_token_credentials.py | 162 ++++++++++++++++
18 files changed, 800 insertions(+), 26 deletions(-)
copy {tests/providers/zendesk/hooks =>
airflow/providers/google/common/auth_backend}/__init__.py (100%)
create mode 100644
airflow/providers/google/common/auth_backend/google_openid.py
copy {tests/providers/zendesk/hooks =>
airflow/providers/google/common/utils}/__init__.py (100%)
create mode 100644
airflow/providers/google/common/utils/id_token_credentials.py
copy tests/providers/{zendesk/hooks => google/common/auth_backend}/__init__.py
(100%)
create mode 100644
tests/providers/google/common/auth_backend/test_google_openid.py
copy tests/providers/{zendesk/hooks => google/common/utils}/__init__.py (100%)
create mode 100644
tests/providers/google/common/utils/test_id_token_credentials.py