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

potiuk pushed a change to branch python3.12
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit bfae074e43 Add Python 3.12 support
     add 16d2671704 Add "queuedEvent" endpoint to get/delete DatasetDagRunQueue 
(#37176)
     add d944eb0de2 Check permissions for ImportError (#37468)
     add 440f1c87ba Implement task duration page in react. (#35863)
     add a619d37312 Add Python 3.12 support

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   (bfae074e43)
            \
             N -- N -- N   refs/heads/python3.12 (a619d37312)

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:
 Dockerfile                                         |   6 +-
 Dockerfile.ci                                      |   6 +-
 airflow/__init__.py                                |  14 +-
 .../api_connexion/endpoints/dataset_endpoint.py    | 183 ++++++++++-
 .../endpoints/import_error_endpoint.py             |  61 +++-
 airflow/api_connexion/openapi/v1.yaml              | 186 +++++++++++
 airflow/api_connexion/schemas/dataset_schema.py    |  35 +++
 airflow/providers/apache/cassandra/provider.yaml   |  20 ++
 .../fab/auth_manager/security_manager/override.py  |   1 +
 airflow/www/static/js/components/ReactECharts.tsx  |  10 +-
 airflow/www/static/js/dag/TaskName.test.tsx        |  21 +-
 airflow/www/static/js/dag/TaskName.tsx             |  51 ++-
 airflow/www/static/js/dag/details/Header.tsx       |  23 +-
 airflow/www/static/js/dag/details/graph/Node.tsx   |   2 +-
 airflow/www/static/js/dag/details/graph/utils.ts   |   2 +-
 airflow/www/static/js/dag/details/index.tsx        |  40 ++-
 .../static/js/dag/details/task/TaskDuration.tsx    | 227 +++++++++++++
 .../dagRuns/Tooltip.tsx => details/task/index.tsx} |  52 +--
 airflow/www/static/js/dag/grid/index.test.tsx      |   3 +-
 airflow/www/static/js/dag/grid/renderTaskRows.tsx  |   9 +-
 airflow/www/static/js/types/api-generated.ts       | 274 ++++++++++++++++
 airflow/www/views.py                               |  51 ++-
 generated/provider_dependencies.json               |   4 +-
 newsfragments/37176.significant.rst                |   1 +
 pyproject.toml                                     |   2 +-
 scripts/docker/install_os_dependencies.sh          |   6 +-
 .../endpoints/test_dataset_endpoint.py             | 350 ++++++++++++++++++++-
 .../endpoints/test_import_error_endpoint.py        | 162 +++++++++-
 tests/www/views/test_views_home.py                 |  61 ++++
 29 files changed, 1743 insertions(+), 120 deletions(-)
 create mode 100644 airflow/www/static/js/dag/details/task/TaskDuration.tsx
 copy airflow/www/static/js/dag/{grid/dagRuns/Tooltip.tsx => 
details/task/index.tsx} (53%)
 create mode 100644 newsfragments/37176.significant.rst

Reply via email to