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 2020/06/10 02:38:44 UTC

[airflow] tag nightly-master updated (7fd3695 -> 82c8343)

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 7fd3695  (commit)
      to 82c8343  (commit)
    from 7fd3695  Don't use the `|safe` filter in code, it's risky (#9180)
     add 337a2dc  Fixes failure of the build scripts when remote repo does not exist (#9188)
     add de9d340  Improved cloud tool available in the trimmed down CI container (#9167)
     add b1c8c5e  Allows using private endpoints in GKEStartPodOperator (#9169)
     add d8e5490  Update AWS connection example to show how to set from env var (#9191)
     add b762763  Query TaskReschedule only if task is UP_FOR_RESCHEDULE (#9087)
     add 7ad827f  Set conn_type as not-nullable (#9187)
     add efb86df  Call super.tearDown in SystemTest tearDown (#9196)
     add 6d4972a  Remove httplib2 from Google requirements (#9194)
     add c18f4c0  Fix typo in BREEZE.rst (#9199)
     add 82c8343  Support additional apt dependencies (#9189)

No new revisions were added by this update.

Summary of changes:
 BREEZE.rst                                         |  5 +-
 Dockerfile                                         | 12 +++-
 Dockerfile.ci                                      | 31 ++++-------
 IMAGES.rst                                         | 44 +++++++++++++++
 UPDATING.md                                        |  8 +++
 ... 8f966b9c467a_set_conn_type_as_non_nullable.py} | 21 ++++---
 airflow/models/connection.py                       |  2 +-
 airflow/models/taskinstance.py                     | 10 ++--
 airflow/models/taskreschedule.py                   | 31 ++++++++---
 .../google/cloud/operators/kubernetes_engine.py    | 36 +++++++++---
 airflow/ti_deps/deps/ready_to_reschedule.py        | 10 +++-
 breeze                                             |  1 +
 docs/concepts.rst                                  |  2 +-
 docs/howto/connection/aws.rst                      | 26 ++++++++-
 docs/howto/operator/gcp/kubernetes_engine.rst      | 18 +++++-
 requirements/requirements-python3.6.txt            | 56 +++++++++----------
 requirements/requirements-python3.7.txt            | 53 +++++++++---------
 requirements/requirements-python3.8.txt            | 55 +++++++++----------
 requirements/setup-3.6.md5                         |  2 +-
 requirements/setup-3.7.md5                         |  2 +-
 requirements/setup-3.8.md5                         |  2 +-
 scripts/ci/ci_docs.sh                              |  3 +
 scripts/ci/ci_fix_ownership.sh                     |  3 +
 scripts/ci/ci_flake8.sh                            |  6 ++
 scripts/ci/ci_mypy.sh                              |  3 +
 scripts/ci/ci_pylint_main.sh                       |  6 ++
 scripts/ci/ci_pylint_tests.sh                      |  6 ++
 scripts/ci/ci_refresh_pylint_todo.sh               |  3 +
 ...ci_test_backport_packages_import_all_classes.sh |  3 +
 ...ci_test_backport_packages_install_separately.sh |  3 +
 scripts/ci/docker-compose/forward-credentials.yml  |  2 +
 scripts/ci/docker-compose/local-prod.yml           |  2 +
 scripts/ci/docker-compose/local.yml                |  2 +
 scripts/ci/in_container/_in_container_utils.sh     | 16 ++++--
 scripts/ci/libraries/_build_images.sh              |  2 +-
 scripts/ci/libraries/_initialization.sh            |  7 +++
 scripts/ci/libraries/_runs.sh                      | 12 ++++
 scripts/ci/prepare_tool_scripts.sh                 | 64 ++++++++++++++++++++++
 setup.py                                           |  1 -
 tests/jobs/test_local_task_job.py                  |  2 +-
 .../cloud/operators/test_kubernetes_engine.py      | 49 ++++++++++++++++-
 tests/test_utils/system_tests_class.py             |  2 +-
 tests/ti_deps/deps/test_ready_to_reschedule_dep.py | 40 +++++++-------
 43 files changed, 485 insertions(+), 179 deletions(-)
 copy airflow/migrations/versions/{5e7d17757c7a_add_pid_field_to_taskinstance.py => 8f966b9c467a_set_conn_type_as_non_nullable.py} (61%)
 create mode 100755 scripts/ci/prepare_tool_scripts.sh