From 888348ac551df1c17eaf711d1f071c399b6bc50c Mon Sep 17 00:00:00 2001 From: Tobias Gesellchen Date: Sat, 15 Aug 2026 14:21:43 +0200 Subject: [PATCH] chore: bump Go to 1.26.6, refresh example go.mod pins Bumps the go directive to 1.26.6 across the main module and both standalone example modules (preset-management, navigation-station-demo), plus the builder image in Dockerfile and the three mock-service images in docker-compose.ci.yml. Also refreshes the examples' require github.com/gesellix/bose-soundtouch pin from the stale v0.118.0 to the current v0.123.0 release tag (the replace directive means they build against local source regardless, but the pin should still track reality). go mod tidy run in all three modules; no other dependency changes. --- Dockerfile | 2 +- docker-compose.ci.yml | 6 +++--- examples/navigation-station-demo/go.mod | 4 ++-- examples/preset-management/go.mod | 4 ++-- go.mod | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index c01ec25..a3581dc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build stage -FROM --platform=$BUILDPLATFORM golang:1.26.5-alpine AS builder +FROM --platform=$BUILDPLATFORM golang:1.26.6-alpine AS builder # Declare automatic platform ARGs to make them available in build stage # See https://docs.docker.com/reference/dockerfile#automatic-platform-args-in-the-global-scope diff --git a/docker-compose.ci.yml b/docker-compose.ci.yml index d25eaa5..3af68d0 100644 --- a/docker-compose.ci.yml +++ b/docker-compose.ci.yml @@ -35,7 +35,7 @@ services: start_period: 3s spotify-mock: - image: golang:1.26.5-alpine + image: golang:1.26.6-alpine container_name: spotify-mock working_dir: /app volumes: @@ -53,7 +53,7 @@ services: start_period: 3s amazon-mock: - image: golang:1.26.5-alpine + image: golang:1.26.6-alpine container_name: amazon-mock working_dir: /app volumes: @@ -71,7 +71,7 @@ services: start_period: 3s tunein-mock: - image: golang:1.26.5-alpine + image: golang:1.26.6-alpine container_name: tunein-mock working_dir: /app volumes: diff --git a/examples/navigation-station-demo/go.mod b/examples/navigation-station-demo/go.mod index 98544bf..fafd269 100644 --- a/examples/navigation-station-demo/go.mod +++ b/examples/navigation-station-demo/go.mod @@ -1,8 +1,8 @@ module navigation-station-demo -go 1.26.5 +go 1.26.6 -require github.com/gesellix/bose-soundtouch v0.118.0 +require github.com/gesellix/bose-soundtouch v0.123.0 require github.com/gorilla/websocket v1.5.3 // indirect diff --git a/examples/preset-management/go.mod b/examples/preset-management/go.mod index e981d3e..38ee4e6 100644 --- a/examples/preset-management/go.mod +++ b/examples/preset-management/go.mod @@ -1,8 +1,8 @@ module preset-management-example -go 1.26.5 +go 1.26.6 -require github.com/gesellix/bose-soundtouch v0.118.0 +require github.com/gesellix/bose-soundtouch v0.123.0 require github.com/gorilla/websocket v1.5.3 // indirect diff --git a/go.mod b/go.mod index e29a6ea..7274ffe 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/gesellix/bose-soundtouch -go 1.26.5 +go 1.26.6 require ( filippo.io/age v1.3.1