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

kaxilnaik pushed a change to branch v3-1-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


    from 38ca6d3409e Upgrade important versions of dependencies (#55646)
     new e20ee338072 Use FilterBar for Asset Event filters (#55522)
     new f87674b12d8 Update query client strategy (#55528)
     new 78b28f8c0b0 Fix gantt chart rendering issues (#55554)
     new 189272713da Mark React Apps as Experimental for Airflow 3.1 (#55478)
     new 1958bcc05d8 Be a little clearer when task likely OOM error (#55602)
     new 792cc4fb1ec fix(ui): Connection Form Extras not inferring the correct 
type (#55492)
     new 7fef4a28399 fix(hitl): make the user model in HITLDetail consistent 
with airflow user model (#55463)
     new 835a8636b97 Bump axios (#55552)
     new b6fec33bf5c Bump axios from 1.11.0 to 1.12.0 in 
/airflow-core/src/airflow/ui (#55551)
     new 44724c2af49 Remove config loader from react tests (#55541)
     new bb09da4770d Add autorefresh to Required Actions button (#55543)
     new ce5dc197fc7 Add hitl required action count (#55546)
     new 4b76188ee7d feat(hitl): get rid off "Fallback to defaults" in HITL 
(#55536)
     new 665c69397fd Remove FAB provider from expected providers for PROD image 
3.13 verification (#55523)
     new 58735c44ba5 Unify datetime format in the UI (#55572)
     new 73f25ace72d Prevent HITL from emitting reqeust for settled dag and 
tasks (#55575)
     new dd8690c4fea Fix Grid cache invalidation for multi-run task operations 
(#55504)
     new 6a440b56c1f refactor(hitl): rename response_at to responded_at (#55535)
     new 28f931c7f59 Bump React and React-DOM (#55598)
     new b6bfb313bf9 Include mypy upgrades to upgrade-important-versions prek 
hook (#55597)
     new caa07e2c12a Separate GoLang precommit after prek supports monorepo 
setup (#54615)
     new 900b079d2f9 Update 3.1.0 release notes based on latest cherry-picks

The 22 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .github/actions/install-prek/action.yml            |   2 +-
 .github/workflows/basic-tests.yml                  |   2 +
 .github/workflows/ci-amd.yml                       |   2 +-
 .github/workflows/prod-image-build.yml             |   4 +
 .pre-commit-config.yaml                            |  45 +-
 RELEASE_NOTES.rst                                  |  20 +-
 .../docs/administration-and-deployment/plugins.rst |   3 +
 airflow-core/docs/howto/custom-view-plugin.rst     |   7 +
 airflow-core/docs/img/airflow_erd.sha256           |   2 +-
 airflow-core/docs/img/airflow_erd.svg              | 120 +++---
 airflow-core/docs/troubleshooting.rst              |  22 +-
 airflow-core/docs/tutorial/hitl.rst                |   3 +
 .../auth/managers/simple/ui/package-lock.json      |   8 +-
 .../auth/managers/simple/ui/package.json           |   2 +-
 .../auth/managers/simple/ui/pnpm-lock.yaml         | 110 ++---
 .../src/airflow/api_fastapi/common/parameters.py   |  11 +-
 .../api_fastapi/core_api/datamodels/hitl.py        |  19 +-
 .../api_fastapi/core_api/openapi/_private_ui.yaml  |  40 +-
 .../core_api/openapi/v2-rest-api-generated.yaml    |  65 +--
 .../api_fastapi/core_api/routes/public/hitl.py     |  20 +-
 .../airflow/api_fastapi/core_api/routes/ui/dags.py |   2 +-
 .../api_fastapi/execution_api/datamodels/hitl.py   |  28 +-
 .../api_fastapi/execution_api/routes/hitl.py       |   9 +-
 .../0076_3_1_0_add_human_in_the_loop_response.py   |   7 +-
 airflow-core/src/airflow/models/hitl.py            | 102 ++++-
 .../src/airflow/ui/openapi-gen/queries/common.ts   |   8 +-
 .../ui/openapi-gen/queries/ensureQueryData.ts      |  12 +-
 .../src/airflow/ui/openapi-gen/queries/prefetch.ts |  12 +-
 .../src/airflow/ui/openapi-gen/queries/queries.ts  |  12 +-
 .../src/airflow/ui/openapi-gen/queries/suspense.ts |  12 +-
 .../airflow/ui/openapi-gen/requests/schemas.gen.ts |  73 ++--
 .../ui/openapi-gen/requests/services.gen.ts        |   8 +-
 .../airflow/ui/openapi-gen/requests/types.gen.ts   |  24 +-
 airflow-core/src/airflow/ui/package.json           |  10 +-
 airflow-core/src/airflow/ui/pnpm-lock.yaml         | 468 +++++++++++----------
 .../ui/src/components/Assets/AssetEventsFilter.tsx | 107 ++---
 .../airflow/ui/src/components/DateTimeInput.tsx    |   3 +-
 .../airflow/ui/src/components/DurationChart.tsx    |   3 +-
 .../src/components/FlexibleForm/FieldSelector.tsx  |  14 +-
 .../ui/src/components/NeedsReviewButton.tsx        |  23 +-
 .../src/airflow/ui/src/components/Time.test.tsx    |   9 +-
 .../src/airflow/ui/src/components/Time.tsx         |   9 +-
 .../src/components/TriggerDag/TriggerDAGForm.tsx   |   3 +-
 .../src/airflow/ui/src/constants/filterConfigs.tsx |  10 +
 .../ui/src/context/colorMode/ColorModeProvider.tsx |   3 +-
 .../airflow/ui/src/hooks/useRequiredActionTabs.ts  | 127 ++++++
 .../airflow/ui/src/layouts/Details/Gantt/Gantt.tsx |  10 +-
 .../airflow/ui/src/layouts/Details/Gantt/utils.ts  |  22 +-
 .../ui/src/layouts/Nav/TimezoneSelector.tsx        |   3 +-
 airflow-core/src/airflow/ui/src/pages/Dag/Dag.tsx  |  45 +-
 .../airflow/ui/src/pages/Dag/Overview/Overview.tsx |   8 +-
 .../pages/HITLTaskInstances/HITLResponseForm.tsx   |   3 +-
 .../pages/HITLTaskInstances/HITLTaskInstances.tsx  |   5 +-
 airflow-core/src/airflow/ui/src/pages/Run/Run.tsx  |  26 +-
 .../ui/src/pages/Task/Overview/Overview.tsx        |   7 +-
 .../src/airflow/ui/src/pages/Task/Task.tsx         |  21 +-
 .../ui/src/pages/TaskInstance/TaskInstance.tsx     |  44 +-
 .../ui/src/queries/useClearTaskInstances.ts        |   9 +-
 .../airflow/ui/src/queries/usePatchTaskInstance.ts |  19 +-
 airflow-core/src/airflow/ui/src/queryClient.ts     |   6 +-
 .../src/airflow/ui/src/utils/AppWrapper.tsx        |   8 +-
 .../src/airflow/ui/src/utils/datetimeUtils.ts      |   5 +-
 .../src/airflow/ui/src/utils/useFiltersHandler.ts  |   2 +
 .../core_api/routes/public/test_hitl.py            |  44 +-
 .../api_fastapi/core_api/routes/ui/test_dags.py    |   5 +-
 .../execution_api/versions/head/test_hitl.py       |  25 +-
 .../src/airflowctl/api/datamodels/generated.py     |  29 +-
 contributing-docs/08_static_code_checks.rst        |   4 +-
 {.github => dev}/.pre-commit-config.yaml           |   0
 .../react_plugin_template/package.json             |   8 +-
 .../src/context/colorMode/ColorModeProvider.tsx    |   3 +-
 docker-tests/tests/docker_tests/test_prod_image.py |  27 +-
 go-sdk/.pre-commit-config.yaml                     |  73 ++++
 .../standard/example_dags/example_hitl_operator.py |   1 +
 .../airflow/providers/standard/operators/hitl.py   |   9 +-
 .../airflow/providers/standard/triggers/hitl.py    |  42 +-
 .../tests/unit/standard/operators/test_hitl.py     |  83 +++-
 .../tests/unit/standard/triggers/test_hitl.py      |  37 +-
 reproducible_build.yaml                            |   4 +-
 scripts/ci/prek/upgrade_important_versions.py      | 269 +++++++-----
 task-sdk/src/airflow/sdk/api/client.py             |   5 +-
 .../src/airflow/sdk/api/datamodels/_generated.py   |  54 ++-
 task-sdk/src/airflow/sdk/execution_time/hitl.py    |  16 +-
 .../src/airflow/sdk/execution_time/supervisor.py   |   7 +-
 task-sdk/tests/task_sdk/api/test_client.py         |  23 +-
 .../tests/task_sdk/execution_time/test_hitl.py     |  27 +-
 .../task_sdk/execution_time/test_supervisor.py     |  20 +-
 87 files changed, 1575 insertions(+), 1088 deletions(-)
 create mode 100644 
airflow-core/src/airflow/ui/src/hooks/useRequiredActionTabs.ts
 rename {.github => dev}/.pre-commit-config.yaml (100%)
 create mode 100644 go-sdk/.pre-commit-config.yaml

Reply via email to