This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a change to branch seed-ci-image-cache-from-stashed-image
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 58b4fad0e37 Speed up docs publishes by reusing the previously built CI
image
add 78b88db5aba Regenerate UI client and fix deadline alerts with no fixed
interval (#70637)
add 443b9199cb8 Review and update constraint dependencies (#70652)
add e272ae7f977 Fix #60763: Deactivate legacy DAGs with NULL bundle_name
during upgrade from 2.x to 3.x (#61019)
add ea7f1cfbee7 Copy 2.11.2 release notes to main (#70648)
add 9e5b7701f8d Fix asset event scheduling race condition and consistency
(#62501)
add 52698133a53 Speed up docs publishes by reusing the previously built CI
image
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 (58b4fad0e37)
\
N -- N -- N refs/heads/seed-ci-image-cache-from-stashed-image
(52698133a53)
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:
RELEASE_NOTES.rst | 27 ++
airflow-core/newsfragments/62501.bugfix.rst | 1 +
airflow-core/pyproject.toml | 2 +-
airflow-core/src/airflow/assets/manager.py | 107 ++++--
airflow-core/src/airflow/dag_processing/manager.py | 12 +-
.../src/airflow/jobs/scheduler_job_runner.py | 80 +++--
.../ui/openapi-gen/queries/ensureQueryData.ts | 2 +-
.../src/airflow/ui/openapi-gen/queries/prefetch.ts | 2 +-
.../src/airflow/ui/openapi-gen/queries/queries.ts | 2 +-
.../src/airflow/ui/openapi-gen/queries/suspense.ts | 2 +-
.../airflow/ui/openapi-gen/requests/schemas.gen.ts | 13 +-
.../ui/openapi-gen/requests/services.gen.ts | 2 +-
.../airflow/ui/openapi-gen/requests/types.gen.ts | 6 +-
.../src/airflow/ui/public/i18n/locales/en/dag.json | 1 +
.../ui/src/pages/Dag/DeadlineAlertsBadge.test.tsx | 89 +++++
.../ui/src/pages/Dag/DeadlineAlertsBadge.tsx | 13 +-
.../ui/src/pages/Dag/Overview/DeadlineRow.tsx | 20 +-
.../airflow/ui/src/pages/Run/DeadlineStatus.tsx | 23 +-
.../ui/src/pages/Run/DeadlineStatusModal.tsx | 16 +-
.../src/airflow/ui/src/utils/datetimeUtils.test.ts | 17 +
.../src/airflow/ui/src/utils/datetimeUtils.ts | 7 +
.../src/airflow/ui/src/utils/deadlines.test.ts | 52 +++
airflow-core/src/airflow/ui/src/utils/deadlines.ts | 44 +++
airflow-core/tests/unit/assets/test_manager.py | 20 +-
.../tests/unit/dag_processing/test_manager.py | 42 ++-
airflow-core/tests/unit/jobs/test_scheduler_job.py | 220 +++++++++++-
.../tests/unit/models/test_taskinstance.py | 33 ++
providers/databricks/README.rst | 2 +-
providers/databricks/docs/index.rst | 2 +-
providers/databricks/pyproject.toml | 2 +-
reproducible_build.yaml | 4 +-
scripts/in_container/run_generate_constraints.py | 18 +-
uv.lock | 378 +++++++++++----------
33 files changed, 930 insertions(+), 331 deletions(-)
create mode 100644 airflow-core/newsfragments/62501.bugfix.rst
create mode 100644
airflow-core/src/airflow/ui/src/pages/Dag/DeadlineAlertsBadge.test.tsx
create mode 100644 airflow-core/src/airflow/ui/src/utils/deadlines.test.ts
create mode 100644 airflow-core/src/airflow/ui/src/utils/deadlines.ts