You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by bi...@apache.org on 2021/04/11 20:59:53 UTC

[airflow] branch remove-python2 updated (98da8b3 -> 2865ab0)

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

binh pushed a change to branch remove-python2
in repository https://gitbox.apache.org/repos/asf/airflow.git.


 discard 98da8b3  Keep __init__.py with comments
 discard e400886  Keep PythonVirtualenvOperator tests for python2
 discard 439b47d  fixup! Remove python2 related handlings and dependencies
 discard 635119d  Remove python2 related handlings and dependencies
     add f62e68e  Add test to check Valid Affinity, Tolerations & Node Selector for Cleanup Job (#15278)
     add 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)
     add d5ea9fe  Chart: Allow setting an existing secret for PgBouncer config (#15296)
     add c8f0abd  Add picture and examples for Edge Labels (#15310)
     add 5da8319  Fix exception caused by missing keys in the ElasticSearch Record (#15163)
     add 62aa796  Chart: Add tests to check labels, kind and annotations (#15313)
     add aaa3bf6  Fix url generation for TriggerDagRunOperatorLink (#14990)
     add 16902d0  Ensure executors end method is called (#14085)
     add 1dfbb8d  Avoids error on pushing PROD image as cache (#15321)
     add 4a14136  Remove python2 related handlings and dependencies
     add 13923c1  fixup! Remove python2 related handlings and dependencies
     add 9fcbd96  Keep PythonVirtualenvOperator tests for python2
     add 2865ab0  Keep __init__.py with comments

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (98da8b3)
            \
             N -- N -- N   refs/heads/remove-python2 (2865ab0)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/ci.yml                           |   6 +-
 ...ly_with_trigger.py => example_branch_labels.py} |  34 +-
 airflow/example_dags/example_branch_operator.py    |   4 +-
 airflow/executors/local_executor.py                |   4 +
 airflow/jobs/scheduler_job.py                      |  22 +-
 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 +-
 .../providers/elasticsearch/log/es_task_handler.py |   6 +-
 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/helpers.py                           |   4 +-
 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/templates/_helpers.yaml                      |   2 +-
 .../templates/secrets/pgbouncer-config-secret.yaml |   2 +-
 chart/tests/test_basic_helm_chart.py               |  81 +++
 chart/tests/test_cleanup_pods.py                   |  45 ++
 chart/tests/test_flower.py                         |  45 ++
 chart/tests/test_pgbouncer.py                      | 107 ++++
 chart/tests/test_redis.py                          |  46 ++
 chart/tests/test_scheduler.py                      |  70 ++
 chart/tests/test_statsd.py                         |  44 ++
 chart/tests/test_webserver_deployment.py           |  44 ++
 chart/tests/test_worker.py                         |  68 ++
 chart/values.schema.json                           |   7 +
 chart/values.yaml                                  |  15 +
 docs/apache-airflow/concepts.rst                   |  30 +-
 docs/apache-airflow/img/edge_label_example.png     | Bin 0 -> 24592 bytes
 docs/helm-chart/parameters-ref.rst                 |   3 +
 scripts/ci/images/ci_prepare_ci_image_on_ci.sh     |   2 +-
 scripts/ci/images/ci_prepare_prod_image_on_ci.sh   |  15 +
 setup.py                                           |   2 +-
 tests/jobs/test_scheduler_job.py                   |  31 +
 .../apache/spark/hooks/test_spark_submit.py        |   5 +-
 tests/providers/docker/operators/test_docker.py    |   2 +
 .../elasticsearch/log/test_es_task_handler.py      |  10 +-
 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/utils/test_helpers.py                        |  13 +-
 tests/www/test_security.py                         |  18 +-
 tests/www/test_views.py                            |   4 +-
 58 files changed, 2110 insertions(+), 1035 deletions(-)
 copy airflow/example_dags/{example_latest_only_with_trigger.py => example_branch_labels.py} (53%)
 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
 create mode 100644 chart/tests/test_pgbouncer.py
 create mode 100755 docs/apache-airflow/img/edge_label_example.png
 delete mode 100644 tests/test_utils/fab_utils.py
 create mode 100644 tests/utils/test_edgemodifier.py