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

github-bot pushed a change to branch 
dependabot/npm_and_yarn/providers/fab/src/airflow/providers/fab/www/fab-ui-package-updates-84caa9e8ef
in repository https://gitbox.apache.org/repos/asf/airflow.git


 discard fceff714d8d Bump the fab-ui-package-updates group across 1 directory 
with 8 updates
     add c273b7aa66a Restore UI Homepage Customization Using instance_name 
(#54522)
     add ef23f8517c4 chore(ui): remove redundant enabled check (#54579)
     add bfdd2629ba9 Fix layout for selected log (#54556)
     add 4467d506187 chore: update ol system tests after bug fix in AF3 (#54629)
     add e0820bdbaca Complete Arabic translation gaps 2025-08-16 (#54571)
     add 5d6b9434a8e Add filtering support to Audit Log view (#54210)
     add 4884d553afc Refactor HITLTaskInstances to remove group related code 
(#54439)
     add b07a2d22c44 Add option to choose branch in workflow breeze commands 
(#54630)
     add d227ef110e1 Move filesystem sensor tests to standard provider (#54635)
     add 6b1160aca56 fix test_kill_timed_out_processors_kill test failure 
(#54636)
     add bd46aa1058e fix(http): Fix HttpHook.url_from_endpoint() lazy 
initialization (#54202)
     add 723297fcf18 fix: removed the condition because of which it is not 
moving to default data (#54495)
     add 4303a53078f Fix: fix indentation errors when rendering multi-line 
property value (#54580)
     add 6e92943a965 Add setter for blob_service_client in WasbHook to support 
async injection (#54219)
     add 845f77556e5 Replace API server’s direct Connection access workaround 
in BaseHook (#54083)
     add c9e30de1792 Add hyperlink support for URLs in XCom values (#54288)
     add 28278debeba Fix flaky timeout test by using relative start_time 
calculation (#54641)
     add ef911fa2730 Make cache for prek dependent on platform (#54655)
     add 4e6fa291172 Remove black usage in prek hooks (#54656)
     add cdfddea9207 feat(i18n): add missing Taiwanese Mandarain translations 
(#54653)
     add 8756b49c41d feat(airflowctl): beta 1 version (#54637)
     add 3c4cdf4feb2 Remove Kerberos replay cache (`KRB5CCNAME` env) when a 
task is run with user impersonation (#54649)
     add e0056e19a4f Bump the fab-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   (fceff714d8d)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/providers/fab/src/airflow/providers/fab/www/fab-ui-package-updates-84caa9e8ef
 (e0056e19a4f)

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/actions/install-prek/action.yml            |   6 +-
 .github/workflows/basic-tests.yml                  |  14 +-
 .github/workflows/ci-amd.yml                       |   1 +
 .github/workflows/ci-arm.yml                       |   1 +
 .github/workflows/ci-image-checks.yml              |   5 +-
 .pre-commit-config.yaml                            |  15 +-
 .../src/airflow/cli/commands/task_command.py       |   2 +-
 .../src/airflow/config_templates/config.yml        |   4 +-
 .../src/airflow/dag_processing/collection.py       |  22 +-
 .../airflow/ui/public/i18n/locales/ar/common.json  |  12 ++
 .../airflow/ui/public/i18n/locales/ar/hitl.json    |   3 +-
 .../airflow/ui/public/i18n/locales/en/browse.json  |   3 +
 .../ui/public/i18n/locales/zh-TW/browse.json       |   3 +
 .../ui/public/i18n/locales/zh-TW/common.json       |   2 +
 .../airflow/ui/public/i18n/locales/zh-TW/hitl.json |   3 +-
 .../DagsFilters => components/ui}/ResetButton.tsx  |   0
 .../src/airflow/ui/src/components/ui/index.ts      |   1 +
 .../src/airflow/ui/src/constants/searchParams.ts   |   9 +
 airflow-core/src/airflow/ui/src/pages/DagRuns.tsx  |   1 -
 .../src/pages/DagsList/DagsFilters/DagsFilters.tsx |   2 +-
 .../airflow/ui/src/pages/Dashboard/Dashboard.tsx   |   3 +-
 .../src/airflow/ui/src/pages/Events/Events.tsx     |  61 +++++-
 .../airflow/ui/src/pages/Events/EventsFilters.tsx  | 232 +++++++++++++++++++++
 .../pages/HITLTaskInstances/HITLTaskInstances.tsx  |   9 +-
 .../src/pages/TaskInstance/Logs/TaskLogContent.tsx |   6 +-
 .../ui/src/pages/TaskInstances/TaskInstances.tsx   |   1 -
 .../src/airflow/ui/src/pages/XCom/XCom.tsx         |   4 +-
 .../src/airflow/ui/src/pages/XCom/XComEntry.tsx    |  35 +++-
 .../tests/unit/cli/commands/test_task_command.py   |  13 ++
 .../tests/unit/dag_processing/test_collection.py   |  57 +++++
 .../tests/unit/dag_processing/test_manager.py      |   4 +-
 airflow-ctl/docs/conf.py                           |   2 +-
 airflow-ctl/src/airflowctl/__init__.py             |   2 +-
 dev/breeze/doc/images/output-commands.svg          |  44 ++--
 .../images/output_workflow-run_publish-docs.svg    |  58 +++---
 .../images/output_workflow-run_publish-docs.txt    |   2 +-
 .../airflow_breeze/commands/workflow_commands.py   |   9 +-
 .../commands/workflow_commands_config.py           |   1 +
 dev/breeze/src/airflow_breeze/utils/packages.py    |   5 +-
 devel-common/src/tests_common/pytest_plugin.py     |  29 +++
 .../tests/unit/amazon/aws/bundles/test_s3.py       |  23 +-
 .../tests/unit/amazon/aws/hooks/test_base_aws.py   |  15 +-
 .../amazon/tests/unit/amazon/aws/hooks/test_emr.py |   2 +-
 .../tests/unit/amazon/aws/sensors/test_eks.py      |   2 +-
 .../amazon/aws/transfers/test_redshift_to_s3.py    |  85 ++++++--
 .../amazon/aws/transfers/test_s3_to_redshift.py    |  80 +++++--
 .../unit/apache/iceberg/hooks/test_iceberg.py      |  45 ++--
 .../unit/apache/spark/hooks/test_spark_submit.py   |   9 +-
 .../unit/cncf/kubernetes/hooks/test_kubernetes.py  |   7 +-
 .../tests/unit/common/sql/operators/test_sql.py    |   7 +-
 providers/git/tests/unit/git/bundles/test_git.py   |   8 +-
 .../unit/google/cloud/log/test_gcs_task_handler.py |   4 +-
 .../unit/google/cloud/operators/test_dataflow.py   |  27 +--
 .../http/src/airflow/providers/http/hooks/http.py  |   6 +
 providers/http/tests/unit/http/hooks/test_http.py  |  23 ++
 .../providers/microsoft/azure/hooks/wasb.py        |  60 ++++--
 .../tests/unit/microsoft/azure/hooks/test_wasb.py  |  33 ++-
 .../unit/microsoft/azure/operators/test_msgraph.py |   2 +-
 .../openlineage_base_complex_dag__af3.json         |   4 +-
 .../tests/unit/pinecone/hooks/test_pinecone.py     |  30 +--
 .../tests/unit/salesforce/hooks/test_salesforce.py |  35 ++--
 .../samba/tests/unit/samba/hooks/test_samba.py     |   2 +-
 providers/smtp/tests/unit/smtp/hooks/test_smtp.py  |  14 +-
 providers/ssh/tests/unit/ssh/hooks/test_ssh.py     |  35 ++--
 .../unit/standard}/sensors/test_filesystem.py      |   6 +-
 .../tests/unit/telegram/hooks/test_telegram.py     |   2 +-
 scripts/ci/prek/common_prek_black_utils.py         |  44 ----
 scripts/ci/prek/update_black_version.py            |  34 ---
 task-sdk/src/airflow/sdk/bases/hook.py             |  15 +-
 .../src/airflow/sdk/execution_time/task_runner.py  |   2 +
 task-sdk/tests/task_sdk/bases/test_hook.py         |   7 +-
 .../task_sdk/execution_time/test_task_runner.py    |  43 ++++
 72 files changed, 975 insertions(+), 422 deletions(-)
 rename airflow-core/src/airflow/ui/src/{pages/DagsList/DagsFilters => 
components/ui}/ResetButton.tsx (100%)
 create mode 100644 
airflow-core/src/airflow/ui/src/pages/Events/EventsFilters.tsx
 rename {airflow-core/tests/unit => 
providers/standard/tests/unit/standard}/sensors/test_filesystem.py (98%)
 delete mode 100644 scripts/ci/prek/common_prek_black_utils.py
 delete mode 100755 scripts/ci/prek/update_black_version.py

Reply via email to