This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
from 34620a2d721 Fix upgrade checks with prek (#56170)
add af2bd2671dd Upgrade FAB to FAB 5 (#50960)
No new revisions were added by this update.
Summary of changes:
.../config_templates/default_webserver_config.py | 2 -
airflow-core/tests/unit/api_fastapi/conftest.py | 1 +
devel-common/src/tests_common/pytest_plugin.py | 17 +
.../src/tests_common/test_utils/mock_plugins.py | 6 +
providers/fab/docs/changelog.rst | 10 +
providers/fab/pyproject.toml | 7 +-
.../api_endpoints/role_and_permission_endpoint.py | 4 +-
.../auth_manager/api_endpoints/user_endpoint.py | 8 +-
.../fab/auth_manager/api_fastapi/routes/login.py | 11 +-
.../fab/auth_manager/cli_commands/user_command.py | 3 +-
.../fab/auth_manager/cli_commands/utils.py | 10 +-
.../providers/fab/auth_manager/fab_auth_manager.py | 26 +-
.../providers/fab/auth_manager/models/__init__.py | 301 +++++++++-------
.../providers/fab/auth_manager/models/db.py | 17 +-
.../fab/auth_manager/security_manager/override.py | 400 ++++++++++-----------
.../providers/fab/auth_manager/views/user.py | 16 +-
providers/fab/src/airflow/providers/fab/www/app.py | 7 +-
.../fab/www/extensions/init_appbuilder.py | 65 ++--
.../providers/fab/www/extensions/init_session.py | 4 +-
.../airflow/providers/fab/www/security_appless.py | 7 +-
.../airflow/providers/fab/www/security_manager.py | 18 +-
.../fab/src/airflow/providers/fab/www/session.py | 29 +-
.../fab/src/airflow/providers/fab/www/utils.py | 209 +----------
.../api/auth/backend/test_basic_auth.py | 1 +
.../auth_manager/api/auth/backend/test_session.py | 1 +
.../test_role_and_permission_endpoint.py | 53 ++-
.../api_endpoints/test_user_endpoint.py | 47 ++-
.../auth_manager/api_fastapi/routes/test_login.py | 3 +
.../api_fastapi/services/test_login.py | 3 +-
.../auth_manager/cli_commands/test_role_command.py | 2 +-
.../auth_manager/cli_commands/test_user_command.py | 2 +-
.../fab/auth_manager/cli_commands/test_utils.py | 3 +-
.../tests/unit/fab/auth_manager/models/test_db.py | 4 +-
.../schemas/test_role_and_permission_schema.py | 86 +++--
.../fab/auth_manager/schemas/test_user_schema.py | 25 +-
.../unit/fab/auth_manager/test_fab_auth_manager.py | 39 +-
.../tests/unit/fab/auth_manager/test_security.py | 32 +-
.../fab/auth_manager/views/test_permissions.py | 27 +-
.../unit/fab/auth_manager/views/test_roles_list.py | 21 +-
.../tests/unit/fab/auth_manager/views/test_user.py | 21 +-
.../unit/fab/auth_manager/views/test_user_edit.py | 21 +-
.../unit/fab/auth_manager/views/test_user_stats.py | 21 +-
.../fab/www/views/test_views_custom_user_views.py | 219 ++++++-----
providers/fab/www-hash.txt | 2 +-
.../common/auth_backend/test_google_openid.py | 21 +-
45 files changed, 857 insertions(+), 975 deletions(-)