From 15216782d1332988ce478abc50511f5d53fe86cc Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Tue, 24 Jun 2025 06:28:18 +0200 Subject: [PATCH] Debian package 1.1.3-1 --- debian/changelog | 9 +++++++++ src/main.go | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 6a0ea11..3fcca02 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +govpp-snmp-agentx (1.1.3-1) bookworm; urgency=medium + + * Use fallback packet counters when VPP unicast stats are unavailable + * Fix unicast packet reporting for interfaces without detailed stats collection + * Add VPP configuration comments for stats-collect feature requirements + * Improve packet counter accuracy across different VPP configurations + + -- Pim van Pelt Mon, 24 Jun 2025 00:00:00 +0000 + govpp-snmp-agentx (1.1.2-1) bookworm; urgency=medium * Add startup version logging to INFO log level diff --git a/src/main.go b/src/main.go index c40dd7b..445c9d7 100644 --- a/src/main.go +++ b/src/main.go @@ -16,7 +16,7 @@ import ( "govpp-snmp-agentx/vpp" ) -const Version = "1.1.2-1" +const Version = "1.1.3-1" func main() { debug := flag.Bool("debug", false, "Enable debug logging")