This is an automated email from the ASF dual-hosted git repository.

potiuk pushed a change to branch backport-322-65787
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard 7d1812a5645 Show dag run duration in grid tooltip (#65787)
    omit fb24af4431f Adds the DAG run ID to the grid bar tooltip and also 
surfaces it in the task instance tooltip in the grid view. (#65626)
     add 82785c5953f [v3-2-test] Close Korean Translation Gaps(May 13) (#66873)
     add 67abffd79c3 [v3-2-test] Close German Translation Gaps 2026-05-12 
(#66830)
     add b5f0ec62092 [v3-2-test] Check sensitive key names before applying 
recursion-depth cutoff in secrets masker (#65912) (#66748)
     add d4217f4038f Fix OTel timer metrics using Gauge instead of Histogram 
(#64207) (#66865)
     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 35e0911526e Fix registry backfill with per-provider versions and 
Docker extraction (#65223) (#66927)
     add 49027e33e28 Show dag run duration in grid tooltip (#65787)

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   (7d1812a5645)
            \
             N -- N -- N   refs/heads/backport-322-65787 (49027e33e28)

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-backfill.yml            | 110 ++--
 .github/workflows/registry-build.yml               |  18 +-
 Dockerfile                                         |   2 +-
 Dockerfile.ci                                      |   2 +-
 airflow-core/newsfragments/64207.significant.rst   |   1 +
 airflow-core/src/airflow/models/taskinstance.py    |  22 +-
 .../airflow/ui/public/i18n/locales/de/common.json  |  10 +
 .../ui/public/i18n/locales/de/components.json      |   6 +-
 .../airflow/ui/public/i18n/locales/ko/admin.json   |   5 +-
 .../airflow/ui/public/i18n/locales/ko/common.json  |  78 ++-
 .../ui/public/i18n/locales/ko/components.json      |   7 +-
 .../src/airflow/ui/public/i18n/locales/ko/dag.json |  16 +-
 .../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 +-
 .../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 +-
 dev/breeze/doc/images/output_registry.svg          |   4 +-
 dev/breeze/doc/images/output_registry.txt          |   2 +-
 dev/breeze/doc/images/output_registry_backfill.svg |  56 +-
 dev/breeze/doc/images/output_registry_backfill.txt |   2 +-
 .../doc/images/output_registry_extract-data.svg    |  37 +-
 .../doc/images/output_registry_extract-data.txt    |   2 +-
 .../airflow_breeze/commands/registry_commands.py   | 178 +++++-
 .../commands/registry_commands_config.py           |   3 +
 .../commands/release_management_commands.py        |   2 +-
 dev/breeze/src/airflow_breeze/global_constants.py  |   2 +-
 dev/breeze/uv.lock                                 |  44 +-
 dev/registry/.gitignore                            |   1 +
 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 +
 .../observability/metrics/otel_logger.py           |  58 +-
 .../observability/metrics/test_otel_logger.py      |  47 +-
 .../secrets_masker/secrets_masker.py               |  18 +-
 .../tests/secrets_masker/test_secrets_masker.py    |  38 ++
 .../src/airflow/sdk/execution_time/task_runner.py  |  13 +-
 uv.lock                                            | 603 +++++++++++----------
 49 files changed, 1840 insertions(+), 546 deletions(-)
 create mode 100644 airflow-core/newsfragments/64207.significant.rst
 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
 create mode 100644 
airflow-core/src/airflow/ui/src/pages/Dag/Calendar/calendarUtils.test.ts

Reply via email to