From cdc8765a9edbbcf08e4d715b6bad0b303e30a0e7 Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Sat, 22 Nov 2025 06:26:55 +0100 Subject: [PATCH] Cut release 1.2.1-1 --- debian/changelog | 11 +++++++++++ src/main.go | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 8790016..f0a5b71 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +govpp-snmp-agentx (1.2.1-1) bookworm; urgency=medium + + * Fix OID visibility bug after go-agentx 0.3.0 upgrade + * Use reflection to clear handler contents instead of creating new handlers + * Simplify AgentX session creation and registration logic + * Add proper session cleanup method (Close()) + * Improve error handling in AgentX interactions + * Code cleanup and maintainability improvements + + -- Pim van Pelt Fri, 22 Nov 2024 00:00:00 +0000 + govpp-snmp-agentx (1.2.0-1) bookworm; urgency=medium * Update go-agentx dependency from 0.2.1 to 0.3.0 to fix compilation issues diff --git a/src/main.go b/src/main.go index 93bf6a9..7e51974 100644 --- a/src/main.go +++ b/src/main.go @@ -16,7 +16,7 @@ import ( "govpp-snmp-agentx/vpp" ) -const Version = "1.2.0-1" +const Version = "1.2.1-1" func main() { debug := flag.Bool("debug", false, "Enable debug logging")