This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/pip/v2-11-test/pip-dependency-updates-2d1b79e300
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 45c157a822c Bump the pip-dependency-updates group across 2 directories
with 8 updates
add c439a217881 Fix recursion depth error in
_redact_exception_with_context (#61797)
add b99b8cdfbf9 Run fab provider tests in v2-11-test (#61633)
add 2c130fc3c9a Free up disk space for image build (#61845)
add d5fbdd6caff Fix stuck queued tasks by calling executor fail method and
invoking failure callbacks (#53038)
add db12fd19f8e Bump the pip-dependency-updates group across 2 directories
with 8 updates
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 (45c157a822c)
\
N -- N -- N
refs/heads/dependabot/pip/v2-11-test/pip-dependency-updates-2d1b79e300
(db12fd19f8e)
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/workflows/ci-image-build.yml | 4 +-
.github/workflows/ci.yml | 41 ++-
.github/workflows/helm-tests.yml | 2 +-
.github/workflows/prod-image-build.yml | 2 -
.github/workflows/push-image-cache.yml | 2 -
.github/workflows/release_dockerhub_image.yml | 5 +-
.github/workflows/special-tests.yml | 24 --
.github/workflows/test-provider-packages.yml | 7 +-
.pre-commit-config.yaml | 2 +-
Dockerfile.ci | 2 +-
airflow/api_connexion/security.py | 5 +-
airflow/jobs/scheduler_job_runner.py | 36 ++-
.../common/compat/openlineage/utils/utils.py | 50 +--
airflow/providers/fab/README.rst | 87 +++++
.../fab/auth_manager/cli_commands/db_command.py | 17 +-
.../fab/auth_manager/cli_commands/utils.py | 2 +-
.../providers/fab/auth_manager/fab_auth_manager.py | 6 +-
airflow/providers/fab/auth_manager/models/db.py | 13 +-
.../fab/auth_manager/security_manager/override.py | 11 +-
airflow/providers/fab/provider.yaml | 2 +-
airflow/settings.py | 4 +
airflow/utils/log/secrets_masker.py | 42 ++-
airflow/www/app.py | 2 +-
airflow/www/extensions/init_session.py | 56 +++-
.../airflow_breeze/commands/ci_image_commands.py | 1 +
.../prepare_providers/provider_documentation.py | 7 -
.../src/airflow_breeze/utils/selective_checks.py | 73 ++---
dev/breeze/tests/test_packages.py | 6 +-
dev/breeze/tests/test_selective_checks.py | 56 ++--
dev/refresh_images.sh | 3 +-
.../auth-manager/webserver-authentication.rst | 2 +-
docs/apache-airflow-providers-fab/changelog.rst | 3 +-
docs/apache-airflow-providers-fab/commits.rst | 70 +++-
docs/apache-airflow-providers-fab/index.rst | 52 ++-
generated/provider_dependencies.json | 2 +-
hatch_build.py | 3 +-
scripts/ci/constraints/ci_branch_constraints.sh | 15 +-
scripts/ci/pre_commit/check_system_tests.py | 6 +-
scripts/ci/pre_commit/mypy_folder.py | 16 +-
scripts/docker/entrypoint_ci.sh | 2 +-
.../in_container/install_airflow_and_providers.py | 5 +-
.../{run_mypy.sh => run_mypy_providers.sh} | 2 +-
scripts/in_container/verify_providers.py | 2 +-
tests/conftest.py | 13 +-
tests/jobs/test_scheduler_job.py | 18 +-
.../api/auth/backend/test_kerberos_auth.py | 2 +-
.../auth_manager/api/auth/backend/test_session.py | 2 +-
.../api_endpoints/api_connexion_utils.py | 2 +-
.../api_endpoints/test_asset_endpoint.py | 327 -------------------
.../fab/auth_manager/api_endpoints/test_auth.py | 11 +-
.../fab/auth_manager/api_endpoints/test_cors.py | 7 +-
.../api_endpoints/test_dag_endpoint.py | 8 +-
.../api_endpoints/test_dag_source_endpoint.py | 6 +-
.../api_endpoints/test_dag_warning_endpoint.py | 6 +-
.../api_endpoints/test_event_log_endpoint.py | 6 +-
.../api_endpoints/test_import_error_endpoint.py | 8 +-
.../test_role_and_permission_endpoint.py | 12 +-
.../api_endpoints/test_task_instance_endpoint.py | 14 +-
.../api_endpoints/test_user_endpoint.py | 16 +-
.../api_endpoints/test_variable_endpoint.py | 6 +-
.../api_endpoints/test_xcom_endpoint.py | 6 +-
.../auth_manager/cli_commands/test_db_command.py | 3 +-
.../auth_manager/cli_commands/test_definition.py | 2 +-
.../auth_manager/cli_commands/test_role_command.py | 4 +-
.../cli_commands/test_sync_perm_command.py | 2 +-
.../auth_manager/cli_commands/test_user_command.py | 2 +-
.../fab/auth_manager/cli_commands/test_utils.py | 4 +-
tests/providers/fab/auth_manager/conftest.py | 3 +-
.../fab/auth_manager/decorators/test_auth.py | 2 +-
.../fab/auth_manager/models/test_anonymous_user.py | 2 +-
tests/providers/fab/auth_manager/models/test_db.py | 3 +-
.../schemas/test_role_and_permission_schema.py | 2 +-
.../fab/auth_manager/schemas/test_user_schema.py | 4 +-
.../security_manager/test_constants.py | 2 +-
.../auth_manager/security_manager/test_override.py | 2 +-
.../fab/auth_manager/test_fab_auth_manager.py | 2 +-
tests/providers/fab/auth_manager/test_models.py | 3 +-
tests/providers/fab/auth_manager/test_security.py | 25 +-
.../fab/auth_manager/views/test_permissions.py | 8 +-
.../fab/auth_manager/views/test_roles_list.py | 8 +-
.../providers/fab/auth_manager/views/test_user.py | 8 +-
.../fab/auth_manager/views/test_user_edit.py | 8 +-
.../fab/auth_manager/views/test_user_stats.py | 8 +-
tests/providers/openlineage/plugins/test_utils.py | 2 +-
tests/test_utils/compat.py | 1 +
tests/test_utils/www.py | 4 +-
tests/utils/log/test_secrets_masker.py | 358 ++++++++++++++++++++-
tests/www/views/conftest.py | 2 +-
tests/www/views/test_session.py | 13 +-
tests/www/views/test_views.py | 3 +-
tests/www/views/test_views_acl.py | 10 +-
tests/www/views/test_views_base.py | 1 +
tests/www/views/test_views_custom_user_views.py | 2 +-
tests/www/views/test_views_rendered.py | 86 +++--
94 files changed, 1047 insertions(+), 762 deletions(-)
create mode 100644 airflow/providers/fab/README.rst
copy scripts/in_container/{run_mypy.sh => run_mypy_providers.sh} (94%)
delete mode 100644
tests/providers/fab/auth_manager/api_endpoints/test_asset_endpoint.py