This is an automated email from the ASF dual-hosted git repository.
ephraimanierobi pushed a change to branch backport-fbbce53-v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard c906d0af503 Use exact match for this branch
discard ef18cac9077 [v3-1-test] Add pre-commit hook to verify version
consistency (#59509)
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 43867a65738 [v3-1-test] Add Rahul to codeowners (#59565) (#59568)
add 1624a400c73 [v3-1-test] Fix Dag Processor logging crash (#59317)
(#59581)
add 44d4a3f5223 [v3-1-test] Add log record when listening dag is
partitioned but run has no key (#59375) (#59582)
add a68b3f393a4 [v3-1-test] Add pre-commit hook to verify version
consistency (#59509)
add 34a9cd8346e Use exact match for this branch
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 (c906d0af503)
\
N -- N -- N refs/heads/backport-fbbce53-v3-1-test (34a9cd8346e)
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 | 4 +
.github/boring-cyborg.yml | 3 +
README.md | 18 +-
airflow-core/src/airflow/assets/manager.py | 6 +-
.../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 +
airflow-core/src/airflow/ui/src/i18n/config.ts | 1 +
airflow-core/tests/unit/assets/test_manager.py | 2 +
.../src/airflow_breeze/commands/ui_commands.py | 1 +
devel-common/pyproject.toml | 2 +-
generated/PYPI_README.md | 2 +-
task-sdk/src/airflow/sdk/definitions/dag.py | 2 +
.../src/airflow/sdk/execution_time/supervisor.py | 8 +-
21 files changed, 1063 insertions(+), 16 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