This is an automated email from the ASF dual-hosted git repository.
vatsrahul1001 pushed a change to branch backport-76eb2a0-v3-2-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
from fdb53c3bbd8 [v3-2-test] Fix max_active_runs lost during DAG
serialisation when value equals schema default (#65310)
add 06cdb3782c7 fix(scheduler): ignore stale executor success after defer
reschedule (#66431) (#67089)
add 187a3a2af7c [v3-2-test] Mark Dags stale when their bundle is removed
from config (#66948) (#66985)
add bd1769af72b [v3-2-test] Replace deprecated typer-slim with typer in
devel-common (#67034) (#67037)
add 6db94023569 [v3-2-test] k8s tests: wait for push task in executor
before killing scheduler (#67067) (#67068)
add f7bb447214b UI: Preserve proxied URL on login redirect (#66690)
(#67091)
add 5e610b3f610 fix serialize_template_field handling callable value in
dict (#63871) (#67092)
add ece82775675 [v3-2-test] Improve DB performance of datetime range
filters filters in API queries (#66696) (#67102)
add fc4a38e9bb3 Merge branch 'v3-2-test' into backport-76eb2a0-v3-2-test
No new revisions were added by this update.
Summary of changes:
airflow-core/newsfragments/63871.bugfix.rst | 1 +
.../src/airflow/api_fastapi/common/parameters.py | 56 +-
airflow-core/src/airflow/dag_processing/manager.py | 16 +-
.../src/airflow/jobs/scheduler_job_runner.py | 17 +-
airflow-core/src/airflow/serialization/helpers.py | 123 +++--
airflow-core/src/airflow/ui/src/main.tsx | 4 +-
.../src/airflow/ui/src/utils/links.test.ts | 52 +-
airflow-core/src/airflow/ui/src/utils/links.ts | 7 +
.../unit/api_fastapi/common/test_parameters.py | 62 +++
.../tests/unit/dag_processing/test_manager.py | 40 ++
.../tests/unit/dags/test_dag_decorator_version.py | 63 +++
airflow-core/tests/unit/jobs/test_scheduler_job.py | 57 ++
.../tests/unit/models/test_renderedtifields.py | 4 +-
.../unit/serialization/test_dag_serialization.py | 39 ++
.../tests/unit/serialization/test_helpers.py | 606 +++++++++++++++++++++
devel-common/pyproject.toml | 2 +-
.../tests/kubernetes_tests/test_base.py | 26 +
.../tests/kubernetes_tests/test_other_executors.py | 23 +-
.../src/airflow/sdk/execution_time/task_runner.py | 134 ++---
.../task_sdk/execution_time/test_task_runner.py | 13 +-
uv.lock | 16 +-
21 files changed, 1198 insertions(+), 163 deletions(-)
create mode 100644 airflow-core/newsfragments/63871.bugfix.rst
create mode 100644 airflow-core/tests/unit/dags/test_dag_decorator_version.py