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

github-actions[bot] pushed a change to branch ci-upgrade-main
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit 1d7d97abd34 [main] CI: Upgrade important CI environment
     add a3b1e13827f Eager-load Assets list relationships with selectinload and 
refresh it after new events (#70997)
     add 76abfb9a891 Add TypeScript SDK dependency security checks (#71397)
     add 956b7f866aa Verify Java SDK build dependencies (#71400)
     add d1e5f1a6134 Fix Calendar view hanging for Dags with high-frequency 
cron schedules (#71263)
     add 576c6530784 Update providers metadata 2026-08-10 (#71385)
     add 1637347c128 Bump the auth-ui-package-updates group across 1 directory 
with 6 updates (#71410)
     add e8b81132f88 Bump eslint-plugin-unicorn (#71412)
     add a9c35b24ef1 Always tag providers from the wave tag during release 
(#71431)
     add fdbf56053cd Bump the edge-ui-package-updates group across 1 directory 
with 14 updates (#71420)
     add 84a211b5d22 UI: Show owning team on Dag, Dag Run, and Task Instance 
detail pages (#70312)
     add e3671dd24e1 Keep Dag run execution API endpoints working for older 
Task SDK clients (#70138)
     add fe9ca480fb8 Add ConnectionNotFoundError to the TypeScript SDK (#71375)
     add cf4c7690e04 Require a lower bound on every dependency in 
pyproject.toml (#71378)
     add e068c6e0934 Update grid view refresh (#71004)
     add 8a5c3ba704b Bump the core-ui-package-updates group across 1 directory 
with 2 updates (#71417)
     add affe4595ba1 Bump the ui-plugin-template-package-updates group across 1 
directory with 6 updates (#71406)
     add 326c119e44d Add a user settings page for cross-page UI defaults 
(#70687)
     add 12e3f08d547 Add preset filters to the Dags list page (#71368)
     add eeeaa0c23d8 Spell out the empty version suffix for the SVN provider 
build (#71247)
     add f7e827b86e5 Return 404 from task state store endpoints for unknown 
task instances (#70983)
     add e8160efd4db Let the agent retry on a rejected DataFusion query instead 
of failing the task (#71445)
     add 537feafb369 Fix Variables API handling of non-string JSON values 
(#71018)
     add 1481de61c4c Document effect of clearing a task instance on task state 
store (#71356)
     add b099814d51f Document how clearing tasks works with task state store on 
durable operators (#71358)
     add 1b902cc4099 Add TypeScript SDK API reference docs with TypeDoc (#70812)
     add da661e7d186 [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   (1d7d97abd34)
            \
             N -- N -- N   refs/heads/ci-upgrade-main (da661e7d186)

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/dependabot.yml                             |   18 +
 .github/workflows/ci-amd.yml                       |   34 +
 .github/workflows/ci-arm.yml                       |   34 +
 .github/workflows/java-sdk-release-verify.yml      |   40 +-
 .github/workflows/publish-docs-to-s3.yml           |   85 +-
 ...list-check.yml => ts-sdk-dependency-review.yml} |   30 +-
 .pre-commit-config.yaml                            |   12 +-
 Dockerfile                                         |    2 +-
 Dockerfile.ci                                      |    2 +-
 .../language-sdks/typescript.rst                   |   11 +-
 airflow-core/docs/best-practices.rst               |    2 +-
 .../docs/core-concepts/resumable-tasks.rst         |   21 +
 .../auth/managers/simple/ui/package.json           |   14 +-
 .../auth/managers/simple/ui/pnpm-lock.yaml         |  269 +-
 .../src/airflow/api_fastapi/common/db/assets.py    |   12 +-
 .../src/airflow/api_fastapi/common/db/dag_runs.py  |    6 +-
 .../src/airflow/api_fastapi/common/db/dags.py      |   37 +-
 .../api_fastapi/common/db/task_instances.py        |    5 +-
 .../api_fastapi/core_api/datamodels/dags.py        |    1 +
 .../api_fastapi/core_api/datamodels/variables.py   |   15 +-
 .../core_api/openapi/v2-rest-api-generated.yaml    |   73 +-
 .../api_fastapi/core_api/routes/public/dag_run.py  |    8 +-
 .../api_fastapi/core_api/routes/public/dags.py     |    4 +-
 .../core_api/routes/public/task_instances.py       |    7 +-
 .../core_api/routes/public/task_state_store.py     |  149 +-
 .../core_api/services/public/variables.py          |    3 +-
 .../api_fastapi/core_api/services/ui/calendar.py   |    6 +-
 .../execution_api/datamodels/taskinstance.py       |    4 +
 .../execution_api/routes/task_instances.py         |    5 +-
 .../execution_api/versions/v2026_06_30.py          |   27 +
 airflow-core/src/airflow/models/dag.py             |   24 +
 airflow-core/src/airflow/models/dagbundle.py       |    6 +
 airflow-core/src/airflow/models/dagrun.py          |    8 +
 airflow-core/src/airflow/models/taskinstance.py    |    1 +
 airflow-core/src/airflow/models/variable.py        |    9 +-
 .../ui/openapi-gen/queries/ensureQueryData.ts      |    2 +-
 .../src/airflow/ui/openapi-gen/queries/prefetch.ts |    2 +-
 .../src/airflow/ui/openapi-gen/queries/queries.ts  |   10 +-
 .../src/airflow/ui/openapi-gen/queries/suspense.ts |    2 +-
 .../airflow/ui/openapi-gen/requests/schemas.gen.ts |   11 +
 .../ui/openapi-gen/requests/services.gen.ts        |   31 +-
 .../airflow/ui/openapi-gen/requests/types.gen.ts   |    5 +-
 airflow-core/src/airflow/ui/package.json           |    4 +-
 airflow-core/src/airflow/ui/pnpm-lock.yaml         |   98 +-
 .../airflow/ui/public/i18n/locales/en/common.json  |   35 +-
 .../ui/src/components/Clear/Run/ClearRunDialog.tsx |    6 +-
 .../TaskInstance/ClearGroupTaskInstanceDialog.tsx  |    6 +-
 .../Clear/TaskInstance/ClearTaskInstanceDialog.tsx |   12 +-
 .../components/Graph/DirectionDropdown.test.tsx    |   74 +
 .../ui/src/components/Graph/DirectionDropdown.tsx  |    4 +-
 .../TaskInstance/MarkTaskInstanceAsDialog.tsx      |    5 +-
 .../TeamName.test.tsx}                             |   38 +-
 .../components/{WarningAlert.tsx => TeamName.tsx}  |   23 +-
 .../airflow/ui/src/constants/localStorage.test.ts  |   32 +-
 .../src/airflow/ui/src/constants/localStorage.ts   |   13 +
 .../{rules/levels.js => src/hooks/useShowTeam.ts}  |   15 +-
 .../airflow/ui/src/hooks/useUserSettings.test.tsx  |  149 +
 .../src/airflow/ui/src/hooks/useUserSettings.ts    |   54 +
 .../airflow/ui/src/layouts/Details/Graph/Graph.tsx |    4 +-
 .../airflow/ui/src/layouts/Details/Grid/Grid.tsx   |    2 -
 .../Nav/UserSettingsButton.test.tsx}               |   19 +-
 .../ui/src/layouts/Nav/UserSettingsButton.tsx      |   23 +-
 airflow-core/src/airflow/ui/src/main.tsx           |    3 +-
 .../src/airflow/ui/src/pages/Asset/AssetGraph.tsx  |    4 +-
 .../src/pages/Asset/CreateAssetEventModal.test.tsx |   17 +-
 .../ui/src/pages/Asset/CreateAssetEventModal.tsx   |    8 +-
 .../src/airflow/ui/src/pages/Dag/Details.tsx       |   12 +
 .../src/airflow/ui/src/pages/Dag/Header.test.tsx   |   37 +-
 .../src/airflow/ui/src/pages/Dag/Header.tsx        |   11 +
 .../src/airflow/ui/src/pages/DagRuns/DagRuns.tsx   |    8 +-
 .../src/airflow/ui/src/pages/DagsList/DagCard.tsx  |    7 +-
 .../DagsList/DagsFilters/DagsFilters.test.tsx      |    6 +
 .../src/pages/DagsList/DagsFilters/DagsFilters.tsx |    8 +-
 .../src/airflow/ui/src/pages/DagsList/DagsList.tsx |    8 +-
 .../ui/src/pages/DagsList/useTagFilter.test.tsx    |   46 +-
 .../airflow/ui/src/pages/DagsList/useTagFilter.ts  |   17 +-
 .../src/airflow/ui/src/pages/Run/Details.tsx       |   12 +
 .../src/airflow/ui/src/pages/Run/Header.test.tsx   |   21 +
 .../src/airflow/ui/src/pages/Run/Header.tsx        |   11 +
 .../ui/src/pages/Settings/Settings.test.tsx        |  118 +
 .../src/airflow/ui/src/pages/Settings/Settings.tsx |  256 ++
 .../ui/src/pages/{Events => Settings}/index.tsx    |    3 +-
 .../airflow/ui/src/pages/TaskInstance/Details.tsx  |   12 +
 .../ui/src/pages/TaskInstance/Header.test.tsx      |   78 +
 .../airflow/ui/src/pages/TaskInstance/Header.tsx   |   11 +
 .../ui/src/pages/TaskInstances/TaskInstances.tsx   |    8 +-
 .../gridViewQueryKeys.test.ts}                     |   27 +-
 .../airflow/ui/src/queries/gridViewQueryKeys.ts    |    3 +
 .../src/airflow/ui/src/queries/useGridStructure.ts |   38 +-
 .../ui/src/queries/useGridTISummaries.test.tsx     |   47 +-
 .../airflow/ui/src/queries/useGridTISummaries.ts   |    7 +-
 airflow-core/src/airflow/ui/src/router.tsx         |    5 +
 .../core_api/routes/public/test_dag_run.py         |   19 +
 .../core_api/routes/public/test_dags.py            |   36 +-
 .../core_api/routes/public/test_task_instances.py  |   45 +
 .../routes/public/test_task_state_store.py         |   57 +
 .../core_api/routes/public/test_variables.py       |   91 +-
 .../api_fastapi/core_api/routes/ui/test_assets.py  |   25 +-
 .../core_api/routes/ui/test_calendar.py            |   39 +
 .../versions/head/test_task_instances.py           |   59 +
 .../versions/v2026_06_30/test_dag_runs.py          |   90 +
 airflow-core/tests/unit/models/test_team.py        |  130 +
 airflow-core/tests/unit/models/test_variable.py    |    5 +
 .../src/airflowctl/api/datamodels/generated.py     |    1 +
 clients/python/pyproject.toml                      |    2 +-
 .../13_airflow_dependencies_and_extras.rst         |   15 +
 dev/README_RELEASE_PROVIDERS.md                    |   50 +-
 dev/breeze/doc/ci/02_images.md                     |    2 +-
 dev/breeze/doc/ci/04_selective_checks.md           |    1 +
 dev/breeze/doc/images/output_build-docs.svg        |    6 +-
 dev/breeze/doc/images/output_build-docs.txt        |    2 +-
 ...tput_release-management_add-back-references.svg |    4 +-
 ...tput_release-management_add-back-references.txt |    2 +-
 .../output_release-management_publish-docs.svg     |    4 +-
 .../output_release-management_publish-docs.txt     |    2 +-
 .../images/output_workflow-run_publish-docs.svg    |    4 +-
 .../images/output_workflow-run_publish-docs.txt    |    2 +-
 .../airflow_breeze/commands/developer_commands.py  |  112 +-
 .../commands/release_management_commands.py        |    6 +-
 dev/breeze/src/airflow_breeze/global_constants.py  |   20 +-
 .../src/airflow_breeze/utils/docs_publisher.py     |    3 +
 .../src/airflow_breeze/utils/publish_docs_to_s3.py |    1 +
 .../src/airflow_breeze/utils/selective_checks.py   |   19 +-
 dev/breeze/tests/test_docs_publisher.py            |   21 +
 .../tests/test_release_management_commands.py      |   24 +
 dev/breeze/tests/test_selective_checks.py          |   46 +
 .../react_plugin_template/package.json             |   12 +-
 .../react_plugin_template/pnpm-lock.yaml           |  204 +-
 devel-common/pyproject.toml                        |    2 +-
 docs/spelling_wordlist.txt                         |    1 +
 generated/provider_metadata.json                   |    8 +
 java-sdk/README.md                                 |   22 +
 java-sdk/build.gradle.kts                          |    9 +
 java-sdk/buildSrc/build.gradle.kts                 |    7 +
 .../main/kotlin/airflow-jvm-conventions.gradle.kts |    4 -
 java-sdk/gradle/verification-metadata.xml          | 3029 +++++++++++++++
 java-sdk/plugin/build.gradle.kts                   |    4 -
 java-sdk/settings.gradle.kts                       |   14 +
 .../docs/operators/redshift/redshift_data.rst      |   10 +
 providers/apache/spark/docs/operators.rst          |   10 +
 providers/common/ai/docs/index.rst                 |   10 +-
 providers/common/ai/pyproject.toml                 |   10 +-
 .../providers/common/ai/toolsets/datafusion.py     |    5 +-
 .../unit/common/ai/toolsets/test_datafusion.py     |   18 +-
 providers/databricks/docs/operators/run_now.rst    |   10 +
 providers/databricks/docs/operators/submit_run.rst |   10 +
 .../providers/edge3/plugins/www/package.json       |   28 +-
 .../providers/edge3/plugins/www/pnpm-lock.yaml     |  640 ++--
 .../airflow/providers/openlineage/utils/utils.py   |    7 +-
 providers/snowflake/docs/operators/snowflake.rst   |   10 +
 pyproject.toml                                     |    2 +-
 scripts/ci/prek/check_dependency_lower_bounds.py   |  146 +
 scripts/ci/prek/check_imports_in_providers.py      |    2 +-
 scripts/ci/prek/check_ti_vs_tis_attributes.py      |    2 +
 scripts/ci/prek/ruff_format.py                     |    2 +-
 .../ci/prek/test_check_dependency_lower_bounds.py  |  143 +
 scripts/tools/setup_breeze                         |    2 +-
 ts-sdk/README.md                                   |   53 +-
 ts-sdk/docs/.gitignore                             |    4 +
 ts-sdk/docs/index.md                               |   65 +
 ts-sdk/docs/package-lock.json                      | 3898 ++++++++++++++++++++
 ts-sdk/docs/package.json                           |   20 +
 ts-sdk/docs/scripts/prepare-readme.mjs             |   45 +
 ts-sdk/docs/tsconfig.json                          |   21 +
 ts-sdk/docs/typedoc.json                           |   24 +
 ts-sdk/src/coordinator/client.ts                   |    8 +-
 ts-sdk/src/index.ts                                |    2 +-
 ts-sdk/src/sdk/client.ts                           |   20 +
 ts-sdk/src/sdk/task.ts                             |    4 +-
 ts-sdk/tests/coordinator/client.test.ts            |   26 +
 ts-sdk/tests/public-api.test.ts                    |    9 +
 uv.lock                                            |   20 +-
 172 files changed, 10892 insertions(+), 1167 deletions(-)
 copy .github/workflows/{asf-allowlist-check.yml => 
ts-sdk-dependency-review.yml} (59%)
 create mode 100644 
airflow-core/src/airflow/ui/src/components/Graph/DirectionDropdown.test.tsx
 copy airflow-core/src/airflow/ui/src/{layouts/Nav/DocsButton.test.tsx => 
components/TeamName.test.tsx} (51%)
 copy airflow-core/src/airflow/ui/src/components/{WarningAlert.tsx => 
TeamName.tsx} (66%)
 copy airflow-core/src/airflow/ui/{rules/levels.js => src/hooks/useShowTeam.ts} 
(70%)
 create mode 100644 
airflow-core/src/airflow/ui/src/hooks/useUserSettings.test.tsx
 create mode 100644 airflow-core/src/airflow/ui/src/hooks/useUserSettings.ts
 copy 
airflow-core/src/airflow/ui/src/{pages/Connections/NothingFoundInfo.test.tsx => 
layouts/Nav/UserSettingsButton.test.tsx} (60%)
 create mode 100644 
airflow-core/src/airflow/ui/src/pages/Settings/Settings.test.tsx
 create mode 100644 airflow-core/src/airflow/ui/src/pages/Settings/Settings.tsx
 copy airflow-core/src/airflow/ui/src/pages/{Events => Settings}/index.tsx (95%)
 create mode 100644 
airflow-core/src/airflow/ui/src/pages/TaskInstance/Header.test.tsx
 copy airflow-core/src/airflow/ui/src/{utils/ChakraWrapper.test.tsx => 
queries/gridViewQueryKeys.test.ts} (57%)
 create mode 100644 
airflow-core/tests/unit/api_fastapi/execution_api/versions/v2026_06_30/test_dag_runs.py
 create mode 100644 java-sdk/gradle/verification-metadata.xml
 create mode 100755 scripts/ci/prek/check_dependency_lower_bounds.py
 create mode 100644 scripts/tests/ci/prek/test_check_dependency_lower_bounds.py
 create mode 100644 ts-sdk/docs/.gitignore
 create mode 100644 ts-sdk/docs/index.md
 create mode 100644 ts-sdk/docs/package-lock.json
 create mode 100644 ts-sdk/docs/package.json
 create mode 100644 ts-sdk/docs/scripts/prepare-readme.mjs
 create mode 100644 ts-sdk/docs/tsconfig.json
 create mode 100644 ts-sdk/docs/typedoc.json

Reply via email to