You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by po...@apache.org on 2020/12/25 20:55:16 UTC

[airflow] tag nightly-master updated (d4c4492 -> df09c3f)

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

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


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

    from d4c4492  (commit)
      to df09c3f  (commit)
    from d4c4492  Correct commas on providers page, Q&A -> FAQ (#13294)
     add f7b9ba8  Rename second pylint pre-commit hook to distinguish it from first (#13303)
     add 344b23c  Fix Flower network policy for CeleryKubernetesExecutor (#13301)
     add 5185d81  add AzureDatalakeStorageDeleteOperator (#13206)
     add b600dfd  Fix doci string in API entry. (#13300)
     add 323084e  Add timeout option to gcs hook methods. (#13156)
     add e7aeacf  Add OracleToGCS Transfer (#13246)
     add e9d65bd  Decode Remote Google Logs (#13115)
     add e2bfac9  When CLI changes, we also re-run K8S tests (#13305)
     add 3f52f1a  Pass SchedulerJob.subdir to Dagbag (#13291)
     add 7a560ab  Pass image_pull_policy in KubernetesPodOperator correctly (#13289)
     add 69d6d02  Validation of config is done at the very end (#13260)
     add b6bf253  Respect LogFormat when using ES logging with Json Format (#13310)
     add df09c3f  Installed providers are initialized in subshell (#13270)

No new revisions were added by this update.

Summary of changes:
 .pre-commit-config.yaml                            |  2 +-
 CONTRIBUTING.rst                                   |  2 +-
 PULL_REQUEST_WORKFLOW.rst                          |  3 +-
 .../api/common/experimental/get_dag_run_state.py   |  2 +-
 .../api/common/experimental/get_task_instance.py   |  2 +-
 airflow/configuration.py                           |  6 +-
 airflow/jobs/scheduler_job.py                      |  2 +-
 .../cncf/kubernetes/operators/kubernetes_pod.py    |  1 +
 airflow/providers/dependencies.json                |  1 +
 .../providers/elasticsearch/log/es_task_handler.py | 25 +++++-
 ...le_mysql_to_gcs.py => example_oracle_to_gcs.py} | 14 ++--
 airflow/providers/google/cloud/hooks/gcs.py        | 30 +++++--
 .../providers/google/cloud/log/gcs_task_handler.py |  4 +-
 .../{mysql_to_gcs.py => oracle_to_gcs.py}          | 63 +++++++--------
 airflow/providers/google/provider.yaml             |  4 +
 ...ple_local_to_adls.py => example_adls_delete.py} | 15 +++-
 .../microsoft/azure/hooks/azure_data_lake.py       | 20 +++++
 .../operators/{adls_list.py => adls_delete.py}     | 50 ++++++------
 airflow/providers/microsoft/azure/provider.yaml    |  3 +
 chart/templates/flower/flower-networkpolicy.yaml   |  3 +-
 .../{mysql_to_gcs.rst => oracle_to_gcs.rst}        | 24 +++---
 .../operators/{local_to_adls.rst => adls.rst}      | 27 +++----
 scripts/ci/libraries/_initialization.sh            | 17 +++-
 scripts/ci/selective_ci_checks.sh                  |  3 +-
 setup.py                                           |  2 +-
 tests/core/test_configuration.py                   |  1 +
 tests/jobs/test_scheduler_job.py                   | 91 +++++++++++-----------
 tests/models/test_taskinstance.py                  |  2 +-
 .../kubernetes/operators/test_kubernetes_pod.py    | 53 +++++++++++++
 .../elasticsearch/log/test_es_task_handler.py      | 25 ++++++
 tests/providers/google/cloud/hooks/test_gcs.py     | 14 ++--
 .../google/cloud/log/test_gcs_task_handler.py      | 34 ++++----
 ...{test_mssql_to_gcs.py => test_oracle_to_gcs.py} | 64 ++++++++-------
 .../microsoft/azure/hooks/test_azure_data_lake.py  | 11 +++
 .../azure/operators/test_adls_delete.py}           | 20 +++--
 .../test_adls_delete_system.py}                    | 22 +++---
 tests/test_utils/azure_system_helpers.py           | 32 ++++++++
 37 files changed, 449 insertions(+), 245 deletions(-)
 copy airflow/providers/google/cloud/example_dags/{example_mysql_to_gcs.py => example_oracle_to_gcs.py} (71%)
 copy airflow/providers/google/cloud/transfers/{mysql_to_gcs.py => oracle_to_gcs.py} (65%)
 copy airflow/providers/microsoft/azure/example_dags/{example_local_to_adls.py => example_adls_delete.py} (74%)
 copy airflow/providers/microsoft/azure/operators/{adls_list.py => adls_delete.py} (54%)
 copy docs/apache-airflow-providers-google/operators/transfer/{mysql_to_gcs.rst => oracle_to_gcs.rst} (73%)
 copy docs/apache-airflow-providers-microsoft-azure/operators/{local_to_adls.rst => adls.rst} (59%)
 copy tests/providers/google/cloud/transfers/{test_mssql_to_gcs.py => test_oracle_to_gcs.py} (65%)
 copy tests/providers/{vertica/operators/test_vertica.py => microsoft/azure/operators/test_adls_delete.py} (60%)
 copy tests/providers/microsoft/azure/{transfers/test_file_to_wasb_system.py => operators/test_adls_delete_system.py} (66%)