This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/uv/dev/breeze/uv-dependency-updates-246a45b7d3
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 9c8a4099739 Bump the uv-dependency-updates group across 1 directory
with 2 updates
add eaa40bf6f76 Migrate FAB POST /users to FastAPI (#60523)
add 04a0b213008 CI: Upgrade important CI environment (#60561)
add 39e52f5c384 feat e2e tests to verify for tasks tab functionality
(#59943)
add 49d88a2c49d Filter out duplicates too while validating shared
distributions (#60574)
add 0e0fceb9b73 Add warning when Bundle path may not be accessible to
impersonated user (#60278)
add c58bdfca4b7 fix type error when date_time is str (#60414)
add 376a0246400 feat(api_fastapi): support OR operator in search
parameters (#60008)
add f9877a07cd2 Docs: Add security warning for Asset creation permissions
(#60564)
add e4351fa89d9 Fix/backfill permission error handling (#60582)
add 74d0c476224 Refactor db_cleanup.py to use SQLA2 (#60377)
add afdbb76957b Documentation update of cherry-pick details for users
(#60386)
add 565be341afb Cache user object fetched per request in FAB auth manager
for improved performance. (#60274)
add 5a3c4fc8cba Timezone selector button in Navbar (#60391)
add ab2fef75ccb fix: reset pagination on search in all pages (#60411)
add b77ec2cbbe1 feat: Add listener notification in API endpoint when
skipped (#60585)
add af4bf1d9152 fix: reset pagination on search in all pages (#60411)
add 98c9bc72e5d Fix incorrect compute param example in
SageMakerNotebookHook docstring (#60247)
add 908cd438169 Chart: fix securityContext.containers/ingress.apiServer in
values.schema.json (#60575)
add 78dee381419 Prevent OpenLineage failure when BigQuery table metadata
is missing (#60380)
add cfaeb04ca97 Chart: Add dag processor PodDisruptionBudget support
(#60294)
add 33089255c9a Mark pending-response PRs stale after 7 days (#60604)
add df66f28522e CI: Upgrade important CI environment (#60603)
add 4ba37f48cd4 docs:clarify relationship between Context and template
context (#60566)
add faf847c59d0 Add support for async callables in ``PythonOperator``
(#60268)
add 3cc101d4173 Add team selector in variable form (#60474)
add 2de609e11d1 Update release command and guide (#60508)
add e70963e7a4e Simplify metric names construction in BaseExecutor
emit_metrics (#60357)
add 4dbe9b207c3 Add workers.celery.kerberosInitContainer field (#60427)
add fb664dc7128 Docs: Improve wording in Helm chart introduction (#60595)
add 720c041a8ba CI: Upgrade important CI environment (#60613)
add 3e2a2a4d61c Bump the uv-dependency-updates group across 1 directory
with 2 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 (9c8a4099739)
\
N -- N -- N
refs/heads/dependabot/uv/dev/breeze/uv-dependency-updates-246a45b7d3
(3e2a2a4d61c)
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/actions/breeze/action.yml | 2 +-
.github/actions/install-prek/action.yml | 2 +-
.github/workflows/basic-tests.yml | 2 +-
.github/workflows/release_dockerhub_image.yml | 2 +-
.github/workflows/stale.yml | 20 +-
.pre-commit-config.yaml | 7 +-
Dockerfile | 2 +-
Dockerfile.ci | 4 +-
.../administration-and-deployment/dag-bundles.rst | 17 ++
.../administration-and-deployment/listeners.rst | 8 +
.../docs/authoring-and-scheduling/assets.rst | 7 +-
airflow-core/docs/best-practices.rst | 2 +-
airflow-core/docs/templates-ref.rst | 4 +
airflow-core/newsfragments/60268.improvement.rst | 1 +
.../api_fastapi/auth/middlewares/refresh_token.py | 13 +-
.../src/airflow/api_fastapi/common/parameters.py | 8 +
.../api_fastapi/core_api/openapi/_private_ui.yaml | 24 ++-
.../core_api/openapi/v2-rest-api-generated.yaml | 222 ++++++++++++-------
.../core_api/services/public/task_instances.py | 2 +
.../airflow/example_dags/plugins/event_listener.py | 46 +++-
.../src/airflow/executors/base_executor.py | 26 +--
.../src/airflow/jobs/triggerer_job_runner.py | 4 +-
.../airflow/serialization/serialized_objects.py | 7 +-
.../ui/openapi-gen/queries/ensureQueryData.ts | 80 +++----
.../src/airflow/ui/openapi-gen/queries/prefetch.ts | 80 +++----
.../src/airflow/ui/openapi-gen/queries/queries.ts | 82 ++++----
.../src/airflow/ui/openapi-gen/queries/suspense.ts | 80 +++----
.../ui/openapi-gen/requests/services.gen.ts | 82 ++++----
.../airflow/ui/openapi-gen/requests/types.gen.ts | 82 ++++----
.../ui/public/i18n/locales/en/components.json | 1 +
.../src/components/DagActions/RunBackfillForm.tsx | 23 +-
.../src/airflow/ui/src/layouts/Nav/Nav.tsx | 18 +-
.../ui/src/layouts/Nav/TimezoneMenuItem.tsx | 58 -----
.../ui/src/layouts/Nav/UserSettingsButton.tsx | 5 -
.../airflow/ui/src/pages/AssetsList/AssetsList.tsx | 11 +-
.../ui/src/pages/Connections/Connections.tsx | 11 +-
.../pages/Dag/Tasks/TaskFilters/TaskFilters.tsx | 6 +-
.../src/airflow/ui/src/pages/DagsList/DagsList.tsx | 17 +-
.../src/airflow/ui/src/pages/Pools/Pools.tsx | 9 +-
.../ui/src/pages/TaskInstance/AssetEvents.tsx | 12 +-
.../Variables/ManageVariable/AddVariableButton.tsx | 1 +
.../ManageVariable/EditVariableButton.tsx | 1 +
.../Variables/ManageVariable/VariableForm.tsx | 6 +
.../airflow/ui/src/pages/Variables/Variables.tsx | 11 +-
.../src/airflow/ui/src/queries/useAddVariable.ts | 1 +
.../src/airflow/ui/src/utils/datetimeUtils.ts | 8 +
.../src/airflow/ui/tests/e2e/pages/DagsPage.ts | 78 ++++++-
.../airflow/ui/tests/e2e/specs/dag-tasks.spec.ts | 169 +++++++++++++++
airflow-core/src/airflow/utils/db_cleanup.py | 34 +--
.../unit/api_fastapi/common/test_parameters.py | 28 ++-
.../core_api/routes/public/test_dags.py | 1 +
.../core_api/routes/public/test_task_instances.py | 61 +++---
.../tests/unit/executors/test_base_executor.py | 31 +++
.../tests/unit/listeners/class_listener.py | 4 +
.../unit/serialization/test_serialized_objects.py | 35 +++
chart/.pre-commit-config.yaml | 2 +-
chart/docs/index.rst | 2 +-
chart/newsfragments/60242.improvement.rst | 1 +
chart/templates/NOTES.txt | 8 +
...yaml => dag-processor-poddisruptionbudget.yaml} | 23 +-
chart/templates/workers/worker-deployment.yaml | 6 +-
chart/values.schema.json | 234 ++++++++++++++++++++-
chart/values.yaml | 30 +++
contributing-docs/05_pull_requests.rst | 24 ++-
dev/README_RELEASE_AIRFLOW.md | 32 +--
dev/breeze/doc/ci/02_images.md | 2 +-
.../commands/release_candidate_command.py | 22 +-
.../src/airflow_breeze/commands/release_command.py | 3 +
.../commands/release_management_commands.py | 2 +-
dev/breeze/src/airflow_breeze/global_constants.py | 2 +-
dev/breeze/tests/test_release_candidate_command.py | 7 +-
dev/breeze/uv.lock | 78 +++----
devel-common/pyproject.toml | 3 +-
docs/spelling_wordlist.txt | 1 +
go-sdk/.pre-commit-config.yaml | 2 +-
.../tests/helm_tests/airflow_core/test_worker.py | 61 ++++++
.../amazon/aws/hooks/sagemaker_unified_studio.py | 9 +-
.../aws/operators/sagemaker_unified_studio.py | 5 +-
.../providers/common/compat/standard/operators.py | 56 +++++
.../providers/common/compat/version_compat.py | 2 +
providers/fab/docs/index.rst | 1 +
providers/fab/provider.yaml | 8 +
providers/fab/pyproject.toml | 1 +
.../auth_manager/api_fastapi/datamodels/roles.py | 6 +
.../auth_manager/api_fastapi/datamodels/users.py | 46 ++--
.../openapi/v2-fab-auth-manager-generated.yaml | 170 +++++++++++++++
.../fab/auth_manager/api_fastapi/routes/users.py | 47 +++++
.../fab/auth_manager/api_fastapi/services/users.py | 91 ++++++++
.../providers/fab/auth_manager/fab_auth_manager.py | 15 +-
.../src/airflow/providers/fab/get_provider_info.py | 7 +
.../api_fastapi/datamodels/test_users.py | 145 +++++++++++++
.../auth_manager/api_fastapi/routes/test_users.py | 173 +++++++++++++++
.../api_fastapi/services/test_users.py | 206 ++++++++++++++++++
.../unit/fab/auth_manager/test_fab_auth_manager.py | 19 +-
.../providers/google/cloud/operators/bigquery.py | 3 +
.../unit/google/cloud/operators/test_bigquery.py | 18 ++
providers/standard/docs/operators/python.rst | 31 +++
providers/standard/pyproject.toml | 2 +-
.../example_dags/example_python_decorator.py | 17 ++
.../example_dags/example_python_operator.py | 18 ++
.../airflow/providers/standard/operators/python.py | 65 +++++-
.../tests/unit/standard/decorators/test_python.py | 36 +++-
.../tests/unit/standard/operators/test_python.py | 25 ++-
pyproject.toml | 3 +-
scripts/ci/prek/chart_schema.py | 4 +
scripts/ci/prek/check_imports_in_providers.py | 2 +-
.../ci/prek/check_shared_distributions_usage.py | 49 +++++
scripts/ci/prek/ruff_format.py | 2 +-
scripts/tools/setup_breeze | 2 +-
task-sdk/docs/api.rst | 11 +-
task-sdk/docs/index.rst | 1 +
task-sdk/src/airflow/sdk/__init__.py | 10 +-
task-sdk/src/airflow/sdk/__init__.pyi | 2 +
task-sdk/src/airflow/sdk/bases/decorator.py | 49 ++++-
task-sdk/src/airflow/sdk/bases/operator.py | 55 ++++-
.../sdk/definitions/_internal/abstractoperator.py | 4 +
.../airflow/sdk/execution_time/callback_runner.py | 67 +++++-
task-sdk/src/airflow/sdk/execution_time/comms.py | 72 +++++--
.../src/airflow/sdk/execution_time/task_runner.py | 37 ++++
task-sdk/tests/task_sdk/bases/test_decorator.py | 144 ++++++++++++-
.../task_sdk/execution_time/test_task_runner.py | 50 +++++
121 files changed, 3200 insertions(+), 689 deletions(-)
create mode 100644 airflow-core/newsfragments/60268.improvement.rst
delete mode 100644
airflow-core/src/airflow/ui/src/layouts/Nav/TimezoneMenuItem.tsx
create mode 100644
airflow-core/src/airflow/ui/tests/e2e/specs/dag-tasks.spec.ts
create mode 100644 chart/newsfragments/60242.improvement.rst
copy chart/templates/dag-processor/{dag-processor-serviceaccount.yaml =>
dag-processor-poddisruptionbudget.yaml} (74%)
copy airflow-core/src/airflow/api_fastapi/execution_api/datamodels/dagrun.py
=>
providers/fab/src/airflow/providers/fab/auth_manager/api_fastapi/datamodels/users.py
(52%)
create mode 100644
providers/fab/src/airflow/providers/fab/auth_manager/api_fastapi/routes/users.py
create mode 100644
providers/fab/src/airflow/providers/fab/auth_manager/api_fastapi/services/users.py
create mode 100644
providers/fab/tests/unit/fab/auth_manager/api_fastapi/datamodels/test_users.py
create mode 100644
providers/fab/tests/unit/fab/auth_manager/api_fastapi/routes/test_users.py
create mode 100644
providers/fab/tests/unit/fab/auth_manager/api_fastapi/services/test_users.py