This is an automated email from the ASF dual-hosted git repository.
vincbeck pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
from e1f9151b1d3 Make LocalExecutor work under heavy load (#47678)
add ec39ba48106 Remove auth backends from core Airflow (#47399)
No new revisions were added by this update.
Summary of changes:
Dockerfile.ci | 1 -
airflow/api/__init__.py | 44 ----------------------
airflow/api/auth/__init__.py | 17 ---------
airflow/api/auth/backend/__init__.py | 17 ---------
airflow/api/auth/backend/deny_all.py | 44 ----------------------
airflow/api/client/__init__.py | 14 +------
airflow/cli/cli_config.py | 6 ---
.../cli/commands/remote_commands/config_command.py | 6 ++-
.../commands/remote_commands/provider_command.py | 13 -------
airflow/config_templates/config.yml | 9 -----
airflow/config_templates/unit_tests.cfg | 3 ++
airflow/configuration.py | 33 ----------------
airflow/providers_manager.py | 22 -----------
.../airflow_breeze/commands/kubernetes_commands.py | 2 -
.../core-extensions/auth-backends.rst | 34 -----------------
.../howto/create-custom-providers.rst | 3 --
docs/apache-airflow-providers/index.rst | 9 -----
.../howto/docker-compose/docker-compose.yaml | 2 -
docs/apache-airflow/public-airflow-interface.rst | 8 ----
docs/conf.py | 2 +
docs/exts/operators_and_hooks_ref.py | 27 -------------
docs/exts/templates/auth_backend.rst.jinja2 | 27 -------------
kubernetes_tests/test_base.py | 2 +
newsfragments/47399.significant.rst | 20 ++++++++++
providers/fab/provider.yaml | 7 ++++
.../src/airflow/providers/fab/get_provider_info.py | 7 ++++
providers/fab/src/airflow/providers/fab/www/app.py | 4 +-
.../providers/fab/www/extensions/init_security.py | 4 +-
.../fab/auth_manager/api_endpoints/test_auth.py | 2 +-
.../fab/tests/unit/fab/auth_manager/conftest.py | 2 +-
.../common/auth_backend/test_google_openid.py | 37 ++++++++++--------
scripts/docker/entrypoint_ci.sh | 1 -
scripts/in_container/verify_providers.py | 2 -
tests/always/test_providers_manager.py | 5 ---
tests/core/test_configuration.py | 25 ------------
35 files changed, 75 insertions(+), 386 deletions(-)
delete mode 100644 airflow/api/__init__.py
delete mode 100644 airflow/api/auth/__init__.py
delete mode 100644 airflow/api/auth/backend/__init__.py
delete mode 100644 airflow/api/auth/backend/deny_all.py
delete mode 100644
docs/apache-airflow-providers/core-extensions/auth-backends.rst
delete mode 100644 docs/exts/templates/auth_backend.rst.jinja2
create mode 100644 newsfragments/47399.significant.rst