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

ash pushed a change to branch variable-access-dag-parsing
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit 3c77fabe0c3 Enable accessing Variables from the top level of the DAG 
files
     add 647a2d1cbec Move Macros to Task SDK (#46867)
     add 4833b53705a Refactor result_processor and event_handler signatures in 
MSGraphAsyncOperator (#46637)
     add 3e6c6a109ea Fix wrong operator name in doc string of @task.kubernetes 
(#46873)
     add 3e13c2fb35c Remove deprecated get_link signature support (#46415)
     add 6a7203a2da3 Use run_id to implement ti clear in API when given (#46883)
     add 4e90d117a91 Enable accessing Variables from the top level of the DAG 
files

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   (3c77fabe0c3)
            \
             N -- N -- N   refs/heads/variable-access-dag-parsing (4e90d117a91)

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:
 .../core_api/routes/public/task_instances.py       |  6 +-
 airflow/api_fastapi/execution_api/app.py           |  2 +-
 airflow/macros/__init__.py                         | 71 +++-------------
 airflow/models/baseoperatorlink.py                 |  5 +-
 airflow/serialization/serialized_objects.py        |  8 +-
 newsfragments/46415.significant.rst                | 25 ++++++
 .../cncf/kubernetes/decorators/kubernetes.py       |  2 +-
 .../providers/microsoft/azure/hooks/msgraph.py     |  2 +-
 .../providers/microsoft/azure/operators/msgraph.py | 53 +++++++++---
 .../providers/microsoft/azure/sensors/msgraph.py   | 21 +++--
 .../unit/microsoft/azure/hooks/test_msgraph.py     | 21 +++++
 .../unit/microsoft/azure/operators/test_msgraph.py | 99 ++++++++++++++++++++--
 .../unit/microsoft/azure/sensors/test_msgraph.py   | 47 ++++++++--
 task_sdk/pyproject.toml                            |  3 +
 task_sdk/src/airflow/sdk/definitions/macros.py     | 56 ++++++++++++
 task_sdk/src/airflow/sdk/definitions/variable.py   |  4 +-
 task_sdk/tests/definitions/test_macros.py          | 71 ++++++++++++++++
 .../endpoints/test_extra_link_endpoint.py          | 11 +--
 .../core_api/routes/public/test_task_instances.py  | 48 +++++------
 tests/api_fastapi/test_app.py                      |  6 +-
 tests/macros/test_macros.py                        | 93 --------------------
 21 files changed, 425 insertions(+), 229 deletions(-)
 create mode 100644 newsfragments/46415.significant.rst
 delete mode 100644 tests/macros/test_macros.py

Reply via email to