Skip to content

Commit ce060d3

Browse files
committed
Merge remote-tracking branch 'upstream/main' into mhamza/pool-reuse
Signed-off-by: Mohamed Hamza <[email protected]>
2 parents 9d81683 + 0e0f4da commit ce060d3

File tree

23 files changed

+389
-22
lines changed

23 files changed

+389
-22
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ $(PROTO_GO_OUTS): minimaltools install_protoc-gen-go proto/*.proto
286286
# This rule builds the bootstrap images for all flavors.
287287
DOCKER_IMAGES_FOR_TEST = mysql80 mysql84 percona80
288288
DOCKER_IMAGES = common $(DOCKER_IMAGES_FOR_TEST)
289-
BOOTSTRAP_VERSION=44
289+
BOOTSTRAP_VERSION=45
290290
ensure_bootstrap_version:
291291
find docker/ -type f -exec sed -i "s/^\(ARG bootstrap_version\)=.*/\1=${BOOTSTRAP_VERSION}/" {} \;
292292
sed -i 's/\(^.*flag.String(\"bootstrap-version\",\) *\"[^\"]\+\"/\1 \"${BOOTSTRAP_VERSION}\"/' test.go

build.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
source ./tools/shell_functions.inc
1818

1919
go version >/dev/null 2>&1 || fail "Go is not installed or is not in \$PATH. See https://vitess.io/contributing/build-from-source for install instructions."
20-
goversion_min 1.24.2 || echo "Go version reported: `go version`. Version 1.24.2+ recommended. See https://vitess.io/contributing/build-from-source for install instructions."
20+
goversion_min 1.24.3 || echo "Go version reported: `go version`. Version 1.24.3+ recommended. See https://vitess.io/contributing/build-from-source for install instructions."
2121

2222
mkdir -p dist
2323
mkdir -p bin

docker/bootstrap/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,4 +174,8 @@ List of changes between bootstrap image versions.
174174

175175
## [44] - 2025-04-02
176176
### Changes
177-
- Update build to golang 1.24.2
177+
- Update build to golang 1.24.2
178+
179+
## [45] - 2025-05-07
180+
### Changes
181+
- Update build to golang 1.24.3

docker/bootstrap/Dockerfile.common

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=linux/amd64 golang:1.24.2-bookworm
1+
FROM --platform=linux/amd64 golang:1.24.3-bookworm
22

33
# Install Vitess build dependencies
44
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \

docker/lite/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM --platform=linux/amd64 golang:1.24.2-bookworm AS builder
15+
FROM --platform=linux/amd64 golang:1.24.3-bookworm AS builder
1616

1717
# Allows docker builds to set the BUILD_NUMBER
1818
ARG BUILD_NUMBER

docker/lite/Dockerfile.mysql84

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM --platform=linux/amd64 golang:1.24.2-bookworm AS builder
15+
FROM --platform=linux/amd64 golang:1.24.3-bookworm AS builder
1616

1717
# Allows docker builds to set the BUILD_NUMBER
1818
ARG BUILD_NUMBER

docker/lite/Dockerfile.percona80

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM --platform=linux/amd64 golang:1.24.2-bookworm AS builder
15+
FROM --platform=linux/amd64 golang:1.24.3-bookworm AS builder
1616

1717
# Allows docker builds to set the BUILD_NUMBER
1818
ARG BUILD_NUMBER

docker/vttestserver/Dockerfile.mysql80

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM --platform=linux/amd64 golang:1.24.2-bookworm AS builder
15+
FROM --platform=linux/amd64 golang:1.24.3-bookworm AS builder
1616

1717
# Allows docker builds to set the BUILD_NUMBER
1818
ARG BUILD_NUMBER

docker/vttestserver/Dockerfile.mysql84

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
FROM --platform=linux/amd64 golang:1.24.2-bookworm AS builder
15+
FROM --platform=linux/amd64 golang:1.24.3-bookworm AS builder
1616

1717
# Allows docker builds to set the BUILD_NUMBER
1818
ARG BUILD_NUMBER

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module vitess.io/vitess
22

3-
go 1.24.2
3+
go 1.24.3
44

55
require (
66
cloud.google.com/go/storage v1.52.0

0 commit comments

Comments
 (0)