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-5c1597f2fb
in repository https://gitbox.apache.org/repos/asf/airflow.git
omit 38fb7f349d3 Bump the core-ui-package-updates group across 1 directory
with 59 updates
add 452435879e9 Add task group ID filtering support to task instance query
(#58092) (#59511)
add dbd50f5a217 [v3-1-test] Fix svn push step to add both versions in one
commit (#59505) (#59520)
add 494a8ed8fe6 Bump Sphinx Airflow theme to 0.3.0 (#59538)
add ec5854efcf2 Backport i18n UI Japanese translations for v3.1. Original
PR#59313 (#59557)
add cebc88b6982 [v3-1-test] [BUGFIX] Flush session() before processing
Event Buffer (#59314) (#59559)
add 8db525eb96c [v3-1-test] Update README.md "DAG" to "Dag" for
consistency (#59554) (#59560)
add 9d1dd7157af Bump the core-ui-package-updates group across 1 directory
with 59 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 (38fb7f349d3)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/ui/v3-1-test/core-ui-package-updates-5c1597f2fb
(9d1dd7157af)
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 +
README.md | 18 +-
.../src/airflow/api_fastapi/common/parameters.py | 56 ++
.../core_api/openapi/v2-rest-api-generated.yaml | 12 +
.../core_api/routes/public/task_instances.py | 7 +-
.../src/airflow/ui/openapi-gen/queries/common.ts | 5 +-
.../ui/openapi-gen/queries/ensureQueryData.ts | 6 +-
.../src/airflow/ui/openapi-gen/queries/prefetch.ts | 6 +-
.../src/airflow/ui/openapi-gen/queries/queries.ts | 6 +-
.../src/airflow/ui/openapi-gen/queries/suspense.ts | 6 +-
.../ui/openapi-gen/requests/services.gen.ts | 2 +
.../airflow/ui/openapi-gen/requests/types.gen.ts | 4 +
airflow-core/src/airflow/ui/package.json | 8 +-
airflow-core/src/airflow/ui/pnpm-lock.yaml | 584 ++++++++++-----------
.../airflow/ui/public/i18n/locales/ja/admin.json | 172 ++++++
.../airflow/ui/public/i18n/locales/ja/assets.json | 32 ++
.../airflow/ui/public/i18n/locales/ja/browse.json | 22 +
.../airflow/ui/public/i18n/locales/ja/common.json | 324 ++++++++++++
.../ui/public/i18n/locales/ja/components.json | 140 +++++
.../src/airflow/ui/public/i18n/locales/ja/dag.json | 154 ++++++
.../airflow/ui/public/i18n/locales/ja/dags.json | 97 ++++
.../ui/public/i18n/locales/ja/dashboard.json | 45 ++
.../airflow/ui/public/i18n/locales/ja/hitl.json | 34 ++
.../airflow/ui/public/i18n/locales/ja/tasks.json | 10 +
.../TaskInstance/ClearGroupTaskInstanceDialog.tsx | 2 +-
airflow-core/src/airflow/ui/src/i18n/config.ts | 1 +
.../ui/src/pages/Task/Overview/Overview.tsx | 4 +-
.../ui/src/pages/TaskInstances/TaskInstances.tsx | 3 +-
.../core_api/routes/public/test_task_instances.py | 42 +-
.../commands/release_candidate_command.py | 22 +-
.../src/airflow_breeze/commands/ui_commands.py | 1 +
.../files/simple_auth_manager_passwords.json | 2 +-
dev/breeze/tests/test_release_candidate_command.py | 187 +++++++
devel-common/pyproject.toml | 2 +-
generated/PYPI_README.md | 2 +-
task-sdk/src/airflow/sdk/definitions/dag.py | 2 +
37 files changed, 1684 insertions(+), 340 deletions(-)
create mode 100644
airflow-core/src/airflow/ui/public/i18n/locales/ja/admin.json
create mode 100644
airflow-core/src/airflow/ui/public/i18n/locales/ja/assets.json
create mode 100644
airflow-core/src/airflow/ui/public/i18n/locales/ja/browse.json
create mode 100644
airflow-core/src/airflow/ui/public/i18n/locales/ja/common.json
create mode 100644
airflow-core/src/airflow/ui/public/i18n/locales/ja/components.json
create mode 100644 airflow-core/src/airflow/ui/public/i18n/locales/ja/dag.json
create mode 100644 airflow-core/src/airflow/ui/public/i18n/locales/ja/dags.json
create mode 100644
airflow-core/src/airflow/ui/public/i18n/locales/ja/dashboard.json
create mode 100644 airflow-core/src/airflow/ui/public/i18n/locales/ja/hitl.json
create mode 100644
airflow-core/src/airflow/ui/public/i18n/locales/ja/tasks.json