From dce4750b0fac2a04fdf0414fa8cc56d0306197b4 Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Wed, 2 Jul 2025 23:16:20 +0200 Subject: [PATCH] Bump version v1.1.5-1 --- debian/changelog | 10 ++++++++++ src/main.go | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index be3d101..2424e2b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +govpp-snmp-agentx (1.1.5-1) bookworm; urgency=medium + + * Implement automatic interface deletion handling in IF-MIB + * Simplify interface event processing by removing separate delete callbacks + * Remove unused functions and clean up codebase (RemoveInterface, rebuildMIB) + * Improve interface state synchronization between VPP and SNMP MIB + * Automatically detect and remove deleted interfaces during updates + + -- Pim van Pelt Wed, 02 Jul 2025 00:00:00 +0000 + govpp-snmp-agentx (1.1.4-1) bookworm; urgency=medium * Major VPP module refactoring with improved separation of concerns diff --git a/src/main.go b/src/main.go index 9e05f19..716a7f3 100644 --- a/src/main.go +++ b/src/main.go @@ -16,7 +16,7 @@ import ( "govpp-snmp-agentx/vpp" ) -const Version = "1.1.4-1" +const Version = "1.1.5-1" func main() { debug := flag.Bool("debug", false, "Enable debug logging")