From 1889934a9cc3a4544a7cabdfb4c81738c71ed4d0 Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Tue, 24 Jun 2025 07:06:09 +0200 Subject: [PATCH] Release 1.1.4-1 --- debian/changelog | 11 +++++++++++ src/main.go | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 3fcca02..be3d101 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +govpp-snmp-agentx (1.1.4-1) bookworm; urgency=medium + + * Major VPP module refactoring with improved separation of concerns + * Replace legacy global functions with structured VPPClient, InterfaceManager, and StatsManager + * Fix stats polling timing bug - now properly respects vppstats.period setting + * Add comprehensive test suite with 64.6% code coverage + * Improve connection management and error handling + * Remove legacy compatibility functions for cleaner API + + -- Pim van Pelt Mon, 24 Jun 2025 01:00:00 +0000 + govpp-snmp-agentx (1.1.3-1) bookworm; urgency=medium * Use fallback packet counters when VPP unicast stats are unavailable diff --git a/src/main.go b/src/main.go index 68d4183..1dc0086 100644 --- a/src/main.go +++ b/src/main.go @@ -16,7 +16,7 @@ import ( "govpp-snmp-agentx/vpp" ) -const Version = "1.1.3-1" +const Version = "1.1.4-1" func main() { debug := flag.Bool("debug", false, "Enable debug logging")