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

mobuchowski pushed a change to branch fix-openlineage-tests
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard 66e20ab01a openlineage: remove eager test for auth headers, fix 
example dag
     add f5a83bc90b Fix BaseOperator get_task_instances query (#33054)
     add e9a2bb3d4a Extract sagemaker pipeline to their own system test (#33086)
     add 1c7472df70 openlineage: remove eager test for auth headers, fix 
example dag (#33087)
     add e3d82c6be0 Get rid of Python2 numeric relics (#33050)
     add f83d63ea54 Fix `KubernetesPodOperator` sub classes default 
container_logs (#33090)
     add bcfadcf6e4 Ensure DAG-level references are filled on unmap (#33083)
     add 087d14ada2 Deferrable mode for Sqs Sensor (#32809)
     add 153e489dd0 Fix test failing after open-lineage 1.0 API change (#33095)
     add f14430d4d3 Temporarily exclude openlineage from "PyPI" constraints 
generation (#33101)
     add b57fc45861 Use arrow with no circle for setup / teardown (#33098)
     add c18a5a9f86 Don't auto-add to context just by virtue of arrowing 
(#33102)
     add e20325db38 Allows to choose SSL context for SMTP provider (#33075)
     add 52ca7bfc98 Allows to choose SSL context for IMAP provider (#33108)

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   (66e20ab01a)
            \
             N -- N -- N   refs/heads/fix-openlineage-tests (52ca7bfc98)

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/example_dags/example_python_operator.py    |   2 +-
 airflow/models/baseoperator.py                     |  13 +-
 airflow/models/mappedoperator.py                   |   2 +
 airflow/models/taskinstance.py                     |   2 +-
 airflow/models/taskmixin.py                        |  21 ---
 airflow/providers/amazon/aws/sensors/sqs.py        |  94 +++++------
 .../amazon/aws/{sensors => triggers}/sqs.py        | 183 +++++++--------------
 airflow/providers/amazon/aws/utils/sqs.py          |  90 ++++++++++
 airflow/providers/amazon/provider.yaml             |   3 +
 .../providers/celery/executors/celery_executor.py  |   2 +-
 .../celery/executors/celery_executor_utils.py      |   2 +-
 airflow/providers/cncf/kubernetes/operators/pod.py |   4 +-
 airflow/providers/common/sql/operators/sql.py      |   4 +-
 airflow/providers/docker/operators/docker.py       |   2 +-
 airflow/providers/google/cloud/hooks/bigquery.py   |   4 +-
 airflow/providers/google/cloud/hooks/gcs.py        |   4 +-
 airflow/providers/imap/CHANGELOG.rst               |  12 ++
 airflow/providers/imap/hooks/imap.py               |  37 ++++-
 airflow/providers/imap/provider.yaml               |  23 +++
 airflow/providers/smtp/CHANGELOG.rst               |  12 ++
 airflow/providers/smtp/hooks/smtp.py               |  20 ++-
 airflow/providers/smtp/provider.yaml               |  24 +++
 airflow/serialization/serialized_objects.py        |  59 +++++--
 airflow/www/static/js/dag/details/graph/Node.tsx   |   9 +-
 airflow/www/views.py                               |   4 +-
 dev/breeze/src/airflow_breeze/utils/parallel.py    |   2 +-
 dev/stats/get_important_pr_candidates.py           |   5 +-
 .../operators/sagemaker.rst                        |   6 +-
 .../operators/sqs.rst                              |   1 +
 .../configurations-ref.rst                         |   0
 docs/apache-airflow-providers-imap/index.rst       |   1 +
 .../configurations-ref.rst                         |   0
 docs/apache-airflow-providers-smtp/index.rst       |   1 +
 docs/apache-airflow/configurations-ref.rst         |   2 +
 scripts/in_container/_in_container_utils.sh        |   7 +
 tests/decorators/test_setup_teardown.py            |  53 ------
 tests/models/test_baseoperator.py                  |  38 ++++-
 tests/models/test_taskmixin.py                     |  97 -----------
 tests/providers/amazon/aws/sensors/test_sqs.py     |  15 +-
 tests/providers/amazon/aws/triggers/test_sqs.py    | 108 ++++++++++++
 .../cncf/kubernetes/operators/test_pod.py          |   8 +
 tests/providers/imap/hooks/test_imap.py            |  69 +++++++-
 tests/providers/smtp/hooks/test_smtp.py            | 103 +++++++++++-
 tests/serialization/test_serialized_objects.py     |  21 +++
 .../providers/amazon/aws/example_sagemaker.py      |  53 ------
 .../amazon/aws/example_sagemaker_pipeline.py       | 126 ++++++++++++++
 tests/test_utils/perf/perf_kit/repeat_and_time.py  |   4 +-
 tests/utils/test_task_group.py                     |  71 +-------
 48 files changed, 882 insertions(+), 541 deletions(-)
 copy airflow/providers/amazon/aws/{sensors => triggers}/sqs.py (51%)
 create mode 100644 airflow/providers/amazon/aws/utils/sqs.py
 copy docs/{apache-airflow-providers-apache-hive => 
apache-airflow-providers-imap}/configurations-ref.rst (100%)
 copy docs/{apache-airflow-providers-apache-hive => 
apache-airflow-providers-smtp}/configurations-ref.rst (100%)
 create mode 100644 tests/providers/amazon/aws/triggers/test_sqs.py
 create mode 100644 
tests/system/providers/amazon/aws/example_sagemaker_pipeline.py

Reply via email to