You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by ka...@apache.org on 2020/08/11 14:23:46 UTC

[airflow] branch master updated (82f744b -> 422e3f1)

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

kamilbregula pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/airflow.git.


    from 82f744b  Add type annotations to AwsGlueJobHook, RedshiftHook modules (#10286)
     add 422e3f1  Add Authentication for Stable API (#10267)

No new revisions were added by this update.

Summary of changes:
 airflow/api_connexion/endpoints/config_endpoint.py |   2 +
 .../api_connexion/endpoints/connection_endpoint.py |   6 +
 airflow/api_connexion/endpoints/dag_endpoint.py    |   5 +
 .../api_connexion/endpoints/dag_run_endpoint.py    |   6 +
 .../api_connexion/endpoints/dag_source_endpoint.py |   2 +
 .../api_connexion/endpoints/event_log_endpoint.py  |   3 +
 .../api_connexion/endpoints/extra_link_endpoint.py |   2 +
 .../endpoints/import_error_endpoint.py             |   3 +
 airflow/api_connexion/endpoints/log_endpoint.py    |   2 +
 airflow/api_connexion/endpoints/pool_endpoint.py   |   6 +
 airflow/api_connexion/endpoints/task_endpoint.py   |   3 +
 .../endpoints/task_instance_endpoint.py            |   5 +
 .../api_connexion/endpoints/variable_endpoint.py   |   6 +
 airflow/api_connexion/endpoints/xcom_endpoint.py   |   3 +
 .../default.py => api_connexion/security.py}       |  17 +--
 .../endpoints/test_config_endpoint.py              |  38 ++++-
 .../endpoints/test_connection_endpoint.py          | 118 ++++++++++++---
 tests/api_connexion/endpoints/test_dag_endpoint.py |  85 +++++++++--
 .../endpoints/test_dag_run_endpoint.py             | 150 ++++++++++++++++---
 .../endpoints/test_dag_source_endpoint.py          |  58 ++++++--
 .../endpoints/test_event_log_endpoint.py           |  62 +++++++-
 .../endpoints/test_extra_link_endpoint.py          |  29 +++-
 .../endpoints/test_import_error_endpoint.py        |  61 +++++++-
 tests/api_connexion/endpoints/test_log_endpoint.py |  56 +++++--
 .../api_connexion/endpoints/test_pool_endpoint.py  | 111 +++++++++++---
 .../api_connexion/endpoints/test_task_endpoint.py  |  42 +++++-
 .../endpoints/test_task_instance_endpoint.py       |  28 +++-
 .../endpoints/test_variable_endpoint.py            | 163 +++++++++++++++++----
 .../endpoints/test_version_endpoint.py             |   6 +-
 .../api_connexion/endpoints/test_xcom_endpoint.py  | 133 +++++++++++------
 .../test_utils/api_connexion_utils.py              |  38 +++--
 .../test_utils/remote_user_api_auth_backend.py     |  34 +++++
 .../test_remote_user_api_auth_backend.py}          |  69 ++-------
 33 files changed, 1069 insertions(+), 283 deletions(-)
 copy airflow/{api/auth/backend/default.py => api_connexion/security.py} (77%)
 copy airflow/www/extensions/init_appbuilder_links.py => tests/test_utils/api_connexion_utils.py (50%)
 copy airflow/api/auth/backend/default.py => tests/test_utils/remote_user_api_auth_backend.py (61%)
 copy tests/{providers/google/common/auth_backend/test_google_openid.py => test_utils/test_remote_user_api_auth_backend.py} (51%)