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 2021/04/16 02:36:13 UTC

[airflow] tag nightly-master updated (1a85ba9 -> d7bc217)

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 1a85ba9  (commit)
      to d7bc217  (commit)
    from 1a85ba9  Add dynamic connection fields to Azure Connection (#15159)
     add 6e31465  Change default of `[kubernetes] enable_tcp_keepalive` to `True` (#15338)
     add 7490c6b  Updates provider release process (#15339)
     add a4c4e61  Add support for arbitrary json in conn uri format (#15100)
     add a82de56  S3Hook.load_file should accept Path object in addition to str (#15232)
     add 70c74c1  Do not forward cluster-identifier to psycopg2 (#15360)
     add a0b217a  Do not remove 'full-tests-needed' when approval missing (#15175)
     add 7560316  Import Connection lazily in hooks to avoid cycles (#15361)
     add a835bec  Make James Timmins a code owner for everything permissions related (#15366)
     add 44480d3  Require `name` with KubernetesPodOperator (#15373)
     add 15e044c  Undeprecate private_key option in SFTPHook (#15348)
     add f69bb82  Remove unused packages (#15383)
     add 5566174  Update CODEOWNERS file for Documentation (#15387)
     add 54adc44  Revert "Fix Helm GitSync dag volume mount from pod-template-file (#15331)" (#15390)
     add f649905  fix docstring typos (#15392)
     add d7bc217  Add documentation for the HTTP connection (#15379)

No new revisions were added by this update.

Summary of changes:
 .github/CODEOWNERS                                 |  18 ++-
 .github/actions/label-when-approved-action         |   2 +-
 .../workflows/label_when_reviewed_workflow_run.yml |   1 +
 UPDATING.md                                        |   6 +-
 airflow/config_templates/config.yml                |   2 +-
 airflow/config_templates/default_airflow.cfg       |   2 +-
 airflow/hooks/base.py                              |  12 +-
 airflow/kubernetes/kube_client.py                  |  10 +-
 airflow/models/connection.py                       |  19 ++-
 airflow/providers/amazon/aws/hooks/s3.py           |   8 +-
 .../cncf/kubernetes/operators/kubernetes_pod.py    |   5 +-
 .../providers/google/cloud/operators/dataflow.py   |  22 ++--
 airflow/providers/http/hooks/http.py               |   6 +-
 airflow/providers/http/operators/http.py           |   3 +-
 airflow/providers/http/sensors/http.py             |   3 +-
 airflow/providers/postgres/hooks/postgres.py       |   1 +
 airflow/providers/sftp/hooks/sftp.py               |   7 --
 airflow/www/package.json                           |   2 -
 airflow/www/yarn.lock                              |   4 +-
 chart/files/pod-template-file.kubernetes-helm-yaml |   1 +
 dev/README_RELEASE_PROVIDER_PACKAGES.md            |  54 ++++-----
 dev/provider_packages/prepare_provider_packages.py |   5 +-
 .../connections/http.rst                           |  68 +++++++++++
 docs/apache-airflow-providers-http/index.rst       |   1 +
 docs/apache-airflow/howto/connection.rst           |  68 ++++++++---
 tests/models/test_connection.py                    |  61 +++++++++-
 .../kubernetes/operators/test_kubernetes_pod.py    | 130 +++++++++++++++++++++
 tests/providers/postgres/hooks/test_postgres.py    |   2 +-
 tests/secrets/test_local_filesystem.py             |  41 ++++---
 29 files changed, 447 insertions(+), 117 deletions(-)
 create mode 100644 docs/apache-airflow-providers-http/connections/http.rst