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

kaxilnaik pushed a change to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


    from 4fb85274057 [v3-1-test] docs: Enhance triggering_asset_event retrieval 
documentation in DAGs (#52666) (#52674) (#56957)
     new c7d8d721dd9 Fix asset name text overflow in DAGs list view (#55914)
     new 5ab7ae61dc5 fix: Gracefully handle fastAPI plugins with empty 
url_prefix (#55262)
     new cefb383e448 Add back Deprecation warning for sla_miss_callback (#56127)
     new 5c45866b78e UI: Fix note modal does not change markdown text after 
change (#56092)
     new 1f0cd2f8acd Use welcome on dashboard instead of airflow (#56074)
     new 4e0ed37cb98 Fix a tiny Hebrew typo (#56168)
     new 082e3cfdf64 Add more comprehensive tests on DagCards (#55904)
     new 79200ed856a Disable Gantt view by default (#56242)
     new 7c62f118c8d fix(ui): modify calendar cell colors (#56161)
     new d23c445533d fix(i18n): Add translation keys and remove fallback 
(#56274)
     new 51399720895 Default checkPendingRuns to false (#56307)
     new 8a3cd09aefa fix: allow mapped tasks to accept zero-length inputs on 
rerun (#56162)
     new 49556d94142 include task instance id in log printed by supervisor 
(#56383)
     new 8217e8fccca Optimize grid structure query with DISTINCT for 
dag_version_id lookup (#56565)
     new 27ed4490968 Prevent unnecessary kubernetes client imports in workers 
(#56692)
     new 8598de5ffee Fix view for many DAG tags (#55604)
     new 7d2b1bdc34b Lazy import PodGenerator for deserialization  (#56733)
     new ae14c1cc330 Add PL translations 2025.10.18 (#56825)
     new ccc33ffd109 Fix topological sort for Grid View (#56963)
     new f9cb37b0eff Restore timtable active_runs_limit check (#56922)

The 20 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 airflow-core/src/airflow/api_fastapi/app.py        |   9 ++
 .../airflow/api_fastapi/core_api/routes/ui/grid.py |   1 +
 airflow-core/src/airflow/models/dagrun.py          |   7 +-
 .../airflow/serialization/definitions/taskgroup.py |   4 +
 .../airflow/serialization/serialized_objects.py    |  24 +++-
 .../ui/public/i18n/locales/ar/components.json      |   5 +
 .../ui/public/i18n/locales/ca/components.json      |   5 +
 .../ui/public/i18n/locales/de/components.json      |   5 +
 .../ui/public/i18n/locales/en/components.json      |   8 ++
 .../src/airflow/ui/public/i18n/locales/en/dag.json |   2 +
 .../ui/public/i18n/locales/es/components.json      |   5 +
 .../ui/public/i18n/locales/fr/components.json      |   5 +
 .../airflow/ui/public/i18n/locales/he/assets.json  |   2 +-
 .../ui/public/i18n/locales/he/components.json      |   5 +
 .../ui/public/i18n/locales/hi/components.json      |   5 +
 .../ui/public/i18n/locales/hu/components.json      |   5 +
 .../ui/public/i18n/locales/it/components.json      |   5 +
 .../ui/public/i18n/locales/ko/components.json      |   5 +
 .../ui/public/i18n/locales/nl/components.json      |   9 +-
 .../ui/public/i18n/locales/pl/components.json      |  12 ++
 .../airflow/ui/public/i18n/locales/pl/dags.json    |   3 +-
 .../airflow/ui/public/i18n/locales/pl/hitl.json    |   3 +
 .../ui/public/i18n/locales/pt/components.json      |   5 +
 .../ui/public/i18n/locales/tr/components.json      |   5 +
 .../ui/public/i18n/locales/zh-CN/components.json   |   5 +
 .../ui/public/i18n/locales/zh-TW/components.json   |   7 +-
 .../airflow/ui/public/i18n/locales/zh-TW/dag.json  |   6 +-
 .../src/airflow/ui/src/components/DagRunInfo.tsx   |   4 +-
 .../ui/src/components/EditableMarkdownArea.tsx     |  78 +++++++----
 .../airflow/ui/src/components/LimitedItemsList.tsx |  70 ++++++++--
 .../ui/src/layouts/Details/DetailsLayout.tsx       |   2 +-
 .../ui/src/pages/Dag/Calendar/CalendarCell.tsx     |  39 +++++-
 .../ui/src/pages/Dag/Calendar/CalendarLegend.tsx   |  33 ++++-
 .../ui/src/pages/Dag/Calendar/CalendarTooltip.tsx  |   5 +-
 .../ui/src/pages/Dag/Calendar/calendarUtils.ts     |  76 +++++++++--
 .../src/airflow/ui/src/pages/Dag/Calendar/types.ts |   8 +-
 .../ui/src/pages/DagsList/AssetSchedule.tsx        |   2 +-
 .../airflow/ui/src/pages/DagsList/DagCard.test.tsx | 151 +++++++++++++++++++--
 .../src/airflow/ui/src/pages/DagsList/DagCard.tsx  |  10 +-
 .../airflow/ui/src/pages/Dashboard/Dashboard.tsx   |   4 +-
 airflow-core/src/airflow/ui/src/utils/query.ts     |   2 +-
 airflow-core/tests/unit/api_fastapi/test_app.py    |  28 ++++
 airflow-core/tests/unit/models/test_dagrun.py      |  55 +++++++-
 .../unit/serialization/test_dag_serialization.py   |   5 +-
 .../unit/serialization/test_serialized_objects.py  |  28 ++++
 airflow-core/tests/unit/utils/test_task_group.py   |  34 ++---
 dev/i18n/check_translations_completeness.py        |  36 ++---
 .../secrets_masker/secrets_masker.py               |  19 ++-
 .../tests/secrets_masker/test_secrets_masker.py    |  41 ++++++
 task-sdk/src/airflow/sdk/bases/operator.py         |   2 +-
 task-sdk/src/airflow/sdk/definitions/dag.py        |  17 +++
 .../src/airflow/sdk/execution_time/supervisor.py   |   8 +-
 task-sdk/tests/task_sdk/definitions/test_dag.py    |  15 ++
 .../task_sdk/execution_time/test_supervisor.py     |   1 +
 54 files changed, 796 insertions(+), 139 deletions(-)

Reply via email to