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/01/06 08:44:51 UTC

[airflow] tag nightly-master updated (d6e1d7b -> c2ead47)

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 d6e1d7b  (commit)
      to c2ead47  (commit)
    from d6e1d7b  Replace deprecated decorator (#13443)
     add 4f494d4  Fix few typos (#13450)
     add 5f81fc7  Fix: Remove password if in LDAP or CUSTOM mode HiveServer2Hook (#11767)
     add 6ef23af  Streamline & simplify __eq__ methods in models Dag and BaseOperator (#13449)
     add 429e54c  Add support for no-menu plugin views (#11742)
     add 35e4a3b  GitHub PROD image build is pushed to GitHub Registry. (#13442)
     add 3a3e739  Fix insert_all method of BigQueryHook to support tables without schema (#13138)
     add 4437137  Replace tests-only dependency - tzlocal (#13413)
     add 523e2f4  Additional properties should be allowed in provider schema (#13440)
     add 3341d21  Add docker health check to integrations (#13446)
     add 59ccb7d  Fix installation doc (#13462)
     add b955e34  Remove unused dependency - contextdecorator (#13455)
     add feb8405  Support google-cloud-datacatalog 3.0.0 (#13224)
     add 43b2d33  Log migrations info in consisten way (#13458)
     add 1500083  Rewrite handwritten argument parser in prepare_provider_packages.py (#13234)
     add dd78ad0  Remove redundant word (#13466)
     add 10c84b5  Upgrade pre-commit hooks (#13465)
     add 891fb2d  Fix typo in TaskGroup docstrings (#13475)
     add 27449ba  Replace dictionary creation with dictionary literal (#13474)
     add 62b82fe  Remove 'typing' dependency (#13472)
     add c7d75ad  Revert "Support google-cloud-datacatalog 3.0.0 (#13224)" (#13482)
     add 7d1ea4c  Replace deprecated module and operator in example_tasks.py (#13473)
     add e071834  Update supported Python version in LOCAL_VIRTUALENV.rst (#13468)
     add 07670ec  Fix webserver ingress annotations (#12619)
     add f40b4ba  Jeremiah Lowin has resigned from the Airflow project (#13486)
     add 0fd5807  Add Vikram in the Airflow Committer's list (#13489)
     add 003584b  Fix failing backport packages test (#13497)
     add b213dbe  Check for minimum version of Sqlite (#13496)
     add c2ead47  Chart: Add custom_airflow_environment to flower container (#12630)

No new revisions were added by this update.

Summary of changes:
 .github/workflows/ci.yml                           |  51 +++-
 .pre-commit-config.yaml                            |   4 +-
 LOCAL_VIRTUALENV.rst                               |   4 +-
 README.md                                          |   9 +-
 airflow/configuration.py                           |  14 +-
 .../customized_form_field_behaviours.schema.json   |   4 +-
 .../provider-2.0.0.yaml.schema.json}               |   4 -
 .../2c6edca13270_resource_based_permissions.py     |   5 +
 airflow/models/baseoperator.py                     |   8 +-
 airflow/models/dag.py                              |   3 +-
 airflow/provider.yaml.schema.json                  |  12 +-
 airflow/providers/apache/hive/hooks/hive.py        |   9 +-
 .../google/cloud/example_dags/example_tasks.py     |   2 +-
 airflow/providers/google/cloud/hooks/bigquery.py   |  10 +-
 airflow/utils/log/file_processor_handler.py        |   3 +-
 airflow/utils/task_group.py                        |   2 +-
 airflow/www/extensions/init_views.py               |  10 +-
 breeze                                             |   2 +
 chart/README.md                                    |   2 +-
 chart/templates/flower/flower-deployment.yaml      |   1 +
 chart/templates/webserver/webserver-ingress.yaml   |  16 +-
 chart/tests/helm_template_generator.py             |   2 +-
 ...es_pod_launcher_role.py => test_ingress_web.py} |  20 +-
 dev/provider_packages/prepare_provider_packages.py | 294 +++++++++++++--------
 docs/apache-airflow/installation.rst               |  26 +-
 docs/apache-airflow/plugins.rst                    |  18 +-
 docs/apache-airflow/project.rst                    |   2 +-
 docs/spelling_wordlist.txt                         |   3 +
 scripts/ci/docker-compose/backend-mysql.yml        |  11 +-
 scripts/ci/docker-compose/backend-postgres.yml     |  10 +-
 .../ci/docker-compose/integration-cassandra.yml    |  11 +-
 scripts/ci/docker-compose/integration-kerberos.yml |  18 +-
 scripts/ci/docker-compose/integration-mongo.yml    |  11 +-
 scripts/ci/docker-compose/integration-openldap.yml |  11 +-
 scripts/ci/docker-compose/integration-pinot.yml    |   9 +-
 scripts/ci/docker-compose/integration-presto.yml   |   9 +-
 scripts/ci/docker-compose/integration-rabbitmq.yml |  11 +-
 scripts/ci/docker-compose/integration-redis.yml    |  11 +-
 scripts/ci/images/ci_prepare_prod_image_on_ci.sh   |  10 +-
 scripts/in_container/run_ci_tests.sh               |   4 +-
 .../in_container/run_prepare_provider_packages.sh  |   2 +-
 setup.cfg                                          |   2 -
 setup.py                                           |   2 +-
 tests/plugins/test_plugin.py                       |   2 +
 tests/plugins/test_plugins_manager.py              |  17 ++
 tests/providers/amazon/aws/hooks/test_sagemaker.py |   4 +-
 .../providers/google/cloud/hooks/test_bigquery.py  |   7 +-
 47 files changed, 490 insertions(+), 212 deletions(-)
 copy airflow/{provider.yaml.schema.json => deprecated_schemas/provider-2.0.0.yaml.schema.json} (96%)
 copy chart/tests/{test_celery_kubernetes_pod_launcher_role.py => test_ingress_web.py} (58%)