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 51806cdffb6 Update 3.1.0 release notes based on latest cherry-picks
     new c7408e85eb8 Add hover synchronization between Grid and Gantt chart 
(#55611)
     new ab3e337483f Add filter for HITL TaskInstances page (#55620)
     new ef0c2bd3fc0 Add map_index filter to TaskInstance API queries (#55614)

The 3 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:
 .../src/airflow/api_fastapi/common/parameters.py   |   9 +
 .../core_api/openapi/v2-rest-api-generated.yaml    |  16 ++
 .../core_api/routes/public/task_instances.py       |   5 +
 .../src/airflow/ui/openapi-gen/queries/common.ts   |  10 +-
 .../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 +-
 .../ui/openapi-gen/requests/services.gen.ts        |   4 +
 .../airflow/ui/openapi-gen/requests/types.gen.ts   |   2 +
 .../ui/src/components/FilterBar/FilterBar.tsx      |   3 +
 .../ui/src/components/FilterBar/FilterPill.tsx     |   4 +-
 .../ui/src/components/FilterBar/defaultIcons.tsx   |   3 +-
 .../components/FilterBar/filters/SelectFilter.tsx  | 108 ++++++++
 .../airflow/ui/src/components/FilterBar/types.ts   |   3 +-
 .../ui/src/components/ui/Select/Trigger.tsx        |   7 +-
 .../src/airflow/ui/src/constants/filterConfigs.tsx |  20 +-
 .../ui/src/context/{timezone => hover}/Context.ts  |   8 +-
 .../hover/HoverProvider.tsx}                       |  24 +-
 .../DataTable => context/hover}/index.ts           |   5 +-
 .../{timezone/useTimezone.ts => hover/useHover.ts} |   8 +-
 .../ui/src/layouts/Details/DetailsLayout.tsx       | 307 +++++++++++----------
 .../airflow/ui/src/layouts/Details/Gantt/Gantt.tsx |  57 +++-
 .../airflow/ui/src/layouts/Details/Gantt/utils.ts  |  72 ++++-
 .../airflow/ui/src/layouts/Details/Grid/GridTI.tsx |  42 +--
 .../ui/src/layouts/Details/Grid/TaskNames.tsx      |  24 +-
 .../HITLFilters.tsx}                               |  37 ++-
 .../pages/HITLTaskInstances/HITLTaskInstances.tsx  |  88 +++---
 .../src/airflow/ui/src/utils/useFiltersHandler.ts  |   1 +
 .../core_api/routes/public/test_task_instances.py  |  19 ++
 30 files changed, 624 insertions(+), 310 deletions(-)
 create mode 100644 
airflow-core/src/airflow/ui/src/components/FilterBar/filters/SelectFilter.tsx
 copy airflow-core/src/airflow/ui/src/context/{timezone => hover}/Context.ts 
(80%)
 copy 
airflow-core/src/airflow/ui/src/{components/AssetExpression/OrGateNode.tsx => 
context/hover/HoverProvider.tsx} (66%)
 copy airflow-core/src/airflow/ui/src/{components/DataTable => 
context/hover}/index.ts (85%)
 copy airflow-core/src/airflow/ui/src/context/{timezone/useTimezone.ts => 
hover/useHover.ts} (78%)
 copy airflow-core/src/airflow/ui/src/pages/{XCom/XComFilters.tsx => 
HITLTaskInstances/HITLFilters.tsx} (73%)

Reply via email to