This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a change to branch use-uv-for-prod-image
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard ed154b1f76 Switch from --user to venv environment for PROD image
omit 41ac676d58 Optimize building images including new uv version release
add e2e7fd8b91 Optimize building images including new uv version release
(#37789)
add a538e02d01 Fix "Exception statement has no effect" (#37722)
add ebd1438e75 Allow longer rendered_map_index (#37798)
add 6afe26c3dd Add Run Duration in React (#37735)
add e7a3f7f0bd Enable PT022: pytest-useless-yield-fixture (#37788)
add 9da6a21159 Use named loggers instead of root logger (#37801)
add 119f1e8414 Fix broken formatting in HTTP Connection documentation
(#37803)
add bb84fa4cbf Switch from --user to venv environment for PROD image
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 (ed154b1f76)
\
N -- N -- N refs/heads/use-uv-for-prod-image (bb84fa4cbf)
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:
.pre-commit-config.yaml | 18 +++
airflow/example_dags/example_python_decorator.py | 2 +-
airflow/example_dags/example_python_operator.py | 2 +-
airflow/metrics/otel_logger.py | 4 +-
...2_9_0_add_rendered_map_index_to_taskinstance.py | 2 +-
airflow/models/taskinstance.py | 2 +-
.../amazon/aws/auth_manager/views/auth.py | 8 +-
airflow/providers/opensearch/hooks/opensearch.py | 5 +-
airflow/sensors/base.py | 3 +-
airflow/settings.py | 2 +-
airflow/utils/cli_action_loggers.py | 18 +--
airflow/utils/log/file_processor_handler.py | 6 +-
airflow/utils/log/file_task_handler.py | 2 +-
.../log/task_handler_with_custom_formatter.py | 5 +-
airflow/www/extensions/init_jinja_globals.py | 4 +-
.../www/static/js/dag/details/{ => dag}/Dag.tsx | 2 +-
.../www/static/js/dag/details/dag/RunDuration.tsx | 54 +++++++++
.../TaskDuration.tsx => dag/RunDurationChart.tsx} | 133 +++++++++++++--------
airflow/www/static/js/dag/details/index.tsx | 49 +++++++-
airflow/www/views.py | 20 ++--
airflow/www/yarn.lock | 6 +-
contributing-docs/08_static_code_checks.rst | 2 +
dev/breeze/doc/images/output_static-checks.svg | 4 +-
dev/breeze/doc/images/output_static-checks.txt | 2 +-
dev/breeze/src/airflow_breeze/pre_commit_ids.py | 1 +
.../connections/http.rst | 5 +-
docs/apache-airflow/img/airflow_erd.sha256 | 2 +-
docs/apache-airflow/img/airflow_erd.svg | 10 +-
pyproject.toml | 16 +++
tests/cli/commands/test_info_command.py | 2 +-
tests/conftest.py | 1 -
tests/core/test_impersonation_tests.py | 2 -
tests/dag_processing/test_job_runner.py | 15 ++-
tests/dags/test_task_view_type_check.py | 3 +-
tests/jobs/test_local_task_job.py | 1 -
tests/models/test_dagbag.py | 9 +-
tests/models/test_timestamp.py | 1 -
tests/models/test_xcom_arg.py | 1 -
tests/operators/test_bash.py | 2 +-
.../amazon/aws/hooks/test_batch_waiters.py | 1 -
tests/providers/amazon/aws/hooks/test_ecr.py | 1 -
.../providers/amazon/aws/operators/test_appflow.py | 2 +-
.../amazon/aws/triggers/test_glue_databrew.py | 2 +-
tests/providers/amazon/conftest.py | 1 -
.../apache/hive/transfers/test_s3_to_hive.py | 3 +-
.../cncf/kubernetes/operators/test_job.py | 2 +-
.../cncf/kubernetes/operators/test_pod.py | 3 +-
tests/providers/google/cloud/hooks/test_gcs.py | 2 +-
.../google/cloud/log/test_gcs_task_handler.py | 2 +-
.../google/cloud/sensors/test_bigquery.py | 2 +-
tests/providers/openai/hooks/test_openai.py | 2 +-
.../providers/opensearch/hooks/test_opensearch.py | 14 ++-
tests/providers/trino/hooks/test_trino.py | 2 +-
tests/sensors/test_external_task_sensor.py | 4 +-
.../providers/amazon/aws/example_sagemaker.py | 6 +-
tests/system/providers/github/example_github.py | 5 +-
tests/system/utils/__init__.py | 6 +-
.../task/task_runner/test_standard_task_runner.py | 14 +--
tests/utils/log/test_task_context_logger.py | 2 +-
tests/utils/test_logging_mixin.py | 2 +-
tests/www/views/conftest.py | 4 +-
tests/www/views/test_views_base.py | 2 +-
tests/www/views/test_views_cluster_activity.py | 1 -
tests/www/views/test_views_grid.py | 3 +-
64 files changed, 342 insertions(+), 172 deletions(-)
rename airflow/www/static/js/dag/details/{ => dag}/Dag.tsx (99%)
create mode 100644 airflow/www/static/js/dag/details/dag/RunDuration.tsx
copy airflow/www/static/js/dag/details/{task/TaskDuration.tsx =>
dag/RunDurationChart.tsx} (65%)