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 2248a5d  (commit)
      to 87d83a1  (commit)
    from 2248a5d  Expose option: look_for_keys in ssh_hook via extras (#8793)
     add ae171f2  Add unit tests for PigOperator (#9560)
     add 40add26  Remove almost all references to airflow.contrib (#9559)
     add 6b18ed4  Detect references to deprecated classes in 
test_core_to_contrib.py (#9553)
     add 57c722b  Fix the default value for store_dag_code (#9554)
     add ee03353  Fix failing test in DagCode (#9565)
     add e1108d4  Allow changing Task States Colors (#9520)
     add 1c48ffb  Reload gunicorn when plugins has beeen changed (#8997)
     add 067806d  Add tests for spark_jdbc_script (#9491)
     add ada8366  "build-essential" are needed for proper install on Linux 
(#9573)
     add 9858294  Fix failing tests from #8997 (#9576)
     add bb2f3fe  Raise exception on invalid type in pre_commit_yaml_to_cfg.py 
(#9577)
     add 656c48d  Add docs about reload_on_plugin_change opiton (#9575)
     add ce4c229  Add docs on using DAGRun.conf (#9578)
     add a2cf5a0  Fix typo in password (#9579)
     add d214f8d  Fix typos in cloud_memorystore.rst (#9581)
     add 59035a0  Add log endpoint (#9331)
     add 22fbd0f  Add CRUD Endpoints for pools (#9329)
     add ac070cf  Remove PATCH /dags/{dag_id}/dagRuns/{dag_run_id} 
endpoint(#9476)
     add af14fb2  Add TruFactor to Airflow users list (#9584)
     add d0e010f  Add XCom.get_one() method back (#9580)
     add 4de5089  Add more info on dry-run CLI option (#9582)
     add 7f70f6f  Use pfromat instead of str to render arguments in WebUI 
(#9587)
     add b6c27f2  Change worker_refresh_interval fallback to default of 30 
(#9588)
     add e33f1a1  Add template_ext to BigQueryInsertJobOperator (#9568)
     add 4799af3  Extend BigQuery example with include clause (#9572)
     add f429c3c  Fix failing test in test_webserver_command (#9589)
     add d6b323b  Remove redundant airflowVersion from Helm Chart readme (#9592)
     add bbfaafe  Fix broken link in chart/README.md (#9591)
     add 87d83a1  Fix regression in SQLThresholdCheckOperator (#9312)

No new revisions were added by this update.

Summary of changes:
 .pre-commit-config.yaml                            |   7 +-
 README.md                                          |   1 +
 UPDATING.md                                        |   4 -
 .../api_connexion/endpoints/dag_run_endpoint.py    |   7 -
 airflow/api_connexion/endpoints/log_endpoint.py    |  69 +++-
 airflow/api_connexion/endpoints/pool_endpoint.py   |  93 ++++-
 airflow/api_connexion/openapi/v1.yaml              |  34 +-
 .../schemas/{version_schema.py => log_schema.py}   |  18 +-
 airflow/api_connexion/schemas/pool_schema.py       |  10 +-
 airflow/cli/cli_parser.py                          |   2 +-
 airflow/cli/commands/webserver_command.py          | 373 ++++++++++++++-------
 airflow/config_templates/config.yml                |  12 +-
 airflow/config_templates/default_airflow.cfg       |   7 +-
 airflow/contrib/operators/gcp_dlp_operator.py      |  16 +-
 airflow/models/connection.py                       |   2 +-
 airflow/models/dag.py                              |   4 +-
 airflow/models/dagcode.py                          |   4 +-
 airflow/models/xcom.py                             |  41 +++
 airflow/operators/presto_check_operator.py         |  24 +-
 airflow/operators/sql.py                           |   6 +-
 airflow/providers/amazon/aws/hooks/sagemaker.py    |   6 +-
 .../apache/spark/hooks/spark_jdbc_script.py        |  27 +-
 .../cloud/example_dags/example_bigquery_queries.py |  18 +-
 .../cloud/example_dags/example_bigquery_query.sql} |   6 +-
 airflow/providers/google/cloud/hooks/vision.py     |   2 +-
 .../providers/google/cloud/operators/bigquery.py   |   7 +
 .../providers/google/cloud/transfers/s3_to_gcs.py  |   2 +-
 .../cloud/utils/mlengine_prediction_summary.py     |   3 +-
 airflow/settings.py                                |  19 ++
 airflow/utils/dag_processing.py                    |   4 +-
 airflow/utils/state.py                             |   3 +
 airflow/www/extensions/init_jinja_globals.py       |   2 +
 airflow/www/templates/airflow/gantt.html           |   7 +
 airflow/www/templates/airflow/graph.html           |  18 +-
 airflow/www/templates/airflow/master.html          |   7 +
 airflow/www/templates/airflow/tree.html            |  28 +-
 airflow/www/views.py                               |   4 +-
 chart/README.md                                    |   3 +-
 docs/conf.py                                       |   3 -
 docs/dag-run.rst                                   |  37 ++
 docs/exts/docroles.py                              |   3 +-
 docs/howto/operator/gcp/bigquery.rst               |  13 +-
 docs/howto/operator/gcp/cloud_memorystore.rst      |   4 +-
 docs/img/example_passing_conf.png                  | Bin 0 -> 97482 bytes
 docs/installation.rst                              |  11 +
 docs/operators-and-hooks-ref.rst                   |   2 +-
 docs/plugins.rst                                   |   9 +
 requirements/requirements-python3.6.txt            |  20 +-
 requirements/requirements-python3.7.txt            |  20 +-
 requirements/requirements-python3.8.txt            |  20 +-
 scripts/ci/pre_commit_yaml_to_cfg.py               |  95 +++---
 .../endpoints/test_dag_run_endpoint.py             |   7 -
 tests/api_connexion/endpoints/test_log_endpoint.py | 253 +++++++++++++-
 .../api_connexion/endpoints/test_pool_endpoint.py  | 341 ++++++++++++++++++-
 tests/api_connexion/schemas/test_pool_schemas.py   |   2 +-
 tests/cli/commands/test_webserver_command.py       | 190 +++++++++--
 tests/deprecated_classes.py                        |   6 +-
 tests/models/test_cleartasks.py                    |  56 ++++
 tests/models/test_dagcode.py                       |   6 +
 tests/operators/test_sql.py                        |  12 +-
 .../hooks => apache/pig/operators}/__init__.py     |   0
 tests/providers/apache/pig/operators/test_pig.py   |  67 ++++
 .../apache/spark/hooks/test_spark_jdbc_script.py   | 200 +++++++++++
 tests/providers/ftp/hooks/test_ftp.py              |   2 +-
 tests/task/task_runner/test_cgroup_task_runner.py  |   2 +-
 tests/test_configuration.py                        |  19 ++
 tests/test_core_to_contrib.py                      |  21 ++
 tests/test_project_structure.py                    |   2 -
 tests/www/test_views.py                            |   3 +-
 69 files changed, 1927 insertions(+), 399 deletions(-)
 copy airflow/api_connexion/schemas/{version_schema.py => log_schema.py} (73%)
 copy airflow/{www/templates/appbuilder/index.html => 
providers/google/cloud/example_dags/example_bigquery_query.sql} (94%)
 create mode 100644 docs/img/example_passing_conf.png
 copy tests/providers/{zendesk/hooks => apache/pig/operators}/__init__.py (100%)
 create mode 100644 tests/providers/apache/pig/operators/test_pig.py
 create mode 100644 tests/providers/apache/spark/hooks/test_spark_jdbc_script.py

Reply via email to