This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/pip/airflow-core/v3-2-test/pip-dependency-updates-1a800ef2ca
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard c8681d95027 Bump the pip-dependency-updates group across 3 directories
with 2 updates
add 589e64710ea [v3-2-test] Fix external DB manager upgrades with existing
tables (#66674) (#66882)
add 868b696f115 [v3-2-test] Fix memory leak in LocalExecutor caused by
unreleased file descriptor locks (#65121) (#66887)
add a70a9feb135 Filter unreleased phantom versions from registry build
(#65984) (#66902)
add cbb9e5108fd [v3-2-test] Improve Post-Task logs to show exception in
failure (#66735) (#66920)
add ae83f9bf264 UI: Fix "Mark state as..." buttons grayed out when
task/DAGRun already in target state (#66198) (#66919)
add 727f12c4d0c Fix millisecond floating point duration bug (#66560)
(#66915)
add 990ad8e9e1c [v3-2-test] UI: Change queued Dag runs color to grey in
Calendar (#66623) (#66870)
add 485bbfdbfad Adds the DAG run ID to the grid bar tooltip and also
surfaces it in the task instance tooltip in the grid view. (#65626) (#66871)
add 28fb4acd378 Fix DagVersion when clearing tasks with run on latest
version (#65835) (#66901)
add f3bacfe37ef [v3-2-test] CI: Upgrade important CI environment (#66903)
add 608fee4cf77 Bump the pip-dependency-updates group across 3 directories
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 (c8681d95027)
\
N -- N -- N
refs/heads/dependabot/pip/airflow-core/v3-2-test/pip-dependency-updates-1a800ef2ca
(608fee4cf77)
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/registry-build.yml | 18 +-
Dockerfile | 2 +-
Dockerfile.ci | 2 +-
airflow-core/src/airflow/models/taskinstance.py | 22 +-
.../TaskInstance/ClearGroupTaskInstanceDialog.tsx | 34 +-
.../Clear/TaskInstance/ClearTaskInstanceDialog.tsx | 38 +-
.../Clear/TaskInstance/runOnLatestVersion.test.ts | 156 ++++++
.../Clear/TaskInstance/runOnLatestVersion.ts | 60 ++
.../src/components/MarkAs/Run/MarkRunAsButton.tsx | 14 +-
.../TaskInstance/MarkTaskInstanceAsButton.tsx | 14 +-
.../ui/src/components/TaskInstanceTooltip.test.tsx | 21 +
.../ui/src/components/TaskInstanceTooltip.tsx | 7 +-
.../Details/Grid/GridButton.test.tsx} | 37 +-
.../ui/src/layouts/Details/Grid/GridButton.tsx | 2 +
.../airflow/ui/src/layouts/Details/Grid/GridTI.tsx | 7 +-
.../src/pages/Dag/Calendar/calendarUtils.test.ts | 186 +++++++
.../ui/src/pages/Dag/Calendar/calendarUtils.ts | 37 +-
.../src/airflow/ui/src/utils/datetimeUtils.test.ts | 24 +-
.../src/airflow/ui/src/utils/datetimeUtils.ts | 25 +-
airflow-core/src/airflow/utils/db_manager.py | 42 +-
airflow-core/tests/unit/models/test_cleartasks.py | 48 ++
airflow-core/tests/unit/utils/test_db_manager.py | 50 +-
dev/breeze/doc/ci/02_images.md | 2 +-
.../doc/images/output_registry_extract-data.svg | 37 +-
.../doc/images/output_registry_extract-data.txt | 2 +-
.../airflow_breeze/commands/registry_commands.py | 19 +-
.../commands/registry_commands_config.py | 1 +
.../commands/release_management_commands.py | 2 +-
dev/breeze/src/airflow_breeze/global_constants.py | 2 +-
dev/breeze/uv.lock | 44 +-
dev/registry/extract_metadata.py | 109 +++-
dev/registry/tests/test_extract_metadata.py | 144 +++++
pyproject.toml | 2 +-
scripts/tools/setup_breeze | 2 +-
.../src/airflow_shared/logging/structlog.py | 12 +
.../src/airflow/sdk/execution_time/task_runner.py | 13 +-
uv.lock | 603 +++++++++++----------
37 files changed, 1419 insertions(+), 421 deletions(-)
create mode 100644
airflow-core/src/airflow/ui/src/components/Clear/TaskInstance/runOnLatestVersion.test.ts
create mode 100644
airflow-core/src/airflow/ui/src/components/Clear/TaskInstance/runOnLatestVersion.ts
copy
airflow-core/src/airflow/ui/src/{pages/Connections/NothingFoundInfo.test.tsx =>
layouts/Details/Grid/GridButton.test.tsx} (52%)
create mode 100644
airflow-core/src/airflow/ui/src/pages/Dag/Calendar/calendarUtils.test.ts