This is an automated email from the ASF dual-hosted git repository.
ash pushed a change to branch generate-task-jwt-tokens
in repository https://gitbox.apache.org/repos/asf/airflow.git
omit ef6c93b78a3 fixup! Add JWT validation and generation machinery for the
Task Execution API to use
omit 1f51dcce959 Add compat for Airflow 2.10 for Edge Provider
omit ee18cd80e35 Add JWT validation and generation machinery for the Task
Execution API to use
add 720f4a35664 Fix asset imports for Type Checkers (#47686)
add 1e704526742 Fix `sync-perm` CLI command (#47626)
add 8da459e6a37 Add Dag Details tab and add Dag Version to all details
tabs (#47649)
add e1f9151b1d3 Make LocalExecutor work under heavy load (#47678)
add ec39ba48106 Remove auth backends from core Airflow (#47399)
add 0495aa82d8c Lower integration and system test timeouts (#47694)
add 2ff19a5438b Implement backfill banner (#47411)
add 839e6fb1b1b Lower bind xmlsec dependency version (#47696)
add daf79ae0bf3 Add JWT validation and generation machinery for the Task
Execution API to use
add dc95ed16887 Add compat for Airflow 2.10 for Edge Provider
add bf14b9b0a05 fixup! Add JWT validation and generation machinery for the
Task Execution API to use
add ec12ff645ab fixup! Add JWT validation and generation machinery for the
Task Execution API to use
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 (ef6c93b78a3)
\
N -- N -- N refs/heads/generate-task-jwt-tokens (ec12ff645ab)
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/integration-system-tests.yml | 6 +-
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 +--
.../api_fastapi/auth/managers/base_auth_manager.py | 4 +-
airflow/api_fastapi/core_api/security.py | 6 +-
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 | 35 +-----
airflow/executors/local_executor.py | 5 -
airflow/jobs/scheduler_job_runner.py | 14 ++-
airflow/providers_manager.py | 22 ----
.../ui/src/components/Banner/BackfillBanner.tsx | 111 +++++++++++++++++
.../src/components/{Clear/Run => Banner}/index.tsx | 2 +-
airflow/ui/src/components/DagVersionDetails.tsx | 63 ++++++++++
airflow/ui/src/layouts/Details/DetailsLayout.tsx | 2 +
airflow/ui/src/pages/Dag/Dag.tsx | 3 +-
airflow/ui/src/pages/Dag/Details.tsx | 138 +++++++++++++++++++++
airflow/ui/src/pages/Run/Details.tsx | 13 +-
airflow/ui/src/pages/TaskInstance/Details.tsx | 7 ++
airflow/ui/src/queries/useCreateBackfill.ts | 8 +-
airflow/ui/src/router.tsx | 6 +-
.../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 ----
generated/provider_dependencies.json | 2 +-
kubernetes_tests/test_base.py | 2 +
newsfragments/47399.significant.rst | 20 +++
providers/amazon/README.rst | 2 +-
providers/amazon/pyproject.toml | 2 +-
.../airflow/providers/amazon/get_provider_info.py | 2 +-
providers/fab/provider.yaml | 7 ++
.../fab/auth_manager/security_manager/override.py | 2 +
.../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 -
task-sdk/src/airflow/sdk/__init__.py | 4 +-
.../src/airflow/sdk/execution_time/supervisor.py | 4 +-
tests/always/test_providers_manager.py | 5 -
.../auth/managers/test_base_auth_manager.py | 13 +-
tests/api_fastapi/auth/test_tokens.py | 2 +-
tests/api_fastapi/conftest.py | 2 +-
tests/api_fastapi/core_api/test_security.py | 25 ++--
tests/core/test_configuration.py | 25 ----
61 files changed, 469 insertions(+), 442 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
create mode 100644 airflow/ui/src/components/Banner/BackfillBanner.tsx
copy airflow/ui/src/components/{Clear/Run => Banner}/index.tsx (92%)
create mode 100644 airflow/ui/src/components/DagVersionDetails.tsx
create mode 100644 airflow/ui/src/pages/Dag/Details.tsx
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