Cut release 1.2.1-1

This commit is contained in:
Pim van Pelt
2025-11-22 06:26:55 +01:00
parent 9596e16887
commit cdc8765a9e
2 changed files with 12 additions and 1 deletions

11
debian/changelog vendored
View File

@@ -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 <pim@ipng.ch> 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

View File

@@ -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")