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 2021/01/29 20:00:50 UTC

[airflow] branch v2-0-test updated (d0f2500 -> 1f2efcb)

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

kaxilnaik pushed a change to branch v2-0-test
in repository https://gitbox.apache.org/repos/asf/airflow.git.


    from d0f2500  Add authentication to lineage endpoint for experimental API (#13870)
     add e4906e6  Update ``airflow_local_settings.py`` to fix an error message (#13927)
     add 4d2fc09  Update Mongodb inventory URL to fix docs build (#13939)
     add 22d7ec9  Updates Oracle.rst documentation (#13871)
     add f6e9d28  Don't add User role perms to custom roles. (#13856)
     add fd7d7da  Don't add Website.can_read access to default roles. (#13923)
     add c262ba3  Dropbox uses Airflow (#13956)
     add 8caa51c  Fix link in INTHEWILD.md (#13958)
     add 0e92cd8  Add information about all access methods to the environment (#13940)
     add 7b02edd  Fix invalid value error caused by long k8s pod name (#13299)
     add d0a42c1  Only allow passing JSON Serializable conf to TriggerDagRunOperator (#13964)
     add 442307c  Docs: Fix FAQ on scheduler latency (#13969)
     add e57add3  Add test for Public role permissions. (#13965)
     add bebf6a6  Bugfix: Allow getting details of a DAG with null start_date (REST API) (#13959)
     add a13dce8  Updated taskflow api doc to show dependency with sensor (#13968)
     add 1f2efcb  Fix DB Migration for SQLite to upgrade to 2.0 (#13921)

No new revisions were added by this update.

Summary of changes:
 INTHEWILD.md                                       |   1 +
 airflow/api_connexion/openapi/v1.yaml              |   1 +
 airflow/config_templates/airflow_local_settings.py |   2 +-
 airflow/executors/kubernetes_executor.py           |  38 +++----
 airflow/kubernetes/pod_generator.py                |  27 +++--
 .../versions/cf5dc11e79ad_drop_user_and_chart.py   |   4 +-
 airflow/operators/trigger_dagrun.py                |   6 ++
 airflow/www/security.py                            | 109 +++++++--------------
 airflow/www/views.py                               |   2 +-
 .../connections/oracle.rst                         |  33 ++++++-
 docs/apache-airflow/faq.rst                        |   7 +-
 docs/apache-airflow/scheduler.rst                  |   4 +-
 docs/apache-airflow/start/docker.rst               |  41 +++++++-
 docs/apache-airflow/tutorial_taskflow_api.rst      |  34 +++++++
 docs/build_docs.py                                 |   2 +-
 docs/exts/docs_build/third_party_inventories.py    |   2 +-
 tests/api_connexion/endpoints/test_dag_endpoint.py |  41 +++++++-
 tests/kubernetes/models/test_secret.py             |   2 +-
 tests/kubernetes/test_pod_generator.py             |  52 +++++++++-
 tests/operators/test_trigger_dagrun.py             |  11 +++
 tests/www/test_security.py                         |  14 ++-
 tests/www/test_views.py                            |   4 +
 22 files changed, 304 insertions(+), 133 deletions(-)