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 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01QwirCh4nsrJCQp2WaXoVLK
Signed-off-by: Feng Ruohang <rh@vonng.com>
This commit is contained in:
Feng Ruohang
2026-09-03 06:52:33 +08:00
parent 035aa6c201
commit 41ef4411d9
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
FROM golang:1.27.0-alpine AS build FROM golang:1.27.1-alpine AS build
ARG TARGETARCH ARG TARGETARCH
+1 -1
View File
@@ -7,7 +7,7 @@ _init() {
## Minimum required versions for build dependencies ## Minimum required versions for build dependencies
GIT_VERSION="1.0" GIT_VERSION="1.0"
GO_VERSION="1.27.0" GO_VERSION="1.27.1"
OSX_VERSION="10.8" OSX_VERSION="10.8"
KNAME=$(uname -s) KNAME=$(uname -s)
ARCH=$(uname -m) ARCH=$(uname -m)
+1 -1
View File
@@ -1,6 +1,6 @@
module github.com/minio/minio module github.com/minio/minio
go 1.27.0 go 1.27.1
// Use Pigsty's SILO Console while preserving upstream import paths. The // 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 // pseudo-version pins the last commit of the v2.3.0 line before Console moved