From 68c83eb419ad63e710e40d6670a0b09b4152f595 Mon Sep 17 00:00:00 2001 From: Michael Gaffney Date: Sat, 7 Sep 2024 16:57:17 -0400 Subject: [PATCH] chore: Bump to Go version 1.23.1 Go 1.23.1 includes security fixes to the encoding/gob, go/build/constraint, and go/parser packages, as well as bug fixes to the compiler, the go command, the runtime, and the database/sql, go/types, os, runtime/trace, and unique packages. See: https://groups.google.com/g/golang-announce/c/K-cEzDeCtpc --- .go-version | 2 +- api/go.mod | 2 +- go.mod | 2 +- sdk/go.mod | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.go-version b/.go-version index a6c2798a48..49e0a31d49 100644 --- a/.go-version +++ b/.go-version @@ -1 +1 @@ -1.23.0 +1.23.1 diff --git a/api/go.mod b/api/go.mod index 21b0d55a6d..00b7c7af6b 100644 --- a/api/go.mod +++ b/api/go.mod @@ -1,6 +1,6 @@ module github.com/hashicorp/boundary/api -go 1.23.0 +go 1.23.1 require ( github.com/hashicorp/boundary/sdk v0.0.40 diff --git a/go.mod b/go.mod index 1f9cf204e2..0ac8763466 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/hashicorp/boundary -go 1.23.0 +go 1.23.1 replace github.com/hashicorp/boundary/api => ./api diff --git a/sdk/go.mod b/sdk/go.mod index e6e8d5e207..e972dd45f7 100644 --- a/sdk/go.mod +++ b/sdk/go.mod @@ -1,6 +1,6 @@ module github.com/hashicorp/boundary/sdk -go 1.23.0 +go 1.23.1 require ( github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1