This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/pip/airflow-core/pip-dependency-updates-1a800ef2ca
in repository https://gitbox.apache.org/repos/asf/airflow.git
omit 05637c1cdb8 Bump the pip-dependency-updates group across 3 directories
with 2 updates
add 7d615cff9e9 AIP-103: Implement clear_on_success config to wipe task
state on success (#66586)
add 1455f326031 feat: Add standardized SQL check representation for
listeners (#66849)
add 8e51e6867ad Add support for influx3 (#58929)
add e29b44f0a40 Show expected duration based on historical avg in DAG Run
details (#65722)
add a1470a949bc Neutralize path separator in IMAP (#66951)
add 9b1d58aedb2 Allow using fresh interpreter besides fork() in Edge
Worker (#65943)
add 1fca2b3ec64 Bump the pip-dependency-updates group across 3 directories
with 2 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 (05637c1cdb8)
\
N -- N -- N
refs/heads/dependabot/pip/airflow-core/pip-dependency-updates-1a800ef2ca
(1fca2b3ec64)
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:
.../api_fastapi/core_api/datamodels/ui/dag_runs.py | 17 +
.../api_fastapi/core_api/openapi/_private_ui.yaml | 86 ++
.../api_fastapi/core_api/routes/public/dag_run.py | 4 +-
.../api_fastapi/core_api/routes/ui/__init__.py | 2 +
.../api_fastapi/core_api/routes/ui/dag_runs.py | 63 +
.../core_api/services/public/task_instances.py | 39 +
.../api_fastapi/core_api/services/ui/dag_run.py | 59 +
.../execution_api/routes/task_instances.py | 28 +
.../src/airflow/config_templates/config.yml | 14 +
.../src/airflow/ui/openapi-gen/queries/common.ts | 7 +
.../ui/openapi-gen/queries/ensureQueryData.ts | 13 +
.../src/airflow/ui/openapi-gen/queries/prefetch.ts | 13 +
.../src/airflow/ui/openapi-gen/queries/queries.ts | 13 +
.../src/airflow/ui/openapi-gen/queries/suspense.ts | 13 +
.../airflow/ui/openapi-gen/requests/schemas.gen.ts | 59 +
.../ui/openapi-gen/requests/services.gen.ts | 26 +-
.../airflow/ui/openapi-gen/requests/types.gen.ts | 45 +
.../airflow/ui/public/i18n/locales/ar/common.json | 5 +
.../airflow/ui/public/i18n/locales/ca/common.json | 5 +
.../airflow/ui/public/i18n/locales/de/common.json | 5 +
.../airflow/ui/public/i18n/locales/el/common.json | 5 +
.../airflow/ui/public/i18n/locales/en/common.json | 5 +
.../airflow/ui/public/i18n/locales/es/common.json | 5 +
.../airflow/ui/public/i18n/locales/fr/common.json | 5 +
.../airflow/ui/public/i18n/locales/he/common.json | 5 +
.../airflow/ui/public/i18n/locales/hi/common.json | 5 +
.../airflow/ui/public/i18n/locales/hu/common.json | 5 +
.../airflow/ui/public/i18n/locales/it/common.json | 5 +
.../airflow/ui/public/i18n/locales/ja/common.json | 5 +
.../airflow/ui/public/i18n/locales/ko/common.json | 5 +
.../airflow/ui/public/i18n/locales/nl/common.json | 5 +
.../airflow/ui/public/i18n/locales/pl/common.json | 5 +
.../airflow/ui/public/i18n/locales/pt/common.json | 5 +
.../airflow/ui/public/i18n/locales/ru/common.json | 5 +
.../airflow/ui/public/i18n/locales/th/common.json | 5 +
.../airflow/ui/public/i18n/locales/tr/common.json | 5 +
.../ui/public/i18n/locales/zh-CN/common.json | 5 +
.../ui/public/i18n/locales/zh-TW/common.json | 5 +
.../src/airflow/ui/src/pages/Run/Details.tsx | 29 +-
.../core_api/routes/public/test_task_instances.py | 74 ++
.../versions/head/test_task_instances.py | 83 ++
.../airflow/providers/common/sql/operators/sql.py | 475 +++++++-
.../tests/unit/common/sql/operators/test_sql.py | 1263 ++++++++++++++++++++
.../src/airflow/providers/edge3/cli/dataclasses.py | 28 +-
.../src/airflow/providers/edge3/cli/worker.py | 121 +-
.../edge3/tests/unit/edge3/cli/test_worker.py | 362 ++++--
.../imap/src/airflow/providers/imap/hooks/imap.py | 6 +-
providers/influxdb/docs/connections/influxdb3.rst | 51 +
providers/influxdb/docs/index.rst | 4 +-
providers/influxdb/docs/operators/index.rst | 15 +
providers/influxdb/provider.yaml | 41 +
providers/influxdb/pyproject.toml | 1 +
.../providers/influxdb/get_provider_info.py | 42 +-
.../airflow/providers/influxdb/hooks/influxdb3.py | 247 ++++
.../operators/{influxdb.py => influxdb3.py} | 43 +-
.../{example_influxdb.py => example_influxdb3.py} | 59 +-
.../tests/unit/influxdb/hooks/test_influxdb3.py | 123 ++
.../unit/influxdb/operators/test_influxdb3.py | 59 +
providers/openlineage/docs/index.rst | 4 +-
providers/openlineage/pyproject.toml | 4 +-
.../src/airflow/sdk/execution_time/task_runner.py | 4 +
uv.lock | 22 +-
62 files changed, 3560 insertions(+), 206 deletions(-)
create mode 100644
airflow-core/src/airflow/api_fastapi/core_api/routes/ui/dag_runs.py
create mode 100644
airflow-core/src/airflow/api_fastapi/core_api/services/ui/dag_run.py
create mode 100644 providers/influxdb/docs/connections/influxdb3.rst
create mode 100644
providers/influxdb/src/airflow/providers/influxdb/hooks/influxdb3.py
copy providers/influxdb/src/airflow/providers/influxdb/operators/{influxdb.py
=> influxdb3.py} (50%)
copy providers/influxdb/tests/system/influxdb/{example_influxdb.py =>
example_influxdb3.py} (58%)
create mode 100644
providers/influxdb/tests/unit/influxdb/hooks/test_influxdb3.py
create mode 100644
providers/influxdb/tests/unit/influxdb/operators/test_influxdb3.py