You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by gi...@apache.org on 2020/05/11 02:55:33 UTC

[airflow] tag nightly-master updated (c7788a6 -> 493b685)

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

github-bot pushed a change to tag nightly-master
in repository https://gitbox.apache.org/repos/asf/airflow.git.


*** WARNING: tag nightly-master was modified! ***

    from c7788a6  (commit)
      to 493b685  (commit)
    from c7788a6  Add imap_attachment_to_s3 example dag and system test (#8669)
     add a715aa6  Correctly store non-default Nones in serialized tasks/dags (#8772)
     add 280f1f0  Correctly restore upstream_task_ids when deserializing Operators (#8775)
     add cbebed2  Allow passing backend_kwargs to AWS SSM client (#8802)
     add 79ef8be  Added Upload Multiple Entity Read Files to specified big query dataset (#8610)
     add e1cc17e  Remove old airflow logger causing side effects in tests (#8746)
     add 9bb91ef  Add comments to breeze scripts (#8797)
     add 493b685  Add separate example DAGs and system tests for google cloud speech (#8778)

No new revisions were added by this update.

Summary of changes:
 .../amazon/aws/secrets/systems_manager.py          |  13 +-
 .../google/cloud/example_dags/example_gcs.py       |   4 +-
 ...example_speech.py => example_speech_to_text.py} |  51 +----
 ...example_speech.py => example_text_to_speech.py} |  57 ++----
 ...ample_speech.py => example_translate_speech.py} |  46 ++---
 .../example_dags/example_display_video.py          |  36 ++--
 .../marketing_platform/hooks/display_video.py      |  24 ++-
 airflow/serialization/serialized_objects.py        |  27 ++-
 breeze                                             | 183 ++++++++++++------
 .../gcp/{speech.rst => speech_to_text.rst}         |  60 +-----
 .../gcp/{speech.rst => text_to_speech.rst}         |  58 +-----
 .../{translate-speech.rst => translate_speech.rst} |  26 +--
 docs/operators-and-hooks-ref.rst                   |   6 +-
 scripts/ci/_utils.sh                               | 214 ++++++++++++++++-----
 scripts/ci/docker-compose/backend-sqlite.yml       |   2 +-
 .../amazon/aws/secrets/test_systems_manager.py     |  18 ++
 ...ech_system.py => test_speech_to_text_system.py} |  12 +-
 ...ech_system.py => test_text_to_speech_system.py} |  10 +-
 ...h_system.py => test_translate_speech_system.py} |  12 +-
 tests/secrets/test_secrets.py                      |  14 ++
 tests/serialization/test_dag_serialization.py      | 166 +++++++++++-----
 tests/test_logging_config.py                       |  35 +++-
 tests/test_project_structure.py                    |   6 -
 23 files changed, 601 insertions(+), 479 deletions(-)
 copy airflow/providers/google/cloud/example_dags/{example_speech.py => example_speech_to_text.py} (61%)
 copy airflow/providers/google/cloud/example_dags/{example_speech.py => example_text_to_speech.py} (51%)
 rename airflow/providers/google/cloud/example_dags/{example_speech.py => example_translate_speech.py} (67%)
 copy docs/howto/operator/gcp/{speech.rst => speech_to_text.rst} (58%)
 rename docs/howto/operator/gcp/{speech.rst => text_to_speech.rst} (60%)
 rename docs/howto/operator/gcp/{translate-speech.rst => translate_speech.rst} (72%)
 copy tests/providers/google/cloud/operators/{test_speech_system.py => test_speech_to_text_system.py} (80%)
 copy tests/providers/google/cloud/operators/{test_speech_system.py => test_text_to_speech_system.py} (84%)
 rename tests/providers/google/cloud/operators/{test_speech_system.py => test_translate_speech_system.py} (80%)