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

potiuk pushed a change to branch cleanup-runs-on-in-workflows
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard 7e937118dc Cleans up runs-on in workflows
    omit 2550b49bc8 Fix image cache optimizations - speeding up the build
     add 420709962e Prevent large objects from being stored in the RTIF (#38094)
     add 44672c8c08 Remove D105 from pyproject.toml (#38452)
     add 32ed83bd0e Refactor GKE hooks (#38404)
     add 9c4e333f5b fix: disabled_for_operators now stops whole event emission 
(#38033)
     add b402f8a356 Store duration in seconds and scale to handle case when a 
value in the series has a larger unit than the preceding durations. (#38374)
     add 256911aa62 Prepare fab provider RC1 (#38451)
     add e6e5fdb104 Delete all old dag pages and redirect to grid view (#37988)
     add 6e7d7b42a4 Override chakra styles to keep dropdowns in filter bar 
(#38456)
     add b1473eb64b Add button to clear only failed tasks in a dagrun. (#38217)
     add d0650edc76 Updates trove-classifiers released today in build 
dependencies. (#38464)
     add 911048b212 Fix image cache optimizations - speeding up the build 
(#38442)
     add f1589db779 Cleans up runs-on in workflows

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   (7e937118dc)
            \
             N -- N -- N   refs/heads/cleanup-runs-on-in-workflows (f1589db779)

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:
 airflow/config_templates/config.yml                |   8 +
 airflow/models/renderedtifields.py                 |   3 +-
 airflow/providers/cncf/kubernetes/operators/pod.py |   2 +-
 airflow/providers/dbt/cloud/utils/openlineage.py   |   6 +-
 airflow/providers/fab/CHANGELOG.rst                |  30 +-
 airflow/providers/fab/__init__.py                  |   2 +-
 .../google/cloud/hooks/kubernetes_engine.py        | 421 ++++++-----------
 .../google/cloud/operators/kubernetes_engine.py    |   2 +
 .../google/cloud/triggers/kubernetes_engine.py     |   1 +
 airflow/providers/openlineage/conf.py              |  98 ++++
 airflow/providers/openlineage/extractors/base.py   |  30 --
 airflow/providers/openlineage/extractors/bash.py   |   8 +-
 .../providers/openlineage/extractors/manager.py    |  30 +-
 airflow/providers/openlineage/extractors/python.py |   8 +-
 airflow/providers/openlineage/plugins/adapter.py   |  28 +-
 airflow/providers/openlineage/plugins/listener.py  |  23 +-
 airflow/providers/openlineage/plugins/macros.py    |   5 +-
 .../providers/openlineage/plugins/openlineage.py   |  19 +-
 airflow/providers/openlineage/utils/utils.py       |  22 +-
 airflow/serialization/helpers.py                   |  22 +-
 airflow/serialization/serialized_objects.py        |   2 +-
 airflow/www/forms.py                               |  20 -
 airflow/www/package.json                           |   1 -
 airflow/www/static/css/calendar.css                |  52 ---
 airflow/www/static/js/api/useClearRun.ts           |   9 +-
 airflow/www/static/js/calendar.js                  | 377 ---------------
 airflow/www/static/js/dag.js                       |  61 ---
 airflow/www/static/js/dag/Main.tsx                 |   9 +-
 .../static/js/dag/details/dag/RunDurationChart.tsx |  44 +-
 .../www/static/js/dag/details/dagRun/ClearRun.tsx  |   7 +
 .../static/js/dag/details/task/TaskDuration.tsx    |  36 +-
 airflow/www/templates/airflow/calendar.html        |  56 ---
 airflow/www/templates/airflow/dag.html             | 145 ++----
 airflow/www/templates/airflow/dag_audit_log.html   | 119 -----
 airflow/www/templates/airflow/duration_chart.html  |  71 ---
 airflow/www/utils.py                               |  11 -
 airflow/www/views.py                               | 512 ++-------------------
 airflow/www/webpack.config.js                      |   6 -
 airflow/www/yarn.lock                              |   5 -
 docs/apache-airflow-providers-fab/changelog.rst    |   7 +
 docs/apache-airflow-providers-fab/commits.rst      |  91 +++-
 docs/apache-airflow-providers-fab/index.rst        |  16 +-
 newsfragments/37988.significant.rst                |   1 +
 newsfragments/38094.significant.rst                |   5 +
 pyproject.toml                                     |  72 +--
 tests/models/test_renderedtifields.py              |  60 +++
 .../google/cloud/hooks/test_kubernetes_engine.py   |  27 +-
 .../providers/openlineage/extractors/test_base.py  |  33 +-
 .../providers/openlineage/extractors/test_bash.py  | 103 +----
 .../openlineage/extractors/test_python.py          | 117 +----
 .../providers/openlineage/plugins/test_listener.py |  69 ++-
 tests/providers/openlineage/plugins/test_macros.py |   4 +-
 .../openlineage/plugins/test_openlineage.py        |  65 ++-
 .../plugins/test_openlineage_adapter.py            | 181 +++++++-
 tests/providers/openlineage/plugins/test_utils.py  |  30 ++
 tests/providers/openlineage/test_conf.py           | 389 ++++++++++++++++
 .../kubernetes_engine/example_kubernetes_engine.py |   8 +-
 .../example_kubernetes_engine_async.py             |   9 +-
 .../example_kubernetes_engine_job.py               |   6 +-
 .../example_kubernetes_engine_kueue.py             |   8 +-
 .../example_kubernetes_engine_resource.py          |   4 +-
 tests/www/views/test_views.py                      |  12 -
 tests/www/views/test_views_decorators.py           |  11 -
 tests/www/views/test_views_home.py                 |  10 -
 tests/www/views/test_views_tasks.py                |  46 --
 65 files changed, 1476 insertions(+), 2219 deletions(-)
 create mode 100644 airflow/providers/openlineage/conf.py
 delete mode 100644 airflow/www/static/css/calendar.css
 delete mode 100644 airflow/www/static/js/calendar.js
 delete mode 100644 airflow/www/templates/airflow/calendar.html
 delete mode 100644 airflow/www/templates/airflow/dag_audit_log.html
 delete mode 100644 airflow/www/templates/airflow/duration_chart.html
 create mode 100644 newsfragments/37988.significant.rst
 create mode 100644 newsfragments/38094.significant.rst
 create mode 100644 tests/providers/openlineage/test_conf.py

Reply via email to