diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index ae59a17db9..d0d2c3b7cc 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -13,7 +13,7 @@ repos: exclude: '^(testing/btest/(Baseline|plugins|spicy|scripts)/.*|testing/builtin-plugins/.*)$' - repo: https://github.com/pre-commit/mirrors-clang-format - rev: v19.1.7 + rev: v20.1.0 hooks: - id: clang-format types_or: @@ -22,13 +22,13 @@ repos: - "json" - repo: https://github.com/maxwinterstein/shfmt-py - rev: v3.7.0.1 + rev: v3.11.0.2 hooks: - id: shfmt args: ["-w", "-i", "4", "-ci"] - repo: https://github.com/astral-sh/ruff-pre-commit - rev: v0.9.9 + rev: v0.11.4 hooks: - id: ruff args: [--fix] diff --git a/CHANGES b/CHANGES index 40d3331c81..5797f56656 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,9 @@ +7.2.0-dev.486 | 2025-04-08 11:00:46 -0700 + + * Bump pre-commit hooks (Benjamin Bannier, Corelight) + + * Bump auxil/spicy to latest development snapshot (Benjamin Bannier, Corelight) + 7.2.0-dev.482 | 2025-04-08 10:59:15 -0700 * Make SNAP analyzer use both OUI and protocol for forwarding (Tim Wojtulewicz, Corelight) diff --git a/VERSION b/VERSION index 35851da193..190e9b0cc2 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -7.2.0-dev.482 +7.2.0-dev.486 diff --git a/auxil/spicy b/auxil/spicy index 26421d12f1..d132c06d20 160000 --- a/auxil/spicy +++ b/auxil/spicy @@ -1 +1 @@ -Subproject commit 26421d12f15d8b16ba6f385bbd47394cc9f9a0df +Subproject commit d132c06d20245787d67d46acd1a52929f077ff3b diff --git a/src/analyzer/Component.h b/src/analyzer/Component.h index 3b4307134e..324cc6e5bb 100644 --- a/src/analyzer/Component.h +++ b/src/analyzer/Component.h @@ -24,7 +24,7 @@ class Analyzer; */ class Component : public plugin::Component { public: - using factory_callback = Analyzer* (*)(Connection* conn); + using factory_callback = Analyzer* (*)(Connection * conn); /** * Constructor. diff --git a/src/input/Component.h b/src/input/Component.h index 7ccca6db4e..c730fa152d 100644 --- a/src/input/Component.h +++ b/src/input/Component.h @@ -15,7 +15,7 @@ class ReaderBackend; */ class Component : public plugin::Component { public: - using factory_callback = ReaderBackend* (*)(ReaderFrontend* frontend); + using factory_callback = ReaderBackend* (*)(ReaderFrontend * frontend); /** * Constructor. diff --git a/src/logging/Component.h b/src/logging/Component.h index eca2412276..67e859898c 100644 --- a/src/logging/Component.h +++ b/src/logging/Component.h @@ -15,7 +15,7 @@ class WriterBackend; */ class Component : public plugin::Component { public: - using factory_callback = WriterBackend* (*)(WriterFrontend* frontend); + using factory_callback = WriterBackend* (*)(WriterFrontend * frontend); /** * Constructor.