You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by bb...@apache.org on 2022/04/19 14:04:44 UTC

[airflow] branch improve-graph-mapped-task-info updated (19be750b24 -> 0eed592d7d)

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

bbovenzi pushed a change to branch improve-graph-mapped-task-info
in repository https://gitbox.apache.org/repos/asf/airflow.git


    from 19be750b24 Rearrange task action IA
     add 6544347730 Add `2.3.0b1` to issue template (#23024)
     add fbfbc26a7a Update gcs_to_local.rst (#23026)
     add c92954418a Breeze is installed via pipx in CI (#23023)
     add c36bcc4c06 Upgrade to support Google Ads v10 (#22965)
     add b3cae77218 Include message in graph errors (#23021)
     add 8cf1cb3e04 Bump async from 2.6.3 to 2.6.4 in /airflow/ui (#23034)
     add 8e75e23497 Allow re-use of decorated tasks (#22941)
     add 3a2eb961ca Fix tests using has_calls to use assert_has_calls. (#23001)
     add cc3503e368 Fix Grid autoscroll with ResizeObserver (#23022)
     add 7d97ee5b3a Default side panel open vs closed (#23039)
     add 10c9cb5318 Revert disabling run task button (#23038)
     add b24650c0cc Show map_index in states-for-dag-run (#23030)
     add 5164cdbe98 Make presto and trino compatible with airflow 2.1 (#23061)
     add 5144bedcee Add SnowSQL installation script to Breeze (#23065)
     add c3d883a971 KubernetesPodOperator should patch "already checked" always (#22734)
     add 0eed592d7d Merge branch 'main' into improve-graph-mapped-task-info

No new revisions were added by this update.

Summary of changes:
 .github/ISSUE_TEMPLATE/airflow_bug_report.yml      |  1 +
 .../airflow_helmchart_bug_report.yml               |  1 +
 .../airflow_providers_bug_report.yml               |  1 +
 .github/workflows/build-images.yml                 |  4 +-
 .github/workflows/ci.yml                           | 55 ++++++--------
 BREEZE.rst                                         |  1 +
 Dockerfile                                         |  3 +-
 Dockerfile.ci                                      |  3 +-
 TESTING.rst                                        |  1 +
 airflow/cli/commands/task_command.py               | 18 +++--
 airflow/decorators/base.py                         |  3 +
 .../cncf/kubernetes/operators/kubernetes_pod.py    |  6 +-
 airflow/providers/google/CHANGELOG.rst             | 16 ++++
 airflow/providers/google/ads/hooks/ads.py          | 23 +++---
 airflow/providers/presto/hooks/presto.py           |  5 +-
 airflow/providers/trino/hooks/trino.py             |  5 +-
 airflow/ui/yarn.lock                               |  6 +-
 airflow/www/static/js/graph.js                     |  5 +-
 airflow/www/static/js/tree/Tree.jsx                | 41 ++++++-----
 airflow/www/static/js/tree/dagRuns/index.jsx       |  4 +-
 .../content/taskInstance/taskActions/Run.jsx       | 21 +-----
 airflow/www/static/js/tree/renderTaskRows.jsx      |  3 +-
 airflow/www/templates/airflow/dag.html             |  5 +-
 airflow/www/views.py                               |  4 +-
 docker_tests/requirements.txt                      |  3 +
 docs/apache-airflow-providers-google/index.rst     |  2 +-
 .../operators/transfer/gcs_to_local.rst            |  2 +-
 docs/apache-airflow/tutorial_taskflow_api.rst      | 58 +++++++++++++++
 kubernetes_tests/test_kubernetes_pod_operator.py   | 52 +++++++++----
 .../test_kubernetes_pod_operator_backcompat.py     | 11 ++-
 scripts/ci/docker-compose/forward-credentials.yml  |  1 +
 scripts/ci/images/ci_run_docker_tests.py           | 13 +++-
 .../stop_tmux_airflow.sh => ci/install_breeze.sh}  | 11 ++-
 scripts/in_container/bin/install_snowsql.sh        | 85 ++++++++++++++++++++++
 setup.cfg                                          |  4 +-
 setup.py                                           |  5 +-
 tests/decorators/test_python.py                    | 57 +++++++++++++++
 .../kubernetes/operators/test_kubernetes_pod.py    | 81 ++++++++++-----------
 tests/providers/google/ads/operators/test_ads.py   |  2 +-
 .../google/cloud/hooks/test_cloud_memorystore.py   | 42 ++++++++---
 tests/providers/google/cloud/hooks/test_looker.py  |  2 +-
 .../google/cloud/transfers/test_calendar_to_gcs.py | 36 +++++----
 42 files changed, 484 insertions(+), 218 deletions(-)
 create mode 100644 docker_tests/requirements.txt
 copy scripts/{in_container/stop_tmux_airflow.sh => ci/install_breeze.sh} (80%)
 create mode 100755 scripts/in_container/bin/install_snowsql.sh