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

ash pushed a change to branch resume-deferred-operator-tasksdk
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard 857b22a57f6 Apply suggestions from code review
 discard b890aa32bbd Correctly support resuming tasks after triggers
     add c34b73a46eb Remove `/webapp` prefix from new UI (#47041)
     add 1648d7ef61f update xcom docs  (#46284)
     add 4fd812a6def Undo changes to accordion done in #46348 (#47054)
     add 60b2220c171 Introduce DeltaTriggerTimetable (#46846)
     add ca6421789d5 Create AIP-82 documentation (#46912)
     add aab624de4c9 AIP-84 Add latest dag version to dag details (#47066)
     add 9a72bcb6cfb Remove stray docstring (#47075)
     add 82e14d540de Removing stripping quotes on XComOperatorLink (#47045)
     add 2c13c18572c Limiting sqlalchemy-drill 1.1.6 as it breaks CI (#47079)
     add febde142eb3 AIP-38 Fix dialog note state (#47071)
     add 4e0aa267507 Remove link to the legacy UI (#47078)
     add c03e6ec3b3e Rearrange Dag details view (#46939)
     add 9cbea6fd93b Correctly support resuming tasks after triggers
     add f292056508f Apply suggestions from code review

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   (857b22a57f6)
            \
             N -- N -- N   refs/heads/resume-deferred-operator-tasksdk 
(f292056508f)

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                         |   12 +-
 airflow/api_fastapi/core_api/app.py                |    4 +-
 airflow/api_fastapi/core_api/datamodels/dags.py    |   12 +
 .../api_fastapi/core_api/openapi/v1-generated.yaml |    7 +
 .../auth/managers/simple/ui/src/login/Login.tsx    |    2 +-
 airflow/config_templates/config.yml                |   21 +-
 airflow/models/baseoperatorlink.py                 |    3 +-
 airflow/timetables/_delta.py                       |   56 +
 airflow/timetables/interval.py                     |   30 +-
 airflow/timetables/trigger.py                      |  158 ++-
 airflow/ui/.env.example                            |    1 -
 airflow/ui/index.html                              |    2 +-
 airflow/ui/openapi-gen/requests/schemas.gen.ts     |   13 +
 airflow/ui/openapi-gen/requests/types.gen.ts       |    4 +
 airflow/ui/package.json                            |    3 +-
 airflow/ui/pnpm-lock.yaml                          | 1257 ++++++++++----------
 .../components/ActionAccordion/ActionAccordion.tsx |   73 +-
 .../ui/src/components/Clear/Run/ClearRunButton.tsx |    2 +-
 .../Clear/TaskInstance/ClearTaskInstanceButton.tsx |    4 +-
 airflow/ui/src/components/HeaderCard.tsx           |   81 ++
 .../src/components/MarkAs/Run/MarkRunAsButton.tsx  |    2 +-
 .../TaskInstance/MarkTaskInstanceAsButton.tsx      |    4 +-
 airflow/ui/src/components/Stat.tsx                 |   12 +-
 .../TruncatedText.tsx}                             |   18 +-
 airflow/ui/src/layouts/BaseLayout.tsx              |    6 +-
 airflow/ui/src/layouts/Details/DagBreadcrumb.tsx   |  143 +++
 airflow/ui/src/layouts/Details/DagVizModal.tsx     |  105 --
 airflow/ui/src/layouts/Details/DetailsLayout.tsx   |  149 ++-
 airflow/ui/src/layouts/Details/Graph/Graph.tsx     |   68 +-
 airflow/ui/src/layouts/Details/Graph/TaskNode.tsx  |    2 +-
 airflow/ui/src/layouts/Details/Grid/Bar.tsx        |    3 +-
 airflow/ui/src/layouts/Details/Grid/Grid.tsx       |    6 +-
 airflow/ui/src/layouts/Details/Grid/GridButton.tsx |    6 +-
 airflow/ui/src/layouts/Details/Grid/GridTI.tsx     |   52 +-
 airflow/ui/src/layouts/Details/Grid/TaskNames.tsx  |    1 +
 airflow/ui/src/layouts/Details/NavTabs.tsx         |   72 +-
 airflow/ui/src/layouts/Nav/Nav.tsx                 |    7 +-
 airflow/ui/src/pages/Dag/Dag.tsx                   |   35 +-
 airflow/ui/src/pages/Dag/Header.tsx                |  152 ++-
 airflow/ui/src/pages/Run/Header.tsx                |   67 +-
 airflow/ui/src/pages/Run/Run.tsx                   |   42 +-
 airflow/ui/src/pages/Task/Header.tsx               |   40 +-
 airflow/ui/src/pages/Task/Task.tsx                 |   44 +-
 airflow/ui/src/pages/TaskInstance/Header.tsx       |   95 +-
 airflow/ui/src/pages/TaskInstance/TaskInstance.tsx |   66 +-
 airflow/ui/src/pages/TaskInstances.tsx             |    6 +-
 airflow/ui/src/queries/useClearRun.ts              |    2 +
 airflow/ui/src/queries/useClearTaskInstances.ts    |    2 +
 airflow/ui/src/queries/usePatchDagRun.ts           |    2 +
 airflow/ui/src/queries/usePatchTaskInstance.ts     |    2 +
 airflow/ui/src/queries/useTrigger.ts               |    2 +
 airflow/ui/src/router.tsx                          |    5 +-
 airflow/ui/src/utils/index.ts                      |    1 +
 .../src/utils/useContainerWidth.ts}                |   35 +-
 airflow/ui/src/vite-env.d.ts                       |    4 -
 .../authoring-and-scheduling/event-scheduling.rst  |  109 ++
 .../authoring-and-scheduling/index.rst             |    1 +
 .../authoring-and-scheduling/timetable.rst         |  104 +-
 docs/apache-airflow/core-concepts/xcoms.rst        |   23 +-
 generated/provider_dependencies.json               |    2 +-
 .../amazon/aws/auth_manager/router/login.py        |    3 +-
 .../amazon/aws/tests/test_aws_auth_manager.py      |    2 +-
 .../amazon/aws/auth_manager/router/test_login.py   |    2 +-
 providers/apache/drill/README.rst                  |    8 +-
 providers/apache/drill/pyproject.toml              |    2 +-
 .../providers/apache/drill/get_provider_info.py    |    2 +-
 .../fab/src/airflow/providers/fab/www/views.py     |    2 +-
 .../fab/www/views/test_views_custom_user_views.py  |    2 +-
 task_sdk/src/airflow/sdk/definitions/dag.py        |    9 +-
 .../core_api/routes/public/test_assets.py          |    4 +-
 .../core_api/routes/public/test_dags.py            |   12 +
 tests/api_fastapi/test_app.py                      |   11 +
 tests/timetables/test_interval_timetable.py        |   25 +-
 tests/timetables/test_trigger_timetable.py         |  249 +++-
 74 files changed, 2134 insertions(+), 1441 deletions(-)
 create mode 100644 airflow/timetables/_delta.py
 create mode 100644 airflow/ui/src/components/HeaderCard.tsx
 copy airflow/ui/src/{layouts/Details/Grid/DurationTick.tsx => 
components/TruncatedText.tsx} (75%)
 create mode 100644 airflow/ui/src/layouts/Details/DagBreadcrumb.tsx
 delete mode 100644 airflow/ui/src/layouts/Details/DagVizModal.tsx
 copy airflow/{www/static/js/utils/useErrorToast.ts => 
ui/src/utils/useContainerWidth.ts} (59%)
 create mode 100644 
docs/apache-airflow/authoring-and-scheduling/event-scheduling.rst

Reply via email to