From eb6b65484c75f86d94296962ac53874ad4fc52cd Mon Sep 17 00:00:00 2001 From: Aaron Son Date: Tue, 14 Oct 2025 10:53:52 +0200 Subject: [PATCH] go.mod,.github: Build with go 1.25.1. 1.25.2 introduces stricter net/url.Parse semantics on bracketed hostname components, which breaks the (non-standard) URLs that Dolt uses for AWS remotes. We will build with the previous version of Go until we can fix this. --- .github/workflows/cd-release-pgo.yaml | 4 ++-- go/go.mod | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cd-release-pgo.yaml b/.github/workflows/cd-release-pgo.yaml index 9fb0b5d7aa..2c5977d414 100644 --- a/.github/workflows/cd-release-pgo.yaml +++ b/.github/workflows/cd-release-pgo.yaml @@ -85,9 +85,9 @@ jobs: run: | latest=$(git rev-parse HEAD) echo "commitish=$latest" >> $GITHUB_OUTPUT - GO_BUILD_VERSION=1.25 go/utils/publishrelease/buildpgobinaries.sh + GO_BUILD_VERSION=1.25.1 go/utils/publishrelease/buildpgobinaries.sh env: - GO_BUILD_VERSION: "1.25" + GO_BUILD_VERSION: "1.25.1" PROFILE: ${{ format('{0}/dolt-cpu-profile.pprof', github.workspace) }} - name: Create Release id: create_release diff --git a/go/go.mod b/go/go.mod index b1deef7b76..b410eb540e 100644 --- a/go/go.mod +++ b/go/go.mod @@ -199,4 +199,4 @@ require ( gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect ) -go 1.25.0 +go 1.25.1