This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/airflow-core/src/airflow/ui/v3-1-test/core-ui-package-updates-37da4156bc
in repository https://gitbox.apache.org/repos/asf/airflow.git
omit 1e6043cbe00 chore(deps): bump the core-ui-package-updates group across
1 directory with 64 updates
add 71640221256 [v3-1-test] SQL not rendered in Rendered Templates view
(#60739) (#62348)
add 17910dd1729 Fix XCom migration failing for NaN/Infinity float values
(#62686) (#62760)
add f03e8297cc5 [v3-1-test] Pull the sphinx-airflow-theme wheel from
airflow.apache.org (#62710) (#62713)
add c00185cecef Refactor DataTable to handle internal scrolling and fix
overflow on narrow viewports (#62603)
add 90db2d0df2e [v3-1-test] Expose literal and ParamsDict at SDK top level
(#59782) (#62756)
add 0c68a70f08e Fix timer.duration unit labels in logs (#61824) (#62757)
add 217110aa2a3 Fix typo in PL translation (#62031) (#62761)
add b20bd350302 remove mp_start_method remnants (#61150) (#62762)
add fd081ba4943 Fix Trigger UI form rendering for null enum values
(#62060) (#62767)
add c2a22bfb0b9 [V3-1-test] Fix broken `dag_processing.total_parse_time`
metric (#62128) (#62764)
add c756860e12d [v3-1-test] [main] Upgrade important CI environment
(#62770) (#62778)
add 546e9a09e18 UI variables page: added option to view text as multi
lines (#61679) (#62779)
add 73f331dcbd2 [v3-1-test]Fix: Restore task_instance_history sequence
on downgrade (#62759)
add 88f136fe903 fix(ui): use ISO dates in Gantt chart for cross-browser
consistency (#61250) (#62784)
add a971541b05f Variable table handle long words break when values are
expanded (#62416) (#62781)
add 5961995454b Override tar dependency in Simple auth manager (#62787)
add 18da5026c9b chore(deps): bump the core-ui-package-updates group across
1 directory with 64 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 (1e6043cbe00)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/ui/v3-1-test/core-ui-package-updates-37da4156bc
(18da5026c9b)
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:
airflow-core/docs/img/airflow_erd.sha256 | 2 +-
airflow-core/docs/img/airflow_erd.svg | 110 +-
.../src/airflow/config_templates/config.yml | 12 -
airflow-core/src/airflow/configuration.py | 2 -
airflow-core/src/airflow/dag_processing/manager.py | 102 +-
.../example_dags/example_params_ui_tutorial.py | 5 +-
.../src/airflow/jobs/scheduler_job_runner.py | 4 +-
airflow-core/src/airflow/metrics/otel_logger.py | 2 +-
...49_3_0_0_remove_pickled_data_from_xcom_table.py | 47 +-
.../0060_3_0_0_add_try_id_to_ti_and_tih.py | 25 +
airflow-core/src/airflow/plugins_manager.py | 2 +-
airflow-core/src/airflow/serialization/serde.py | 2 +-
airflow-core/src/airflow/typing_compat.py | 5 +-
airflow-core/src/airflow/ui/package.json | 7 +-
airflow-core/src/airflow/ui/pnpm-lock.yaml | 1464 ++++++++++----------
.../airflow/ui/public/i18n/locales/pl/common.json | 2 +-
.../ui/src/components/DataTable/DataTable.tsx | 30 +-
.../components/FlexibleForm/FieldDropdown.test.tsx | 189 +++
.../src/components/FlexibleForm/FieldDropdown.tsx | 49 +-
.../components/FlexibleForm/FieldMultiSelect.tsx | 10 +-
.../airflow/ui/src/layouts/Details/Gantt/Gantt.tsx | 18 +-
.../airflow/ui/src/pages/AssetsList/AssetsList.tsx | 26 +-
.../ui/src/pages/Connections/Connections.tsx | 28 +-
.../src/airflow/ui/src/pages/DagsList/DagsList.tsx | 2 +-
.../airflow/ui/src/pages/Variables/Variables.tsx | 67 +-
.../src/airflow/ui/src/queries/useDagParams.ts | 2 +-
.../tests/unit/dag_processing/test_manager.py | 31 +-
contributing-docs/05_pull_requests.rst | 2 +-
dev/breeze/src/airflow_breeze/global_constants.py | 4 +-
dev/breeze/uv.lock | 12 +-
devel-common/pyproject.toml | 2 +-
devel-common/src/tests_common/pytest_plugin.py | 6 -
task-sdk/docs/api.rst | 14 +-
task-sdk/src/airflow/sdk/__init__.py | 5 +-
.../src/airflow/sdk/execution_time/task_runner.py | 34 +-
task-sdk/src/airflow/sdk/io/fs.py | 2 +-
task-sdk/tests/task_sdk/docs/test_public_api.py | 2 +-
.../task_sdk/execution_time/test_task_runner.py | 72 +
38 files changed, 1407 insertions(+), 993 deletions(-)
create mode 100644
airflow-core/src/airflow/ui/src/components/FlexibleForm/FieldDropdown.test.tsx