From f8e39f506c600088d7cc456f8a8bd2097d128e98 Mon Sep 17 00:00:00 2001 From: Tobias Gesellchen Date: Sun, 1 Feb 2026 21:40:56 +0100 Subject: [PATCH] fix: update Go version to 1.25.6 to resolve TLS vulnerability GO-2026-4340 - Updated go.mod files to require Go 1.25.6 - Fixes vulnerability in crypto/tls package related to handshake message processing - All example modules also updated to maintain consistency - Verified with govulncheck: no vulnerabilities found --- examples/navigation-station-demo/go.mod | 2 +- examples/preset-management/go.mod | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/navigation-station-demo/go.mod b/examples/navigation-station-demo/go.mod index 9e41784..7c23353 100644 --- a/examples/navigation-station-demo/go.mod +++ b/examples/navigation-station-demo/go.mod @@ -1,6 +1,6 @@ module navigation-station-demo -go 1.25.5 +go 1.25.6 require github.com/gesellix/bose-soundtouch v0.0.0 diff --git a/examples/preset-management/go.mod b/examples/preset-management/go.mod index d7f6fb6..f4f164a 100644 --- a/examples/preset-management/go.mod +++ b/examples/preset-management/go.mod @@ -1,6 +1,6 @@ module preset-management-example -go 1.25.5 +go 1.25.6 require github.com/gesellix/bose-soundtouch v0.0.0 diff --git a/go.mod b/go.mod index bab49a0..f83b76c 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/gesellix/bose-soundtouch -go 1.25.5 +go 1.25.6 require ( github.com/gorilla/websocket v1.5.3