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-77dc9a1bde
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard 766054fab95 Bump the core-ui-package-updates group across 1 directory 
with 55 updates
     add e6745d13b3a Fix log text selection contrast in light mode (#56216) 
(#56893)
     add af62beabab6 [v3-1-test] Check for console in validate_cmd_result 
(#56876) (#56877)
     add 9bb9ee6d0ad fix(scheduler): load dag_run eagering for execution API 
validation (#56919)
     add 182512f8359 [v3-1-test] Dag task named 'root' causes blue screen on 
hover (#56902) (#56926)
     add fcb5233a068 [v3-1-test] Bump psutil from 7.1.0 to 7.1.1 in /dev/breeze 
(#56899) (#56933)
     add 00ad23244c1 [v3-1-test] Add English as a fallback locale in the UI 
(#56028) (#56934)
     add d52791c8574 [v3-1-test] Add Thai UI translation (#56353) (#56946)
     add ab0295fe041 [WEBSERVER] SerializedDagModel query bug fix impacting 
Grid view performance (#56257) (#56938)
     add 869d036cee9 style: modify log highlight color (#56379) (#56894)
     add aa43604c5be [v3-1-test] fix: enable api to clear ti instances by 
specifying map indexes (#56346) (#56945)
     add 6081335151e [v3-1-test] Modify min width for task names in grid view 
(#56378) (#56952)
     add 5d8860f77e0 [v3-1-test] Revert "fix(scheduler): load dag_run eagering 
for execution API validation (#56916)" (#56943) (#56956)
     add 8ef503336f9 [v3-1-test] Improve get dag grid structure endpoint speed 
(#55942) (#56937)
     add 0d0b3987edd [v3-1-test] Serialize pydantic models in json mode. This 
ensures the dict is json serializable. (#56736) (#56878) (#56939)
     add 654ccd689b2 [v3-1-test] fix: Add ``max_retry_delay`` to 
``MappedOperator`` model (#56396) (#56951)
     add 68573e38fdd Bump the core-ui-package-updates group across 1 directory 
with 55 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   (766054fab95)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/ui/v3-1-test/core-ui-package-updates-77dc9a1bde
 (68573e38fdd)

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/CODEOWNERS                                 |   1 +
 .github/boring-cyborg.yml                          |   3 +
 .../core_api/datamodels/task_instances.py          |   6 +-
 .../core_api/openapi/v2-rest-api-generated.yaml    |   3 +
 .../core_api/routes/public/task_instances.py       |  27 +-
 .../airflow/api_fastapi/core_api/routes/ui/grid.py |   7 +-
 airflow-core/src/airflow/models/mappedoperator.py  |   4 +
 .../airflow/serialization/serialized_objects.py    |   3 +
 .../airflow/serialization/serializers/pydantic.py  |   2 +-
 .../airflow/ui/openapi-gen/requests/schemas.gen.ts |   3 +-
 .../airflow/ui/openapi-gen/requests/types.gen.ts   |   3 +
 airflow-core/src/airflow/ui/package.json           |   6 +-
 airflow-core/src/airflow/ui/pnpm-lock.yaml         | 261 ++++++++---------
 .../airflow/ui/public/i18n/locales/th/admin.json   | 166 +++++++++++
 .../airflow/ui/public/i18n/locales/th/assets.json  |  30 ++
 .../airflow/ui/public/i18n/locales/th/browse.json  |  26 ++
 .../airflow/ui/public/i18n/locales/th/common.json  | 318 +++++++++++++++++++++
 .../ui/public/i18n/locales/th/components.json      | 132 +++++++++
 .../src/airflow/ui/public/i18n/locales/th/dag.json | 154 ++++++++++
 .../airflow/ui/public/i18n/locales/th/dags.json    |  96 +++++++
 .../ui/public/i18n/locales/th/dashboard.json       |  45 +++
 .../airflow/ui/public/i18n/locales/th/hitl.json    |  34 +++
 .../airflow/ui/public/i18n/locales/th/tasks.json   |  10 +
 airflow-core/src/airflow/ui/src/i18n/config.ts     |   1 +
 .../src/airflow/ui/src/layouts/BaseLayout.tsx      |   2 +-
 .../airflow/ui/src/layouts/Details/Grid/Grid.tsx   |   2 +-
 .../airflow/ui/src/layouts/Details/Grid/GridTI.tsx |   4 +-
 .../ui/src/layouts/Details/Grid/TaskNames.tsx      |   4 +-
 .../src/airflow/ui/src/pages/Dag/Code/Code.tsx     |   2 +-
 .../src/pages/TaskInstance/Logs/TaskLogContent.tsx |   2 +-
 .../core_api/routes/public/test_task_instances.py  | 141 ++++++++-
 .../tests/unit/models/test_mappedoperator.py       | 178 ++++++++++++
 .../src/airflowctl/api/datamodels/generated.py     |   8 +-
 dev/breeze/uv.lock                                 |  24 +-
 dev/i18n/check_translations_completeness.py        |   1 +
 scripts/ci/prek/common_prek_utils.py               |  32 ++-
 36 files changed, 1549 insertions(+), 192 deletions(-)
 create mode 100644 
airflow-core/src/airflow/ui/public/i18n/locales/th/admin.json
 create mode 100644 
airflow-core/src/airflow/ui/public/i18n/locales/th/assets.json
 create mode 100644 
airflow-core/src/airflow/ui/public/i18n/locales/th/browse.json
 create mode 100644 
airflow-core/src/airflow/ui/public/i18n/locales/th/common.json
 create mode 100644 
airflow-core/src/airflow/ui/public/i18n/locales/th/components.json
 create mode 100644 airflow-core/src/airflow/ui/public/i18n/locales/th/dag.json
 create mode 100644 airflow-core/src/airflow/ui/public/i18n/locales/th/dags.json
 create mode 100644 
airflow-core/src/airflow/ui/public/i18n/locales/th/dashboard.json
 create mode 100644 airflow-core/src/airflow/ui/public/i18n/locales/th/hitl.json
 create mode 100644 
airflow-core/src/airflow/ui/public/i18n/locales/th/tasks.json

Reply via email to