You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by bb...@apache.org on 2022/03/14 15:32:41 UTC

[airflow] branch scheduler-autorefresh-pause updated (d6b2726 -> 0d21e5c)

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

bbovenzi pushed a change to branch scheduler-autorefresh-pause
in repository https://gitbox.apache.org/repos/asf/airflow.git.


 discard d6b2726  fix test
 discard 716053f  pause autorefresh if scheduler isn't running
     add 42a891d  Update ``GKEDeleteClusterOperator`, ``GKECreateClusterOperator`` docstrings (#22212)
     add 9320230  fix contributing guide image master -> main (#22216)
     add a7e4730  Make code snippet appear again (#22163)
     add 69f5ab1  SFTP docs add example “extras” field using ``key_file``, ``private_key`` and ``host_key`` (#20757)
     add 4543539  Support Uploading Bigger Files to Google Drive (#22179)
     add a840561  AWS RDS integration fixes (#22125)
     add af9d85c  Skip some tests for Databricks from running on Python 3.10 (#22221)
     add c108f26  Change the default `chunk_size` to a clear representation & add documentation (#22222)
     add 12e9e2c  Databricks hook - retry on HTTP Status 429 as well (#21852)
     add 6f8f535  Add sample dags and update doc for RedshiftClusterSensor, RedshiftPauseClusterOperator and RedshiftResumeClusterOperator (#22128)
     add 3931394  Issue 20453 - Fixes the test_http and test_sheets assert calls only (#22104)
     add 408a7d6  Add REST API endpoint for bulk update of DAGs (#19758)
     add d3c65b6  Add the new Airflow Trove Classifier to setup.cfg (#22241)
     add 6fee5e0  Use variable for vote end date for helm chart release email (#22239)
     add 4677736  pause autorefresh if scheduler isn't running
     add 0d21e5c  fix test

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   (d6b2726)
            \
             N -- N -- N   refs/heads/scheduler-autorefresh-pause (0d21e5c)

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:
 CONTRIBUTORS_QUICK_START.rst                       |   3 +-
 airflow/api_connexion/endpoints/dag_endpoint.py    |  58 ++-
 airflow/api_connexion/openapi/v1.yaml              |  69 +++-
 .../amazon/aws/example_dags/example_rds.py         |  10 +-
 .../aws/example_dags/example_redshift_cluster.py   |  71 ++++
 airflow/providers/amazon/aws/operators/rds.py      |  20 +-
 airflow/providers/amazon/aws/sensors/rds.py        |  14 +-
 .../amazon/aws/sensors/redshift_cluster.py         |   4 +
 airflow/providers/databricks/hooks/databricks.py   |   4 +-
 .../providers/databricks/hooks/databricks_base.py  | 196 +++++-----
 .../providers/databricks/operators/databricks.py   |   8 +
 airflow/providers/databricks/provider.yaml         |   3 +
 .../google/cloud/operators/kubernetes_engine.py    |   4 +-
 airflow/providers/google/suite/hooks/drive.py      |  20 +-
 dev/README_RELEASE_HELM_CHART.md                   |  16 +-
 .../operators/redshift_cluster.rst                 |  67 +++-
 .../operators/run_now.rst                          |   2 +
 .../operators/submit_run.rst                       |   2 +
 .../connections/sftp.rst                           |  14 +-
 images/workflow.png                                | Bin 12677 -> 12318 bytes
 setup.cfg                                          |   1 +
 setup.py                                           |   2 +-
 tests/api_connexion/endpoints/test_dag_endpoint.py | 423 +++++++++++++++++++++
 tests/providers/amazon/aws/operators/test_rds.py   |  42 +-
 tests/providers/amazon/aws/sensors/test_rds.py     |  20 +-
 .../providers/databricks/hooks/test_databricks.py  |  61 ++-
 .../databricks/operators/test_databricks.py        |  45 ++-
 .../databricks/operators/test_databricks_sql.py    |   8 +-
 .../google/suite/operators/test_sheets.py          |   9 +-
 tests/providers/http/operators/test_http.py        |   6 +-
 30 files changed, 971 insertions(+), 231 deletions(-)
 create mode 100644 airflow/providers/amazon/aws/example_dags/example_redshift_cluster.py