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

github-bot pushed a change to branch 
dependabot/npm_and_yarn/airflow-core/src/airflow/ui/core-ui-package-updates-c7cffec83b
in repository https://gitbox.apache.org/repos/asf/airflow.git


    omit 79d22fdc22f Bump the core-ui-package-updates group across 1 directory 
with 51 updates
     add 63de5115611 airflow-provider-slack: avoid secret false positive from 
trivy. (#54504)
     add ab6ebf750c7 CI: Update blacken-docs rev version in pre-commit file 
(#55394)
     add 513622e40b2 Show not supported exception for SyncCallback at Dag 
author time (#55390)
     add a05a310a51e Add missing translations for PL 2025-09-08 (#55397)
     add 068f3fce84e Feature/edge maintenance plugin beautification (#55348)
     add 1722ec0d285 Complete Arabic translation 2025-09-08 (#55384)
     add 6bd70bd3f34 Bump trove-classifiers from 2025.8.26.11 to 2025.9.8.13 
(#55385)
     add b2a2e787381 Bump trove-classifiers from 2025.8.26.11 to 2025.9.8.13 in 
/airflow-core (#55387)
     add b978e8bf128 modify python path to sys executable (#55367)
     add 7ef251d0b62 Close German translation gaps for full UI translation 
2025-09-08 (#55395)
     add a697d78310c feat(i18n): add missing Taiwanese Mandarin translation 
(#55401)
     add cde507afbaf Make `batch_is_authorized_` methods team aware (#55306)
     add 36fc820f27a Switch all airflow logging to structlog (#52651)
     add fb8781a3435 Bump the core-ui-package-updates group across 1 directory 
with 51 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   (79d22fdc22f)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/airflow-core/src/airflow/ui/core-ui-package-updates-c7cffec83b
 (fb8781a3435)

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:
 .github/boring-cyborg.yml                          |   2 +-
 .pre-commit-config.yaml                            |   4 +-
 airflow-core/pyproject.toml                        |  13 +-
 airflow-core/src/airflow/_shared/logging           |   1 +
 .../core_api/routes/public/import_error.py         |   8 +-
 .../src/airflow/api_fastapi/core_api/security.py   | 123 +++--
 .../config_templates/airflow_local_settings.py     |   3 +-
 .../src/airflow/dag_processing/collection.py       |   4 +-
 airflow-core/src/airflow/dag_processing/manager.py |   2 +-
 .../src/airflow/jobs/scheduler_job_runner.py       |   4 +-
 .../src/airflow/jobs/triggerer_job_runner.py       |  18 +-
 airflow-core/src/airflow/logging_config.py         |  21 +-
 airflow-core/src/airflow/models/connection.py      |  12 +
 airflow-core/src/airflow/models/dag.py             |  11 +
 airflow-core/src/airflow/models/pool.py            |   8 +
 airflow-core/src/airflow/models/variable.py        |  10 +
 .../airflow/ui/public/i18n/locales/ar/common.json  |   1 +
 .../src/airflow/ui/public/i18n/locales/ar/dag.json |   1 +
 .../airflow/ui/public/i18n/locales/de/common.json  |   3 +-
 .../airflow/ui/public/i18n/locales/pl/common.json  |   3 +-
 .../ui/public/i18n/locales/zh-TW/common.json       |   4 +-
 .../airflow/ui/public/i18n/locales/zh-TW/dag.json  |   3 +
 .../airflow/ui/public/i18n/locales/zh-TW/hitl.json |   2 +
 airflow-core/src/airflow/ui/src/main.tsx           |   4 +-
 airflow-core/src/airflow/utils/cli.py              |  11 +
 .../airflow/utils/log/file_processor_handler.py    |   4 +-
 airflow-core/src/airflow/utils/log/log_reader.py   |   7 +-
 .../src/airflow/utils/log/logging_mixin.py         |  16 +-
 airflow-core/src/airflow/utils/retries.py          |  11 +-
 .../tests/integration/otel/dags/otel_test_dag.py   |   2 +-
 airflow-core/tests/integration/otel/test_otel.py   |   6 +-
 .../tests/unit/always/test_providers_manager.py    |  18 +-
 .../core_api/routes/public/test_import_error.py    |  29 +-
 .../api_fastapi/core_api/routes/public/test_log.py |  19 +-
 .../unit/api_fastapi/core_api/test_security.py     |  31 +-
 .../tests/unit/cli/commands/test_task_command.py   |   3 -
 airflow-core/tests/unit/cli/conftest.py            |  16 +-
 .../tests/unit/core/test_logging_config.py         | 422 ----------------
 airflow-core/tests/unit/core/test_stats.py         |   8 +-
 .../tests/unit/dag_processing/test_manager.py      |   3 -
 airflow-core/tests/unit/models/test_connection.py  |  15 +
 airflow-core/tests/unit/models/test_dag.py         |  54 ++-
 airflow-core/tests/unit/models/test_pool.py        |   9 +
 airflow-core/tests/unit/models/test_variable.py    |   9 +
 .../unit/serialization/test_dag_serialization.py   |   6 -
 airflow-core/tests/unit/task/conftest.py           |   7 -
 .../tests/unit/utils/log/test_log_reader.py        |  28 +-
 airflow-core/tests/unit/utils/test_log_handlers.py |   6 +-
 .../tests/unit/utils/test_logging_mixin.py         |  12 -
 .../tests/unit/utils/test_process_utils.py         |  11 +-
 airflow-core/tests/unit/utils/test_retries.py      |   2 +-
 .../test_task_handler_with_custom_formatter.py     | 113 -----
 .../src/airflow_breeze/utils/selective_checks.py   |  75 ---
 dev/breeze/tests/test_selective_checks.py          | 240 +---------
 devel-common/src/tests_common/pytest_plugin.py     | 142 ++++--
 devel-common/src/tests_common/test_utils/logs.py   | 244 ++++++++++
 .../test_kubernetes_pod_operator.py                |  33 +-
 .../src/airflow/providers/amazon/aws/hooks/glue.py |   2 +-
 .../providers/amazon/aws/utils/task_log_fetcher.py |   2 +-
 .../amazon/aws/log/test_cloudwatch_task_handler.py |   9 +-
 .../unit/amazon/aws/log/test_s3_task_handler.py    |  41 +-
 .../airflow/providers/apache/beam/hooks/beam.py    |   8 +-
 .../apache/flink/sensors/test_flink_kubernetes.py  |  28 +-
 .../unit/celery/log_handlers/test_log_handlers.py  |   2 -
 .../kubernetes/log_handlers/test_log_handlers.py   |   5 +-
 .../kubernetes/sensors/test_spark_kubernetes.py    |  27 +-
 .../sql/tests/unit/common/sql/hooks/test_dbapi.py  |   8 +-
 .../sql/tests/unit/common/sql/hooks/test_sql.py    |   2 -
 .../providers/databricks/operators/databricks.py   |   9 +-
 .../databricks/plugins/databricks_workflow.py      |  12 +-
 .../tests/unit/databricks/hooks/test_databricks.py |   1 -
 .../airflow/providers/docker/operators/docker.py   |   9 +-
 .../tests/unit/docker/decorators/test_docker.py    |  16 +-
 .../providers/edge3/plugins/www/dist/main.umd.cjs  |  51 +-
 .../www/src/components/MaintenanceEnterButton.tsx  | 101 ++++
 .../www/src/components/MaintenanceExitButton.tsx   |  61 +++
 .../plugins/www/src/components/OperationsCell.tsx  | 147 ------
 .../www/src/components/WorkerOperations.tsx        |  65 +++
 .../www/src/components/ui}/createToaster.ts        |   0
 .../edge3/plugins/www/src/components/ui/index.ts   |   1 +
 .../edge3/plugins/www/src/pages/WorkerPage.tsx     |  54 +--
 .../providers/edge3/plugins/www/vite.config.ts     |   1 +
 .../providers/edge3/worker_api/routes/ui.py        |  12 +-
 providers/edge3/www-hash.txt                       |   2 +-
 .../google/cloud/utils/bigquery_get_data.py        |   2 +-
 .../microsoft/azure/log/test_wasb_task_handler.py  |  26 +-
 .../airflow/providers/microsoft/psrp/hooks/psrp.py |  12 +-
 .../unit/microsoft/psrp/operators/test_psrp.py     |   2 +-
 .../src/airflow/providers/slack/hooks/slack.py     |   2 +-
 .../providers/snowflake/hooks/snowflake_sql_api.py |   2 +-
 .../ssh/src/airflow/providers/ssh/hooks/ssh.py     |   6 +
 .../tests/unit/standard/operators/test_python.py   |  17 +-
 pyproject.toml                                     |  11 +-
 .../in_container/run_check_imports_in_providers.py |   2 +-
 shared/{timezones => logging}/pyproject.toml       |   9 +-
 .../src/airflow_shared/logging}/__init__.py        |   2 +-
 .../src/airflow_shared/logging/_noncaching.py      |  34 +-
 .../airflow_shared/logging/percent_formatter.py    | 153 ++++++
 .../src/airflow_shared/logging/structlog.py        | 531 +++++++++++++++++++++
 shared/logging/src/airflow_shared/logging/types.py |  43 ++
 shared/logging/tests/logging/test_structlog.py     | 282 +++++++++++
 task-sdk/pyproject.toml                            |   9 +-
 task-sdk/src/airflow/sdk/_shared/logging           |   1 +
 .../src/airflow/sdk/definitions/_internal/node.py  |  11 +-
 task-sdk/src/airflow/sdk/definitions/dag.py        |  24 -
 task-sdk/src/airflow/sdk/definitions/deadline.py   |   3 +
 .../airflow/sdk/execution_time/execute_workload.py |   2 +-
 .../src/airflow/sdk/execution_time/supervisor.py   |  19 +-
 .../src/airflow/sdk/execution_time/task_runner.py  |   2 +-
 task-sdk/src/airflow/sdk/log.py                    | 361 ++++----------
 task-sdk/src/airflow/sdk/types.py                  |   1 +
 task-sdk/tests/conftest.py                         |  30 +-
 task-sdk/tests/task_sdk/bases/test_operator.py     |  28 +-
 .../tests/task_sdk/definitions/test_deadline.py    |   8 +
 .../tests/task_sdk/definitions/test_xcom_arg.py    |  82 ++--
 task-sdk/tests/task_sdk/log/test_log.py            | 225 ---------
 116 files changed, 2399 insertions(+), 2096 deletions(-)
 create mode 120000 airflow-core/src/airflow/_shared/logging
 delete mode 100644 airflow-core/tests/unit/core/test_logging_config.py
 delete mode 100644 
airflow-core/tests/unit/utils/test_task_handler_with_custom_formatter.py
 create mode 100644 
providers/edge3/src/airflow/providers/edge3/plugins/www/src/components/MaintenanceEnterButton.tsx
 create mode 100644 
providers/edge3/src/airflow/providers/edge3/plugins/www/src/components/MaintenanceExitButton.tsx
 delete mode 100644 
providers/edge3/src/airflow/providers/edge3/plugins/www/src/components/OperationsCell.tsx
 create mode 100644 
providers/edge3/src/airflow/providers/edge3/plugins/www/src/components/WorkerOperations.tsx
 copy {airflow-core/src/airflow/ui/src/components/ui/Toaster => 
providers/edge3/src/airflow/providers/edge3/plugins/www/src/components/ui}/createToaster.ts
 (100%)
 copy shared/{timezones => logging}/pyproject.toml (89%)
 copy {providers/cncf/kubernetes/src/airflow/providers/cncf/kubernetes/utils => 
shared/logging/src/airflow_shared/logging}/__init__.py (92%)
 copy providers/sendgrid/src/airflow/providers/sendgrid/version_compat.py => 
shared/logging/src/airflow_shared/logging/_noncaching.py (59%)
 create mode 100644 
shared/logging/src/airflow_shared/logging/percent_formatter.py
 create mode 100644 shared/logging/src/airflow_shared/logging/structlog.py
 create mode 100644 shared/logging/src/airflow_shared/logging/types.py
 create mode 100644 shared/logging/tests/logging/test_structlog.py
 create mode 120000 task-sdk/src/airflow/sdk/_shared/logging
 delete mode 100644 task-sdk/tests/task_sdk/log/test_log.py

Reply via email to