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/04/10 01:50:26 UTC

[airflow] tag nightly-master updated (de9567f -> 9015beb)

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 de9567f  (commit)
      to 9015beb  (commit)
    from de9567f  Synchronize the commiter list (#15292)
     add 56a0371  Remove datepicker for task instance detail view (#15284)
     add 19b74fd  Add support for labelling DAG edges (#15142)
     add 3bd84cc3 Remove duplicate test utils (#15300)
     add eedb634  Styling of edge labels when task highlighting (#15298)
     add cf67bb8  Chart: Add tests for tolerations, affinity & node-selector (#15297)
     add 594d93d  Entrypoint support in docker operator (#14642)
     add 9ba467b  Rename nteract-scrapbook to scrapbook (#15290)
     add bcc6c93  Migrate graph js (#15307)
     add 9dd14aa  Migrate task instance log (ti_log) js (#15309)
     add 9015beb  Pass environment variables to process with yarn kill command (#15304)

No new revisions were added by this update.

Summary of changes:
 airflow/models/baseoperator.py                     |  22 +-
 airflow/models/dag.py                              |  25 +-
 airflow/models/xcom_arg.py                         |  19 +-
 .../providers/apache/spark/hooks/spark_submit.py   |   2 +-
 airflow/providers/docker/operators/docker.py       |  71 +-
 airflow/providers/docker/operators/docker_swarm.py |   2 +-
 airflow/serialization/enums.py                     |   1 +
 airflow/serialization/schema.json                  |  18 +-
 airflow/serialization/serialized_objects.py        |   6 +
 airflow/utils/dot_renderer.py                      |   6 +-
 airflow/utils/edgemodifier.py                      | 126 ++++
 airflow/utils/types.py                             |  12 +
 airflow/www/static/css/graph.css                   |  16 +-
 airflow/www/static/js/graph.js                     | 704 ++++++++++++++++++++
 airflow/www/static/js/task_instance.js             |  16 +-
 airflow/www/static/js/ti_log.js                    | 148 +++++
 airflow/www/templates/airflow/graph.html           | 713 +--------------------
 airflow/www/templates/airflow/task_instance.html   |  10 +-
 airflow/www/templates/airflow/ti_log.html          | 144 +----
 airflow/www/views.py                               |  14 +-
 airflow/www/webpack.config.js                      |   3 +-
 chart/tests/test_flower.py                         |  45 ++
 .../{test_cleanup_pods.py => test_pgbouncer.py}    |  51 +-
 chart/tests/test_redis.py                          |  46 ++
 chart/tests/test_scheduler.py                      |  44 ++
 chart/tests/test_statsd.py                         |  44 ++
 chart/tests/test_webserver_deployment.py           |  44 ++
 chart/tests/test_worker.py                         |  45 ++
 docs/apache-airflow/concepts.rst                   |  25 +-
 setup.py                                           |   2 +-
 .../apache/spark/hooks/test_spark_submit.py        |   5 +-
 tests/providers/docker/operators/test_docker.py    |   2 +
 tests/serialization/test_dag_serialization.py      |  22 +
 tests/test_utils/api_connexion_utils.py            |   8 +-
 tests/test_utils/fab_utils.py                      |  82 ---
 tests/utils/test_edgemodifier.py                   | 164 +++++
 tests/www/test_security.py                         |  18 +-
 tests/www/test_views.py                            |   4 +-
 38 files changed, 1700 insertions(+), 1029 deletions(-)
 create mode 100644 airflow/utils/edgemodifier.py
 create mode 100644 airflow/www/static/js/graph.js
 create mode 100644 airflow/www/static/js/ti_log.js
 copy chart/tests/{test_cleanup_pods.py => test_pgbouncer.py} (55%)
 delete mode 100644 tests/test_utils/fab_utils.py
 create mode 100644 tests/utils/test_edgemodifier.py