This is an automated email from the ASF dual-hosted git repository.

Lee-W pushed a change to branch ci-upgrade-main
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit 771f6f17b95 [main] CI: Upgrade important CI environment
     add 3986d828ec3 Prevent malformed Elasticsearch log entries from crashing 
task log fetch (#69306)
     add 50f90d17dda Build Java SDK e2e example bundles natively in CI (#69794)
     add b96b5fdb058 Fix broken class references and truncated wording in 
OpenAI provider docs (#69710)
     add 4e0f297dc44 Remove redundant ORM result uniquing in core queries 
(#69913)
     add 43038e01182 Fix Azure Data Factory hook broken with 
azure-mgmt-datafactory 10 (#69800)
     add eca04903bde Rename coordinator label to area:coordinator and align 
CODEOWNERS (#69906)
     add 7fed0f07cf0 Fix Hive metastore partition sensor initialization (#69612)
     add c68e9f16325 Update the metrics registry hook to ban direct imports of 
stats emitting module-level functions (#68675)
     add a7cc0f9d45d Secure AWS auth cookies behind TLS proxies (#69898)
     add 0dfb55358c4 Requeue KubernetesExecutor tasks whose pod failed before 
execution started (#69058)
     add d527c03f1de Fix @asset reserved keys with default value (#69642)
     add 707b1ccf137 Clean up graph/grid UI (#69883)
     add ae6188dbc79 Stop re-rendering the whole Grid on every hover (#69912)
     add 781b6b9f85e Prevent malformed OpenSearch log entries from crashing 
task log fetch (#69307)
     add 14560e4d2a5 Clarify FAB and Auth documentation regarding 
external_db_managers (#69929)
     add 663a7920389 Support excluding files from `common.ai` Agent Skills 
discovery (#69924)
     add af6d5c2c4c8 Bump eslint (#69932)
     add 8c3a1169709 Add team_name attribute to plugins for multi-team (#69502)
     add 00ce83c6c44 Fix deadline never firing after non-deadline Dag edit 
(#68734)
     add 5930c02ad0f TriggerRunnerSupervisor: Add trigger queue delay metric 
(#67927)
     add d3b8e05acbe [main] CI: Upgrade important CI environment

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   (771f6f17b95)
            \
             N -- N -- N   refs/heads/ci-upgrade-main (d3b8e05acbe)

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                                 |   2 +
 .github/boring-cyborg.yml                          |   2 +-
 .github/workflows/additional-prod-image-tests.yml  |   5 +
 .github/workflows/airflow-e2e-tests.yml            |  54 ++-
 .github/workflows/ci-amd.yml                       |   1 +
 .github/workflows/ci-arm.yml                       |   1 +
 .pre-commit-config.yaml                            |   2 +-
 .../docs/core-concepts/auth-manager/index.rst      |   4 +-
 airflow-core/newsfragments/67927.feature.rst       |   1 +
 airflow-core/src/airflow/api_fastapi/app.py        |   3 +
 .../src/airflow/api_fastapi/common/db/dag_runs.py  |   2 +-
 .../api_fastapi/core_api/datamodels/plugins.py     |   1 +
 .../core_api/openapi/v2-rest-api-generated.yaml    |   5 +
 .../api_fastapi/core_api/routes/public/dag_run.py  |   6 +-
 .../api_fastapi/core_api/routes/public/plugins.py  |  16 +-
 .../core_api/routes/public/task_instances.py       |  32 +-
 .../api_fastapi/core_api/routes/ui/deadlines.py    |   2 +-
 .../airflow/api_fastapi/core_api/routes/ui/grid.py |   2 +-
 .../core_api/services/public/task_instances.py     |   4 +-
 .../src/airflow/executors/workloads/trigger.py     |   1 +
 .../src/airflow/jobs/scheduler_job_runner.py       |  18 +-
 .../src/airflow/jobs/triggerer_job_runner.py       |  27 +-
 airflow-core/src/airflow/models/serialized_dag.py  |  18 +-
 airflow-core/src/airflow/plugins_manager.py        |  39 +-
 .../airflow/ui/openapi-gen/requests/schemas.gen.ts |  11 +
 .../airflow/ui/openapi-gen/requests/types.gen.ts   |   1 +
 .../src/airflow/ui/public/i18n/locales/ar/dag.json |   5 -
 .../src/airflow/ui/public/i18n/locales/ca/dag.json |   5 -
 .../src/airflow/ui/public/i18n/locales/de/dag.json |   5 -
 .../src/airflow/ui/public/i18n/locales/en/dag.json |   3 -
 .../src/airflow/ui/public/i18n/locales/fr/dag.json |   5 -
 .../src/airflow/ui/public/i18n/locales/he/dag.json |   5 -
 .../src/airflow/ui/public/i18n/locales/hi/dag.json |   5 -
 .../src/airflow/ui/public/i18n/locales/hu/dag.json |   5 -
 .../src/airflow/ui/public/i18n/locales/ko/dag.json |   3 -
 .../src/airflow/ui/public/i18n/locales/pl/dag.json |   5 -
 .../src/airflow/ui/public/i18n/locales/tr/dag.json |   5 -
 .../airflow/ui/public/i18n/locales/zh-CN/dag.json  |   5 -
 .../airflow/ui/src/components/Graph/TaskNode.tsx   |   3 +-
 .../ui/src/components/Graph/elkGraphUtils.ts       |   2 +-
 .../src/airflow/ui/src/components/TaskName.tsx     |   2 -
 .../src/airflow/ui/src/context/hover/Context.ts    |  28 --
 .../airflow/ui/src/context/hover/HoverProvider.tsx |  31 --
 .../src/airflow/ui/src/context/hover/index.ts      |  21 --
 .../src/airflow/ui/src/context/hover/useHover.ts   |  31 --
 .../ui/src/layouts/Details/DetailsLayout.tsx       | 413 ++++++++++-----------
 .../airflow/ui/src/layouts/Details/Gantt/Gantt.tsx |  16 +-
 .../layouts/Details/Gantt/GanttTimeline.test.tsx   |   7 +-
 .../ui/src/layouts/Details/Gantt/GanttTimeline.tsx |   9 +-
 .../airflow/ui/src/layouts/Details/Grid/Bar.tsx    |  12 +-
 .../airflow/ui/src/layouts/Details/Grid/GridTI.tsx |  14 +-
 .../layouts/Details/Grid/TaskInstancesColumn.tsx   |  15 +-
 .../ui/src/layouts/Details/Grid/TaskNames.tsx      |  19 +-
 .../layouts/Details/Grid/gridHover.css}            |  18 +-
 .../layouts/Details/Grid/useGridCrosshairHover.ts  |  95 +++++
 .../airflow/ui/src/layouts/Details/GridFilters.tsx |   7 +-
 .../ui/src/layouts/Details/PanelButtons.tsx        |  15 +-
 .../ui/src/pages/GroupTaskInstance/Header.tsx      |   4 +-
 .../core_api/routes/public/test_plugins.py         |  73 ++++
 .../unit/cli/commands/test_plugins_command.py      |   1 +
 airflow-core/tests/unit/jobs/test_triggerer_job.py |  48 +++
 .../tests/unit/models/test_serialized_dag.py       | 113 ++++++
 .../tests/unit/plugins/test_plugins_manager.py     |  68 ++++
 .../src/airflowctl/api/datamodels/generated.py     |   1 +
 .../tests/airflow_e2e_tests/conftest.py            |  63 ++--
 .../tests/airflow_e2e_tests/constants.py           |   4 +
 docs/spelling_wordlist.txt                         |   1 +
 .../amazon/aws/auth_manager/routes/login.py        |   2 +-
 .../amazon/aws/auth_manager/routes/test_login.py   |  11 +-
 .../apache/hive/sensors/metastore_partition.py     |  53 +--
 .../hive/sensors/test_metastore_partition.py       |  51 ++-
 providers/cncf/kubernetes/docs/changelog.rst       |  12 +
 providers/cncf/kubernetes/provider.yaml            |  34 ++
 .../kubernetes/executors/kubernetes_executor.py    | 139 ++++++-
 .../providers/cncf/kubernetes/get_provider_info.py |  14 +
 .../executors/test_kubernetes_executor.py          | 290 +++++++++++++++
 providers/common/ai/docs/index.rst                 |   2 +-
 providers/common/ai/docs/toolsets.rst              |  10 +
 providers/common/ai/pyproject.toml                 |   4 +-
 .../airflow/providers/common/ai/toolsets/skills.py |  20 +-
 .../tests/unit/common/ai/toolsets/test_skills.py   |  50 +++
 .../providers/elasticsearch/log/es_task_handler.py |  28 +-
 .../unit/elasticsearch/log/test_es_task_handler.py |  45 +++
 providers/fab/docs/upgrading.rst                   |   6 +-
 .../fab/src/airflow/providers/fab/www/package.json |   2 +-
 .../src/airflow/providers/fab/www/pnpm-lock.yaml   |  22 +-
 providers/microsoft/azure/README.rst               |   2 +-
 providers/microsoft/azure/docs/index.rst           |   2 +-
 providers/microsoft/azure/pyproject.toml           |   2 +-
 .../microsoft/azure/hooks/data_factory.py          |  46 ++-
 .../microsoft/azure/hooks/test_data_factory.py     |  73 +++-
 providers/openai/docs/index.rst                    |   2 +-
 providers/openai/docs/operators/openai.rst         |  20 +-
 providers/openai/provider.yaml                     |   2 +-
 .../airflow/providers/openai/get_provider_info.py  |   2 +-
 .../providers/opensearch/log/os_task_handler.py    |  28 +-
 .../unit/opensearch/log/test_os_task_handler.py    |  44 +++
 pyproject.toml                                     |   8 +
 .../prek/check_metrics_synced_with_the_registry.py | 139 ++++++-
 .../test_check_metrics_synced_with_the_registry.py | 190 ++++++++++
 .../observability/metrics/metrics_template.yaml    |   7 +
 .../plugins_manager/plugins_manager.py             |   8 +
 .../tests/plugins_manager/test_plugins_manager.py  |  16 +
 .../airflow/sdk/definitions/asset/decorators.py    |   7 +-
 .../task_sdk/definitions/test_asset_decorators.py  |  38 ++
 uv.lock                                            | 311 ++++++++--------
 106 files changed, 2358 insertions(+), 834 deletions(-)
 create mode 100644 airflow-core/newsfragments/67927.feature.rst
 delete mode 100644 airflow-core/src/airflow/ui/src/context/hover/Context.ts
 delete mode 100644 
airflow-core/src/airflow/ui/src/context/hover/HoverProvider.tsx
 delete mode 100644 airflow-core/src/airflow/ui/src/context/hover/index.ts
 delete mode 100644 airflow-core/src/airflow/ui/src/context/hover/useHover.ts
 copy airflow-core/src/airflow/ui/{tests/e2e/fixtures/index.ts => 
src/layouts/Details/Grid/gridHover.css} (67%)
 create mode 100644 
airflow-core/src/airflow/ui/src/layouts/Details/Grid/useGridCrosshairHover.ts

Reply via email to