From 41ef4411d9da5d0e6746b2d02fc2e4453ee518b6 Mon Sep 17 00:00:00 2001 From: Feng Ruohang Date: Thu, 3 Sep 2026 06:52:33 +0800 Subject: [PATCH] build: move to Go 1.27.1 Go 1.27.1 (2026-09-01) carries fixes to the runtime, compiler, net/http, encoding/json, os and database/sql. The go directive, the dependency check script and the image build stage follow it; CI reads the version from go.mod. The remaining golang.org/x modules the server requires are already at their latest releases. Co-Authored-By: Claude Fable 5.1 Claude-Session: https://claude.ai/code/session_01QwirCh4nsrJCQp2WaXoVLK Signed-off-by: Feng Ruohang --- Dockerfile.goreleaser | 2 +- buildscripts/checkdeps.sh | 2 +- go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile.goreleaser b/Dockerfile.goreleaser index a82aa8497..821658771 100644 --- a/Dockerfile.goreleaser +++ b/Dockerfile.goreleaser @@ -1,4 +1,4 @@ -FROM golang:1.27.0-alpine AS build +FROM golang:1.27.1-alpine AS build ARG TARGETARCH diff --git a/buildscripts/checkdeps.sh b/buildscripts/checkdeps.sh index 4fc385a29..58b222462 100755 --- a/buildscripts/checkdeps.sh +++ b/buildscripts/checkdeps.sh @@ -7,7 +7,7 @@ _init() { ## Minimum required versions for build dependencies GIT_VERSION="1.0" - GO_VERSION="1.27.0" + GO_VERSION="1.27.1" OSX_VERSION="10.8" KNAME=$(uname -s) ARCH=$(uname -m) diff --git a/go.mod b/go.mod index 90a19cedd..612d99660 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/minio/minio -go 1.27.0 +go 1.27.1 // Use Pigsty's SILO Console while preserving upstream import paths. The // pseudo-version pins the last commit of the v2.3.0 line before Console moved