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 5805a36 (commit)
to 892960d (commit)
from 5805a36 Fix SqlAlchemy-Flask failure with python 3.8.4 (#9821)
add 4a547ee Add API Reference docs (redoc) to sphinx (#9806)
add 9f01795 Add Google Deployment Manager Hook (#9159)
add a0493bd Remove HTTP guide index in docs (#9796)
add 35fe972 Improve type hinting to provider cloudant (#9825)
add 52b6efe Add option to delete by prefix to S3DeleteObjectsOperator
(#9350)
add 2d8dbac Add CloudVisionDeleteReferenceImageOperator (#9698)
add ea0d274 Add note in Updating.md about the change in `run_as_user`
default (#9822)
add cccc76a Improve typing in airflow/models/pool.py (#9835)
add 7b23d4d Remove global variable with API auth backend (#9833)
add 2d12441 Fix Writing Serialized Dags to DB (#9836)
add 4aca72e Update gcp to google in docs (#9839)
add 770de53 BigQueryTableExistenceSensor needs to specify keyword
arguments (#9832)
add 6d65c15 Add guide for AI Platform (previously Machine Learning
Engine) Operators (#9798)
add b01d95e Change DAG.clear to take dag_run_state (#9824)
add d008ff6 Rename DagBag.store_serialized_dags to
Dagbag.read_dags_from_db (#9838)
add 1e24051 Update more occurrences of gcp to google (#9842)
add 892960d Add Dynata to the Airflow users list (#9846)
No new revisions were added by this update.
Summary of changes:
LOCAL_VIRTUALENV.rst | 6 +-
README.md | 5 +-
UPDATING.md | 56 +++++
airflow/api/__init__.py | 11 +-
airflow/api/auth/backend/default.py | 5 +-
airflow/api/client/__init__.py | 2 +-
airflow/api/common/experimental/__init__.py | 2 +-
airflow/api/common/experimental/trigger_dag.py | 2 +-
airflow/cli/commands/dag_command.py | 4 +-
airflow/models/dag.py | 55 ++---
airflow/models/dagbag.py | 51 +++--
airflow/models/pool.py | 31 ++-
.../amazon/aws/operators/s3_delete_objects.py | 18 +-
airflow/providers/cloudant/hooks/cloudant.py | 6 +-
.../cloud/example_dags/example_datafusion.py | 3 +-
.../google/cloud/example_dags/example_gcs.py | 3 +-
.../google/cloud/example_dags/example_mlengine.py | 30 +++
.../google/cloud/example_dags/example_vision.py | 36 +++-
airflow/providers/google/cloud/hooks/gdm.py | 100 +++++++++
airflow/providers/google/cloud/hooks/vision.py | 2 +-
.../providers/google/cloud/operators/mlengine.py | 36 ++++
airflow/providers/google/cloud/operators/vision.py | 80 +++++++
airflow/providers/google/cloud/sensors/bigquery.py | 5 +-
.../example_dags/example_campaign_manager.py | 3 +-
airflow/settings.py | 3 -
airflow/www/api/experimental/endpoints.py | 17 +-
airflow/www/extensions/init_dagbag.py | 2 +-
airflow/www/extensions/init_security.py | 26 ++-
airflow/www/extensions/init_views.py | 7 -
docs/build | 1 -
docs/conf.py | 23 ++
docs/exts/sphinx_script_update.py | 113 ++++++++++
docs/howto/operator/google/cloud/mlengine.rst | 233 +++++++++++++++++++++
docs/howto/operator/google/cloud/vision.rst | 64 +++++-
docs/howto/operator/{http => }/http.rst | 4 +-
docs/howto/operator/http/index.rst | 32 ---
docs/howto/operator/index.rst | 2 +-
docs/index.rst | 1 +
docs/operators-and-hooks-ref.rst | 12 +-
docs/redirects.txt | 4 +
docs/rest-api-ref.rst | 6 +-
.../google/index.rst => stable-rest-api/redoc.rst} | 18 +-
requirements/requirements-python3.6.txt | 1 +
requirements/requirements-python3.7.txt | 4 +-
requirements/requirements-python3.8.txt | 4 +-
requirements/setup-3.6.md5 | 2 +-
requirements/setup-3.7.md5 | 2 +-
requirements/setup-3.8.md5 | 2 +-
setup.py | 1 +
tests/api_connexion/endpoints/test_dag_endpoint.py | 2 +-
.../api_connexion/endpoints/test_task_endpoint.py | 2 +-
tests/cli/commands/test_dag_command.py | 7 +-
tests/jobs/test_scheduler_job.py | 12 +-
tests/models/test_dag.py | 60 +++++-
tests/models/test_dagbag.py | 31 ++-
.../amazon/aws/operators/test_s3_delete_objects.py | 30 +++
tests/providers/google/cloud/hooks/test_gdm.py | 100 +++++++++
.../google/cloud/operators/test_vision.py | 34 ++-
.../google/cloud/sensors/test_bigquery.py | 6 +-
59 files changed, 1220 insertions(+), 200 deletions(-)
create mode 100644 airflow/providers/google/cloud/hooks/gdm.py
create mode 100644 docs/exts/sphinx_script_update.py
create mode 100644 docs/howto/operator/google/cloud/mlengine.rst
rename docs/howto/operator/{http => }/http.rst (99%)
delete mode 100644 docs/howto/operator/http/index.rst
copy docs/{howto/operator/google/index.rst => stable-rest-api/redoc.rst} (80%)
create mode 100644 tests/providers/google/cloud/hooks/test_gdm.py