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/30 02:54:12 UTC

[airflow] tag nightly-master updated (decf7e8 -> e9ecf0a)

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 decf7e8  (commit)
      to e9ecf0a  (commit)
    from decf7e8  Profile hostname for celery executor (#8624)
     add 81b2761  add example dag and system test for GoogleSheetsToGCSOperator (#9056)
     add da83ef8  Add Company to Airflow Users list (#9061)
     add 86909de  Allow testing any executor with scheduler_dag_execution_timing.py (#9062)
     add ada26be  Add correct description for dst param in LocalFilesystemToGCSOperator (#9055)
     add 3d3c042  Added test for bigquery sensor (#8986)
     add 5cf46fa  Add SlackAPIFileOperator impementing files.upload from Slack API (#9004)
     add a779c4d  add separate example dags and system tests for GCSToGoogleSheetsOperator (#9066)
     add 886afaf  Add example dag and system test for LocalFilesystemToGCSOperator (#9043)
     add 357e11e  Add Delete/Create S3 bucket operators (#8895)
     add e9ecf0a  Improve test for the next_execution cli command (#9058)

No new revisions were added by this update.

Summary of changes:
 README.md                                          |  1 +
 airflow/executors/executor_loader.py               | 12 +--
 .../amazon/aws/example_dags/example_s3_bucket.py   | 65 +++++++++++++++
 airflow/providers/amazon/aws/hooks/base_aws.py     | 16 ++--
 airflow/providers/amazon/aws/hooks/s3.py           | 20 +++++
 .../providers/amazon/aws/operators/s3_bucket.py    | 95 ++++++++++++++++++++++
 .../cloud/example_dags/example_local_to_gcs.py}    | 45 +++++-----
 ...postgres_to_gcs.py => example_sheets_to_gcs.py} | 29 ++++---
 .../google/cloud/operators/local_to_gcs.py         |  3 +-
 ...{example_sheets.py => example_gcs_to_sheets.py} | 38 ++-------
 airflow/providers/slack/operators/slack.py         | 62 ++++++++++++++
 docs/howto/operator/gcp/gcs_to_sheets.rst          | 10 +--
 .../{facebook_ads_to_gcs.rst => local_to_gcs.rst}  | 36 ++++----
 docs/howto/operator/gcp/sheets_to_gcs.rst          |  2 +-
 docs/operators-and-hooks-ref.rst                   |  5 +-
 scripts/perf/scheduler_dag_execution_timing.py     | 30 ++++---
 tests/cli/commands/test_dag_command.py             | 71 ++++++++--------
 tests/providers/amazon/aws/hooks/test_s3.py        | 21 ++++-
 .../aws/operators/test_example_s3_bucket.py}       | 14 ++--
 .../amazon/aws/operators/test_s3_bucket.py         | 84 +++++++++++++++++++
 ...peech_system.py => test_local_to_gcs_system.py} | 12 ++-
 ...text_system.py => test_sheets_to_gcs_system.py} | 17 ++--
 .../google/cloud/sensors/test_bigquery.py          | 53 ++++++++++++
 ...eets_system.py => test_gcs_to_sheets_system.py} | 27 +++---
 tests/providers/slack/operators/test_slack.py      | 76 ++++++++++++++++-
 tests/test_project_structure.py                    |  5 --
 26 files changed, 652 insertions(+), 197 deletions(-)
 create mode 100644 airflow/providers/amazon/aws/example_dags/example_s3_bucket.py
 create mode 100644 airflow/providers/amazon/aws/operators/s3_bucket.py
 copy airflow/{contrib/operators/file_to_gcs.py => providers/google/cloud/example_dags/example_local_to_gcs.py} (50%)
 copy airflow/providers/google/cloud/example_dags/{example_postgres_to_gcs.py => example_sheets_to_gcs.py} (66%)
 copy airflow/providers/google/suite/example_dags/{example_sheets.py => example_gcs_to_sheets.py} (60%)
 copy docs/howto/operator/gcp/{facebook_ads_to_gcs.rst => local_to_gcs.rst} (52%)
 copy tests/{test_utils/fake_datetime.py => providers/amazon/aws/operators/test_example_s3_bucket.py} (71%)
 create mode 100644 tests/providers/amazon/aws/operators/test_s3_bucket.py
 copy tests/providers/google/cloud/operators/{test_text_to_speech_system.py => test_local_to_gcs_system.py} (75%)
 copy tests/providers/google/cloud/operators/{test_speech_to_text_system.py => test_sheets_to_gcs_system.py} (77%)
 create mode 100644 tests/providers/google/cloud/sensors/test_bigquery.py
 copy tests/providers/google/suite/operators/{test_sheets_system.py => test_gcs_to_sheets_system.py} (68%)