You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by as...@apache.org on 2020/10/23 15:51:29 UTC

[airflow] 01/01: Merge branch 'u15' into v1-10-stable

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

ash pushed a commit to branch v1-10-stable
in repository https://gitbox.apache.org/repos/asf/airflow.git

commit 9c684539601a9d7831636302891a7733cac6b85b
Merge: 87038ae 0e6e13db
Author: Ash Berlin-Taylor <as...@firemirror.com>
AuthorDate: Fri Oct 23 16:40:55 2020 +0100

    Merge branch 'u15' into v1-10-stable
    
    Closes #11719, #11759, #11760, #11761, #11762, #11763, #11764, #11765,
     #11766, #11771, #11772, #11773, #11774, #11775, #11776, #11777

 airflow/bin/cli.py                                 |  31 ++++-
 airflow/upgrade/__init__.py                        |  16 +++
 airflow/upgrade/checker.py                         |  38 ++++++
 airflow/upgrade/formatters.py                      | 129 +++++++++++++++++++++
 airflow/upgrade/problem.py                         |  45 +++++++
 airflow/upgrade/rules/__init__.py                  |  34 ++++++
 .../upgrade/rules/airflow_macro_plugin_removed.py  |  53 +++++++++
 airflow/upgrade/rules/base_rule.py                 |  37 ++++++
 airflow/upgrade/rules/conn_id_is_unique.py         |  45 +++++++
 airflow/upgrade/rules/conn_type_is_not_nullable.py |  42 +++++++
 airflow/upgrade/rules/fernet_enabled.py            |  39 +++++++
 .../upgrade/rules/gcp_service_account_keys_rule.py |  39 +++++++
 .../upgrade/rules/invalid_kubernetes_configs.py    |  69 +++++++++++
 airflow/upgrade/rules/legacy_ui_deprecated.py      |  36 ++++++
 airflow/upgrade/rules/logging_configuration.py     |  82 +++++++++++++
 airflow/upgrade/rules/pod_template_file_rule.py    |  39 +++++++
 airflow/upgrade/rules/send_grid_moved.py           |  38 ++++++
 airflow/upgrade/rules/task_handlers_moved.py       |  67 +++++++++++
 airflow/utils/cli.py                               |  23 ++++
 docs/conf.py                                       |   1 +
 tests/test_utils/config.py                         |   1 +
 tests/upgrade/__init__.py                          |  16 +++
 tests/upgrade/rules/__init__.py                    |  16 +++
 .../rules/test_airflow_macro_plugin_removed.py     |  68 +++++++++++
 tests/upgrade/rules/test_base_rule.py              |  27 +++++
 tests/upgrade/rules/test_conn_id_is_unique.py      |  43 +++++++
 .../rules/test_conn_type_is_not_nullable.py        |  41 +++++++
 tests/upgrade/rules/test_fernet_enabled.py         |  47 ++++++++
 .../rules/test_gcp_service_account_key_rule.py     |  48 ++++++++
 tests/upgrade/rules/test_legacy_ui_deprecated.py   |  46 ++++++++
 tests/upgrade/rules/test_logging_configuration.py  |  78 +++++++++++++
 tests/upgrade/rules/test_send_grid_moved.py        |  47 ++++++++
 tests/upgrade/rules/test_task_handlers_moved.py    |  68 +++++++++++
 tests/upgrade/test_formattes.py                    |  54 +++++++++
 tests/upgrade/test_problem.py                      |  35 ++++++
 35 files changed, 1533 insertions(+), 5 deletions(-)