This is an automated email from the ASF dual-hosted git repository.
ash pushed a change to branch fix-tasksdk-subprocess-closing
in repository https://gitbox.apache.org/repos/asf/airflow.git
omit e07dd994fdb fixup! Ensure that Task SDK supervisor closes all its
handles correctly.
omit 3cca463de6f Ensure that Task SDK supervisor closes all its handles
correctly.
add 5a0272c272e Create dag graph with nested groups and join_ids (#44199)
add 9bc28403811 Update newsfragment text for clarification (#44266)
add 22d1406af24 Make filters param optional and fix typing (#44226)
add fc52d7d1279 Restrict pydantic 2.10.0 (#44249)
add f33166a6122 AIP-81 Add Insert Multiple Pools API (#44121)
add 2b14e6943db Ensure that Task SDK supervisor closes all its handles
correctly.
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 (e07dd994fdb)
\
N -- N -- N refs/heads/fix-tasksdk-subprocess-closing
(2b14e6943db)
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:
airflow/api_fastapi/app.py | 9 +-
airflow/api_fastapi/common/db/common.py | 56 ++-
airflow/api_fastapi/common/exceptions.py | 64 +++
airflow/api_fastapi/core_api/app.py | 8 +
airflow/api_fastapi/core_api/datamodels/pools.py | 8 +-
.../api_fastapi/core_api/openapi/v1-generated.yaml | 63 +++
.../api_fastapi/core_api/routes/public/assets.py | 6 +-
.../core_api/routes/public/backfills.py | 4 +-
.../core_api/routes/public/connections.py | 1 -
.../api_fastapi/core_api/routes/public/dag_run.py | 3 +-
.../core_api/routes/public/dag_warning.py | 6 +-
airflow/api_fastapi/core_api/routes/public/dags.py | 8 +-
.../core_api/routes/public/event_logs.py | 9 +-
.../core_api/routes/public/import_error.py | 5 +-
.../api_fastapi/core_api/routes/public/pools.py | 32 +-
.../core_api/routes/public/task_instances.py | 14 +-
.../core_api/routes/public/variables.py | 1 -
airflow/ui/openapi-gen/queries/common.ts | 3 +
airflow/ui/openapi-gen/queries/queries.ts | 38 ++
airflow/ui/openapi-gen/requests/schemas.gen.ts | 17 +
airflow/ui/openapi-gen/requests/services.gen.ts | 28 ++
airflow/ui/openapi-gen/requests/types.gen.ts | 44 ++
airflow/ui/package.json | 8 +-
airflow/ui/pnpm-lock.yaml | 455 +++++++++++++++++++++
.../ui/src/components/ui/Dialog/CloseTrigger.tsx | 37 +-
airflow/ui/src/context/colorMode/useColorMode.tsx | 2 +-
.../src/context/openGroups/OpenGroupsProvider.tsx | 69 ++++
.../DataTable => context/openGroups}/index.ts | 3 +-
.../useTimezone.ts => openGroups/useOpenGroups.ts} | 11 +-
airflow/ui/src/pages/DagsList/Dag/Dag.tsx | 38 +-
.../DagsList/Dag/DagVizModal.tsx} | 30 +-
airflow/ui/src/pages/DagsList/Dag/Graph/Edge.tsx | 81 ++++
airflow/ui/src/pages/DagsList/Dag/Graph/Graph.tsx | 69 ++++
.../DagsList/Dag/Graph/JoinNode.tsx} | 24 +-
.../DagsList/Dag/Graph/NodeWrapper.tsx} | 18 +-
.../ui/src/pages/DagsList/Dag/Graph/TaskName.tsx | 63 +++
.../ui/src/pages/DagsList/Dag/Graph/TaskNode.tsx | 120 ++++++
airflow/ui/src/pages/DagsList/Dag/Graph/data.ts | 216 ++++++++++
.../src/pages/DagsList/Dag/Graph/index.ts} | 2 +-
.../src/pages/DagsList/Dag/Graph/reactflowUtils.ts | 140 +++++++
.../src/pages/DagsList/Dag/Graph/useGraphLayout.ts | 288 +++++++++++++
.../src/pages/DagsList/Dag/{Dag.tsx => Tabs.tsx} | 88 ++--
airflow/ui/vite.config.ts | 2 +
hatch_build.py | 3 +-
newsfragments/41808.significant.rst | 2 +-
.../core_api/routes/public/test_pools.py | 133 +++++-
46 files changed, 2134 insertions(+), 195 deletions(-)
create mode 100644 airflow/api_fastapi/common/exceptions.py
create mode 100644 airflow/ui/src/context/openGroups/OpenGroupsProvider.tsx
copy airflow/ui/src/{components/DataTable => context/openGroups}/index.ts (91%)
copy airflow/ui/src/context/{timezone/useTimezone.ts =>
openGroups/useOpenGroups.ts} (76%)
copy airflow/ui/src/{layouts/Nav/TimezoneModal.tsx =>
pages/DagsList/Dag/DagVizModal.tsx} (60%)
create mode 100644 airflow/ui/src/pages/DagsList/Dag/Graph/Edge.tsx
create mode 100644 airflow/ui/src/pages/DagsList/Dag/Graph/Graph.tsx
copy airflow/ui/src/{components/ui/Select/Root.tsx =>
pages/DagsList/Dag/Graph/JoinNode.tsx} (64%)
copy airflow/ui/src/{utils/ChakraWrapper.tsx =>
pages/DagsList/Dag/Graph/NodeWrapper.tsx} (70%)
create mode 100644 airflow/ui/src/pages/DagsList/Dag/Graph/TaskName.tsx
create mode 100644 airflow/ui/src/pages/DagsList/Dag/Graph/TaskNode.tsx
create mode 100644 airflow/ui/src/pages/DagsList/Dag/Graph/data.ts
copy airflow/{www/static/declarations.d.ts =>
ui/src/pages/DagsList/Dag/Graph/index.ts} (97%)
create mode 100644 airflow/ui/src/pages/DagsList/Dag/Graph/reactflowUtils.ts
create mode 100644 airflow/ui/src/pages/DagsList/Dag/Graph/useGraphLayout.ts
copy airflow/ui/src/pages/DagsList/Dag/{Dag.tsx => Tabs.tsx} (51%)