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

ash pushed a change to branch task-sdk-first-code
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard 4a73ac9add3 Start porting over all the DAG defintion code to the Task 
SDK
     add 48c7b22fc82 Add missed brackets for our dev script for Spell checks 
(#42965)
     add 95c46ec1353 FIX: Don't raise a warning in ExecutorSafeguard when 
execute is called from an extended operator (#42849)
     add 3661a089b2d Upgrade Helm Chart dependencies to latest released (#42816)
     add 8b1c57a1999 Fix PythonOperator DAG error when DAG has hyphen in name 
(#42902)
     add 51f430285e2 fIX handling removal of dependencies (#42967)
     add f1735b4c0c4 mark test_task_workflow_trigger_success as flaky (#42972)
     add cd5eb2ca4ab Create a User Settings button with light/dark mode toggle 
as a menu item (#42964)
     add b92c66d45d2 AIP-84 Migrate delete Dag Run endpoint to FastAPI (#42910)
     add ad54501f3fc Make datStats endpoint dag_ids parameter optional (#42955)
     new 3c11050ad87 Start porting over all the DAG defintion code to the Task 
SDK
     new 762f0212c10 Start replacing DAG class with the task-sdk DAG class 
instead

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   (4a73ac9add3)
            \
             N -- N -- N   refs/heads/task-sdk-first-code (762f0212c10)

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.

The 2 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/workflows/additional-ci-image-checks.yml   |   7 +
 .github/workflows/additional-prod-image-tests.yml  |   6 +
 .github/workflows/build-images.yml                 |   4 +
 .github/workflows/ci-image-build.yml               |   5 +
 .github/workflows/ci.yml                           |   6 +
 .github/workflows/finalize-tests.yml               |   5 +
 .github/workflows/prod-image-build.yml             |   6 +
 .github/workflows/prod-image-extra-checks.yml      |   6 +
 .github/workflows/push-image-cache.yml             |   6 +
 Dockerfile.ci                                      |   5 +-
 .../api_connexion/endpoints/dag_run_endpoint.py    |   1 +
 .../api_connexion/endpoints/dag_stats_endpoint.py  |  40 +-
 airflow/api_connexion/openapi/v1.yaml              |   4 +-
 airflow/api_fastapi/openapi/v1-generated.yaml      |  52 ++
 airflow/api_fastapi/views/public/dag_run.py        |  15 +
 airflow/models/baseoperator.py                     |  38 +-
 airflow/models/dag.py                              | 826 +--------------------
 airflow/ui/openapi-gen/queries/common.ts           |   3 +
 airflow/ui/openapi-gen/queries/queries.ts          |  43 ++
 airflow/ui/openapi-gen/requests/services.gen.ts    |  31 +
 airflow/ui/openapi-gen/requests/types.gen.ts       |  36 +
 airflow/ui/src/layouts/Nav/Nav.tsx                 |  16 +-
 .../Nav/{DocsButton.tsx => UserSettingsButton.tsx} |  65 +-
 airflow/utils/file.py                              |   2 +-
 airflow/utils/task_group.py                        |  30 +-
 airflow/www/static/js/types/api-generated.ts       |   6 +-
 dev/breeze/doc/ci/07_debugging.md                  |  67 +-
 dev/breeze/doc/images/output_ci-image_build.svg    | 112 +--
 dev/breeze/doc/images/output_ci-image_build.txt    |   2 +-
 dev/breeze/doc/images/output_prod-image_build.txt  |   2 +-
 .../airflow_breeze/commands/ci_image_commands.py   |   4 +
 .../commands/ci_image_commands_config.py           |   1 +
 .../commands/common_image_options.py               |   7 +
 .../commands/production_image_commands.py          |   7 +-
 .../src/airflow_breeze/params/build_ci_params.py   |   1 -
 .../src/airflow_breeze/params/build_prod_params.py |   5 -
 .../airflow_breeze/params/common_build_params.py   |   5 +-
 .../src/airflow_breeze/utils/selective_checks.py   |   4 +
 .../src/airflow_breeze/utils/spelling_checks.py    |   4 +-
 dev/breeze/tests/test_selective_checks.py          |  20 +
 task_sdk/pyproject.toml                            |   1 -
 task_sdk/src/airflow/sdk/__init__.py               |  28 +-
 .../src/airflow/sdk/definitions/baseoperator.py    |   2 +-
 .../src/airflow/sdk/definitions/contextmanager.py  |   2 +-
 task_sdk/src/airflow/sdk/definitions/dag.py        |  39 +-
 task_sdk/src/airflow/sdk/definitions/node.py       |   9 +-
 .../definitions/{task_group.py => taskgroup.py}    |   0
 task_sdk/src/airflow/sdk/types.py                  |   4 +-
 task_sdk/tests/test_hello.py                       |  23 -
 .../endpoints/test_dag_stats_endpoint.py           | 194 ++++-
 tests/api_fastapi/views/public/test_dag_run.py     |  12 +
 tests/models/test_baseoperatormeta.py              |  24 +-
 tests/triggers/test_external_task.py               |   1 +
 tests/utils/test_file.py                           |  18 +
 uv.lock                                            |  11 -
 55 files changed, 769 insertions(+), 1104 deletions(-)
 copy airflow/ui/src/layouts/Nav/{DocsButton.tsx => UserSettingsButton.tsx} 
(56%)
 rename task_sdk/src/airflow/sdk/definitions/{task_group.py => taskgroup.py} 
(100%)
 delete mode 100644 task_sdk/tests/test_hello.py

Reply via email to