From 5465a1c31227069e877ea0f1c42fd893130a25d0 Mon Sep 17 00:00:00 2001 From: Benjamin Bannier Date: Tue, 12 Aug 2025 17:47:40 +0200 Subject: [PATCH 1/2] Bump auxil/spicy to latest development snapshot --- auxil/spicy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auxil/spicy b/auxil/spicy index 140e88c9a8..cef9b56b5a 160000 --- a/auxil/spicy +++ b/auxil/spicy @@ -1 +1 @@ -Subproject commit 140e88c9a8e04eca801bbd891e085cc180eee43f +Subproject commit cef9b56b5a77a3727036ecfe5f806f513bb1359e From 62e742aa3b98032ab2349b899627f26249120050 Mon Sep 17 00:00:00 2001 From: Benjamin Bannier Date: Tue, 12 Aug 2025 17:49:42 +0200 Subject: [PATCH 2/2] Bump pre-commit hooks --- .pre-commit-config.yaml | 8 ++++---- src/cluster/Backend.h | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 9b6440ef04..19ceeebcda 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -19,7 +19,7 @@ repos: files: '^testing/btest/.*$' - repo: https://github.com/pre-commit/mirrors-clang-format - rev: v20.1.7 + rev: v20.1.8 hooks: - id: clang-format types_or: @@ -28,13 +28,13 @@ repos: - "json" - repo: https://github.com/maxwinterstein/shfmt-py - rev: v3.11.0.2 + rev: v3.12.0.1 hooks: - id: shfmt args: ["-w", "-i", "4", "-ci"] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.12.1 + rev: v0.12.8 hooks: - id: ruff args: [--fix] @@ -46,7 +46,7 @@ repos: - id: cmake-format - repo: https://github.com/crate-ci/typos - rev: v1.33.1 + rev: v1.35.3 hooks: - id: typos exclude: '^(.typos.toml|src/SmithWaterman.cc|testing/.*|auxil/.*|scripts/base/frameworks/files/magic/.*|CHANGES|scripts/base/protocols/ssl/mozilla-ca-list.zeek)$' diff --git a/src/cluster/Backend.h b/src/cluster/Backend.h index 9775d598f0..4d520a1387 100644 --- a/src/cluster/Backend.h +++ b/src/cluster/Backend.h @@ -59,7 +59,7 @@ public: bool ProcessEvent(std::string_view topic, cluster::Event e) { return DoProcessEvent(topic, std::move(e)); } /** - * Method for enquing backend specific events. + * Method for enqueuing backend specific events. * * Some backend's may raise events destined for the local * scripting layer. That's usually wanted, but not always.