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/17 02:03:30 UTC

[airflow] tag nightly-master updated (d7bc217 -> 49cae1f)

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 d7bc217  (commit)
      to 49cae1f  (commit)
    from d7bc217  Add documentation for the HTTP connection (#15379)
     add d115040  Bugfix: ``TypeError`` when Serializing & sorting iterables (#15395)
     add f94effe  Don't try to push the python build image when building on release branches (#15394)
     add e7c642b  Adds a test for the description field in variable  (#15400)
     add 54edbaa  Share app instance between Kerberos tests (#15141)
     add adbab36  Add changelog for what will become 2.0.2 (#15380)
     add cb1344b  Update azure connection documentation (#15352)
     add f878ec6  Persist tags params in pagination (#15411)
     add 49cae1f  Add documentation for Databricks connection (#15410)

No new revisions were added by this update.

Summary of changes:
 .github/workflows/ci.yml                           | 13 +++
 CHANGELOG.txt                                      | 97 +++++++++++++++++++++-
 UPDATING.md                                        |  3 +
 airflow/providers/databricks/hooks/databricks.py   |  2 +-
 .../providers/databricks/operators/databricks.py   |  4 +-
 airflow/providers/microsoft/azure/hooks/adx.py     |  3 +-
 .../providers/microsoft/azure/hooks/azure_batch.py |  4 +
 .../azure/hooks/azure_container_instance.py        |  6 +-
 .../azure/hooks/azure_container_registry.py        |  5 +-
 .../azure/hooks/azure_container_volume.py          |  4 +-
 .../microsoft/azure/hooks/azure_cosmos.py          |  3 +-
 .../microsoft/azure/hooks/azure_data_factory.py    |  4 +-
 .../microsoft/azure/hooks/azure_data_lake.py       |  2 +-
 .../microsoft/azure/hooks/azure_fileshare.py       |  2 +-
 .../providers/microsoft/azure/hooks/base_azure.py  |  5 +-
 airflow/providers/microsoft/azure/hooks/wasb.py    |  2 +-
 .../microsoft/azure/operators/adls_delete.py       |  2 +
 .../microsoft/azure/operators/adls_list.py         |  3 +-
 airflow/providers/microsoft/azure/operators/adx.py |  3 +-
 .../microsoft/azure/operators/azure_batch.py       |  2 +-
 .../azure/operators/azure_container_instances.py   |  3 +-
 .../microsoft/azure/operators/azure_cosmos.py      |  3 +-
 .../microsoft/azure/operators/wasb_delete_blob.py  |  2 +-
 .../microsoft/azure/sensors/azure_cosmos.py        |  3 +-
 airflow/providers/microsoft/azure/sensors/wasb.py  |  2 +-
 airflow/serialization/serialized_objects.py        |  9 +-
 airflow/www/utils.py                               | 21 +++--
 airflow/www/views.py                               |  1 +
 .../connections/databricks.rst                     | 73 ++++++++++++++++
 docs/apache-airflow-providers-databricks/index.rst |  1 +
 .../connections/acr.rst                            | 62 ++++++++++++++
 .../connections/adf.rst                            | 72 ++++++++++++++++
 .../connections/adl.rst                            | 70 ++++++++++++++++
 .../connections/adx.rst                            | 96 +++++++++++++++++++++
 .../connections/azure.rst                          |  4 +-
 .../connections/azure_batch.rst                    | 65 +++++++++++++++
 .../connections/azure_cosmos.rst                   | 66 +++++++++++++++
 .../connections/index.rst                          |  0
 .../connections/wasb.rst                           | 84 +++++++++++++++++++
 .../index.rst                                      |  2 +-
 docs/spelling_wordlist.txt                         |  2 +
 scripts/ci/images/ci_prepare_prod_image_on_ci.sh   | 10 ++-
 scripts/ci/libraries/_build_images.sh              |  1 -
 scripts/ci/libraries/_push_pull_remove_images.sh   |  5 +-
 tests/api/auth/backend/test_kerberos_auth.py       | 38 +++++----
 tests/serialization/test_dag_serialization.py      | 36 ++++++--
 tests/www/test_utils.py                            |  9 +-
 tests/www/test_views.py                            | 14 +++-
 48 files changed, 846 insertions(+), 77 deletions(-)
 create mode 100644 docs/apache-airflow-providers-databricks/connections/databricks.rst
 create mode 100644 docs/apache-airflow-providers-microsoft-azure/connections/acr.rst
 create mode 100644 docs/apache-airflow-providers-microsoft-azure/connections/adf.rst
 create mode 100644 docs/apache-airflow-providers-microsoft-azure/connections/adl.rst
 create mode 100644 docs/apache-airflow-providers-microsoft-azure/connections/adx.rst
 create mode 100644 docs/apache-airflow-providers-microsoft-azure/connections/azure_batch.rst
 create mode 100644 docs/apache-airflow-providers-microsoft-azure/connections/azure_cosmos.rst
 copy docs/{apache-airflow-providers-google => apache-airflow-providers-microsoft-azure}/connections/index.rst (100%)
 create mode 100644 docs/apache-airflow-providers-microsoft-azure/connections/wasb.rst