This is an automated email from the ASF dual-hosted git repository.
ash pushed a change to branch more-robust-task-sdk-conflict-response-tests
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard 9cb3c6e5a00 Ensure that we don't try sending any more heartbeat
messages once the process has exited.
omit b81d951f1ab Correctly ensure that we give subprocesses time to exit
after signalling it
add 558148c6ded Remove Provider Deprecations in Microsoft-PSRP (#44761)
add e786c78f528 Remove Provider Deprecations in Yandex provider (#44754)
add 75b24e88b25 Remove Provider Deprecations in Microsoft-MSSQL (#44762)
add 69251624a6b Deprecated DruidCheckOperator (#44765)
add 5d77bda57e2 Prevent using `trigger_rule=TriggerRule.ALWAYS` in a
task-generated mapping within bare tasks (#44751)
add 16206ef559e Correctly ensure that we give subprocesses time to exit
after signalling it (#44766)
add 8983071dc61 Ensure that we don't try sending any more heartbeat
messages once the process has exited.
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 (9cb3c6e5a00)
\
N -- N -- N
refs/heads/more-robust-task-sdk-conflict-response-tests (8983071dc61)
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/decorators/base.py | 21 +++++++
.../operators.rst | 4 +-
.../dynamic-task-mapping.rst | 10 +--
newsfragments/44751.bugfix.rst | 1 +
.../airflow/providers/apache/druid/CHANGELOG.rst | 11 ++++
.../apache/druid/operators/druid_check.py | 38 -----------
.../airflow/providers/apache/druid/provider.yaml | 1 -
.../providers/microsoft/mssql/CHANGELOG.rst | 13 ++++
.../microsoft/mssql/operators/__init__.py | 17 -----
.../providers/microsoft/mssql/operators/mssql.py | 73 ----------------------
.../providers/microsoft/mssql/provider.yaml | 5 --
.../airflow/providers/microsoft/psrp/CHANGELOG.rst | 9 +++
.../airflow/providers/microsoft/psrp/hooks/psrp.py | 16 +----
.../src/airflow/providers/yandex/CHANGELOG.rst | 13 ++++
.../src/airflow/providers/yandex/hooks/yandex.py | 24 +------
.../providers/yandex/hooks/yandexcloud_dataproc.py | 30 ---------
.../airflow/providers/yandex/operators/dataproc.py | 12 ----
.../yandex/operators/yandexcloud_dataproc.py | 30 ---------
.../tests/microsoft/mssql/operators/__init__.py | 16 -----
.../tests/microsoft/mssql/operators/test_mssql.py | 65 -------------------
providers/tests/microsoft/psrp/hooks/test_psrp.py | 12 +---
providers/tests/yandex/hooks/test_yandex.py | 42 -------------
task_sdk/src/airflow/sdk/definitions/taskgroup.py | 4 +-
tests/decorators/test_mapped.py | 38 +++++++++++
tests/decorators/test_task_group.py | 5 +-
25 files changed, 124 insertions(+), 386 deletions(-)
create mode 100644 newsfragments/44751.bugfix.rst
delete mode 100644
providers/src/airflow/providers/apache/druid/operators/druid_check.py
delete mode 100644
providers/src/airflow/providers/microsoft/mssql/operators/__init__.py
delete mode 100644
providers/src/airflow/providers/microsoft/mssql/operators/mssql.py
delete mode 100644
providers/src/airflow/providers/yandex/hooks/yandexcloud_dataproc.py
delete mode 100644
providers/src/airflow/providers/yandex/operators/yandexcloud_dataproc.py
delete mode 100644 providers/tests/microsoft/mssql/operators/__init__.py
delete mode 100644 providers/tests/microsoft/mssql/operators/test_mssql.py