This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/npm_and_yarn/providers/edge3/src/airflow/providers/edge3/plugins/www/edge-ui-package-updates-cb8892a38b
in repository https://gitbox.apache.org/repos/asf/airflow.git
discard ef26aa3e2d2 Bump the edge-ui-package-updates group across 1 directory
with 8 updates
add 599659aa05e Fix `MwaaTaskCompletedTrigger` (#57490)
add 9cb9a80ae64 chore: update navigation z-index using Chakra token
(#57493)
add caff00f3049 fix: dag_docs content not scrollable when too long (#57509)
add 9c25bc48699 Fix Airflowctl release documentation (#57513)
add a04136fa81f [Doc] Fixing some typos and spelling errors (#57225)
add eaa69725c9d Fix instance_name in UI docs (#57380)
add 944a9f52194 Enable ruff PLW0120 rule (#57456)
add 8a88cb7c731 Remove useless updated_state in ti_update_state (#57468)
add c3a0651b0c3 Enable PT011 rule to airflow-core tests (#57463)
add a563fb0f39a Unify Pod Startup Tracking: KubernetesPodTriggerer and
KubernetesPodOperator Now Share Common Startup Logic (#56875)
add 2f5e6453af3 Fix MyPy type errors in providers utils/sql.py (#57448)
add 6de57e3d7b9 Fix MyPy type errors in providers openlineage (#57435)
add d6f5f651d64 Add number of queries guard in public dag tags list
endpoints (#57499)
add 942063a2200 Add query guard in public asset list endpoints (#57438)
add 1a011f9eb2a nit: Use new taskinstance method to determine if task will
emit OL event (#57446)
add a70aed1ead0 Add number of queries guard in public dag warnings list
endpoint (#57503)
add 552e60505a9 Fix HITL operators failing when using notifiers (#57494)
add e5a88cc75a4 Eliminate serdag loading added in #56422 (#57537)
add dc73d38a36c Add number of queries guard in public dags list endpoints
(#57506)
add fc72417a4b6 Add number of queries guard in public xcom entries list
endpoints (#55936)
add 968b6373ab2 Add settings to auto-apply linting, fix linting errors
(#57510)
add 2199c7ad9e2 Add number of queries guard in public event logs list
endpoints (#57508)
add 9111175e17a Better highlighting of selected task instance and edges in
grid view (#57275)
add e62e5942a41 Fix MyPy type errors in api_fastapi/execution_api/ for
Sqlalchemy 2 migration (#57465)
add 82153db46a5 Fix mypy type errors in trigger.py (#57457)
add 020aaeba3a6 Fix MyPy type errors in airflow-core/src/airflow/jobs/ for
Sqlalchemy 2 migration (#57398)
add 9ea11a36767 Add number of queries guard in public import errors list
endpoints (#57557)
add 9d79cbed690 include vscode folders in .gitignore (#57567)
add 78775973c28 Bump the edge-ui-package-updates group across 1 directory
with 8 updates
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 (ef26aa3e2d2)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/providers/edge3/src/airflow/providers/edge3/plugins/www/edge-ui-package-updates-cb8892a38b
(78775973c28)
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-core/docs/howto/customize-ui.rst | 6 +-
.../default_instance_name_configuration.png | Bin 68441 -> 19151 bytes
.../example_instance_name_configuration.png | Bin 68231 -> 18698 bytes
.../api_fastapi/core_api/routes/public/assets.py | 5 +-
.../core_api/routes/public/event_logs.py | 2 +-
.../api_fastapi/core_api/routes/public/xcom.py | 8 +-
.../execution_api/datamodels/asset_event.py | 2 +-
.../api_fastapi/execution_api/datamodels/hitl.py | 4 +-
.../api_fastapi/execution_api/routes/hitl.py | 4 +-
.../execution_api/routes/task_instances.py | 30 +--
.../src/airflow/cli/commands/db_command.py | 3 +-
airflow-core/src/airflow/configuration.py | 3 +-
airflow-core/src/airflow/jobs/job.py | 13 +-
.../src/airflow/jobs/scheduler_job_runner.py | 112 +++++-----
airflow-core/src/airflow/models/serialized_dag.py | 1 -
airflow-core/src/airflow/models/trigger.py | 21 +-
airflow-core/src/airflow/models/xcom.py | 2 +-
.../src/airflow/ui/src/components/Graph/Edge.tsx | 6 +-
.../airflow/ui/src/components/Graph/TaskNode.tsx | 2 +-
.../ui/src/components/ui/ResizableWrapper.tsx | 2 +
.../src/airflow/ui/src/layouts/Nav/Nav.tsx | 12 +-
.../src/airflow/ui/src/layouts/Nav/NavButton.tsx | 112 +++++-----
.../airflow/ui/src/layouts/Nav/PluginMenuItem.tsx | 19 +-
.../src/airflow/ui/src/layouts/Nav/PluginMenus.tsx | 4 +-
.../ui/src/layouts/Nav/UserSettingsButton.tsx | 4 +-
.../core_api/routes/public/test_assets.py | 24 ++-
.../core_api/routes/public/test_dag_tags.py | 4 +-
.../core_api/routes/public/test_dag_warning.py | 4 +-
.../core_api/routes/public/test_dags.py | 5 +-
.../core_api/routes/public/test_event_logs.py | 4 +-
.../core_api/routes/public/test_import_error.py | 7 +-
.../core_api/routes/public/test_xcom.py | 29 +--
.../tests/unit/cli/commands/test_dag_command.py | 2 +-
airflow-core/tests/unit/core/test_configuration.py | 5 +-
airflow-core/tests/unit/core/test_otel_logger.py | 8 +-
.../tests/unit/executors/test_base_executor.py | 4 +-
airflow-core/tests/unit/jobs/test_triggerer_job.py | 2 +-
airflow-core/tests/unit/models/test_dag.py | 11 +-
.../testing/task_sdk_integration_tests.rst | 2 +-
dev/README_RELEASE_AIRFLOWCTL.md | 5 +-
dev/breeze/doc/images/output_ci-image.svg | 4 +-
dev/breeze/doc/images/output_ci-image.txt | 2 +-
.../images/output_ci-image_export-mount-cache.svg | 2 +-
.../images/output_ci-image_export-mount-cache.txt | 2 +-
.../images/output_ci-image_import-mount-cache.svg | 2 +-
.../images/output_ci-image_import-mount-cache.txt | 2 +-
.../airflow_breeze/commands/ci_image_commands.py | 4 +-
dev/breeze/src/airflow_breeze/utils/packages.py | 3 +-
docs/spelling_wordlist.txt | 2 +
.../airflow/providers/amazon/aws/hooks/base_aws.py | 2 +-
.../providers/amazon/aws/hooks/batch_client.py | 10 +-
.../airflow/providers/amazon/aws/hooks/chime.py | 2 +-
.../airflow/providers/amazon/aws/hooks/datasync.py | 3 +-
.../amazon/aws/operators/cloud_formation.py | 4 +-
.../airflow/providers/amazon/aws/sensors/mwaa.py | 1 -
.../amazon/aws/transfers/azure_blob_to_s3.py | 4 +-
.../airflow/providers/amazon/aws/triggers/mwaa.py | 6 +-
.../providers/apache/beam/operators/beam.py | 2 +-
.../providers/celery/executors/celery_executor.py | 2 +-
.../celery/executors/celery_executor_utils.py | 2 +-
.../providers/cncf/kubernetes/exceptions.py | 8 +
.../providers/cncf/kubernetes/hooks/kubernetes.py | 35 ++-
.../providers/cncf/kubernetes/operators/pod.py | 1 +
.../providers/cncf/kubernetes/triggers/pod.py | 50 +++--
.../providers/cncf/kubernetes/utils/pod_manager.py | 235 +++++++++++++++------
.../unit/cncf/kubernetes/triggers/test_pod.py | 73 +++++--
.../unit/cncf/kubernetes/utils/test_pod_manager.py | 168 +++++++++++++--
.../unit/elasticsearch/log/elasticmock/__init__.py | 3 +-
.../providers/google/cloud/hooks/bigquery.py | 17 +-
.../providers/google/cloud/hooks/cloud_sql.py | 4 +-
.../airflow/providers/google/cloud/hooks/gcs.py | 3 +-
.../cloud/hooks/vertex_ai/batch_prediction_job.py | 4 +-
.../google/cloud/operators/cloud_batch.py | 2 +-
.../providers/google/cloud/operators/cloud_run.py | 2 +-
.../providers/google/suite/hooks/calendar.py | 2 +-
providers/http/docs/changelog.rst | 4 +-
.../docs/auth-manager/manage/permissions.rst | 2 +-
.../providers/openlineage/plugins/facets.py | 2 +-
.../src/airflow/providers/openlineage/utils/sql.py | 8 +-
.../airflow/providers/openlineage/utils/utils.py | 46 ++--
providers/ssh/docs/changelog.rst | 2 +-
pyproject.toml | 1 +
scripts/ci/prek/common_prek_utils.py | 3 +-
scripts/ci/prek/update_providers_dependencies.py | 3 +-
scripts/in_container/in_container_utils.py | 3 +-
task-sdk/src/airflow/sdk/api/client.py | 8 +-
.../src/airflow/sdk/api/datamodels/_generated.py | 2 +-
task-sdk/src/airflow/sdk/execution_time/comms.py | 11 +
.../src/airflow/sdk/execution_time/supervisor.py | 6 +-
task-sdk/tests/task_sdk/api/test_client.py | 4 +-
.../task_sdk/execution_time/test_supervisor.py | 2 -
91 files changed, 845 insertions(+), 423 deletions(-)