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

ephraimanierobi pushed a change to branch v2-3-test
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard c9eeddf993 Update version to 2.3.2 and add release notes
     add e4caa10371 Make provider doc preparation a bit more fun :) (#23629)
     add 25931dbcff Change chart annotation generator to use RELEASE_NOTES 
(#23549)
     add b11bb985f8 Add tool to automaticaly update status of AIP-47 issues. 
(#23745)
     add 4a96bd6219 Add Deferrable Databricks operators (#19736)
     add 37a5696de4 Fix Breeze documentation typo (#23919)
     add 48efec10b2 Add exception to catch single line private keys (#23043)
     add 54cad993e0 Introduce `flake8-implicit-str-concat` plugin to static 
checks (#23873)
     add f1e19f2ba1 Update version to 2.3.2 and add release notes

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (c9eeddf993)
            \
             N -- N -- N   refs/heads/v2-3-test (f1e19f2ba1)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 airflow/configuration.py                           |   2 +-
 airflow/providers/amazon/aws/hooks/eks.py          |   2 +-
 airflow/providers/amazon/aws/hooks/ses.py          |   2 +-
 airflow/providers/amazon/aws/hooks/sns.py          |   2 +-
 airflow/providers/amazon/aws/hooks/sqs.py          |   2 +-
 airflow/providers/databricks/hooks/databricks.py   |  29 ++
 .../providers/databricks/hooks/databricks_base.py  | 237 +++++++++++++-
 .../providers/databricks/operators/databricks.py   | 106 +++++--
 .../databricks/operators/databricks_repos.py       |   2 +-
 .../databricks/triggers}/__init__.py               |   0
 .../providers/databricks/triggers/databricks.py    |  77 +++++
 .../databricks/utils}/__init__.py                  |   0
 airflow/providers/databricks/utils/databricks.py   |  69 ++++
 .../google/cloud/hooks/kubernetes_engine.py        |   6 +-
 .../google/cloud/utils/credentials_provider.py     |   2 +-
 airflow/providers/microsoft/psrp/operators/psrp.py |   2 +-
 airflow/providers/ssh/hooks/ssh.py                 |   3 +
 airflow/utils/email.py                             |   2 +-
 airflow/utils/file.py                              |   2 +-
 airflow/www/fab_security/manager.py                |   8 +-
 airflow/www/views.py                               |   2 +-
 dev/breeze/README.md                               |   4 +-
 .../airflow_breeze/utils/docker_command_utils.py   |   2 +-
 dev/breeze/src/airflow_breeze/utils/image.py       |   4 +-
 dev/breeze/src/airflow_breeze/utils/run_utils.py   |   2 +-
 dev/chart/build_changelog_annotations.py           |  13 +-
 dev/provider_packages/prepare_provider_packages.py | 129 +++++---
 {clients => dev/system_tests}/README.md            |  27 +-
 dev/system_tests/update_issue_status.py            | 185 +++++++++++
 .../operators/run_now.rst                          |   7 +
 .../operators/submit_run.rst                       |   7 +
 .../run_prepare_provider_documentation.sh          |  15 +-
 setup.py                                           |   3 +
 tests/always/test_connection.py                    |   2 +-
 .../endpoints/test_task_instance_endpoint.py       |   4 +-
 tests/core/test_providers_manager.py               |   2 +-
 tests/providers/amazon/aws/hooks/test_glacier.py   |  12 +-
 .../providers/databricks/hooks/test_databricks.py  | 352 ++++++++++++++++++++-
 .../databricks/operators/test_databricks.py        | 243 +++++++++++---
 .../providers/databricks/triggers}/__init__.py     |   0
 .../databricks/triggers/test_databricks.py         | 153 +++++++++
 .../providers/databricks/utils}/__init__.py        |   0
 tests/providers/databricks/utils/databricks.py     |  62 ++++
 .../google/cloud/hooks/test_datacatalog.py         |   4 +-
 .../google/cloud/operators/test_datacatalog.py     |   4 +-
 .../google/cloud/operators/test_mlengine.py        |   4 +-
 .../google/cloud/transfers/test_mysql_to_gcs.py    |   6 +-
 .../cloud/utils/test_credentials_provider.py       |   8 +-
 .../google/common/hooks/test_base_google.py        |   2 +-
 tests/providers/ssh/hooks/test_ssh.py              |  18 ++
 .../google/bigquery/example_bigquery_sensors.py    |   2 +-
 tests/utils/test_file.py                           |   7 +-
 52 files changed, 1622 insertions(+), 218 deletions(-)
 copy airflow/{api/auth => providers/databricks/triggers}/__init__.py (100%)
 create mode 100644 airflow/providers/databricks/triggers/databricks.py
 copy airflow/{api_connexion => providers/databricks/utils}/__init__.py (100%)
 create mode 100644 airflow/providers/databricks/utils/databricks.py
 copy {clients => dev/system_tests}/README.md (54%)
 create mode 100755 dev/system_tests/update_issue_status.py
 copy {airflow/api/auth => tests/providers/databricks/triggers}/__init__.py 
(100%)
 create mode 100644 tests/providers/databricks/triggers/test_databricks.py
 copy {airflow/api_connexion => tests/providers/databricks/utils}/__init__.py 
(100%)
 create mode 100644 tests/providers/databricks/utils/databricks.py

Reply via email to