From 814784127576e2b31d4d2bd912cdccf6d87075f7 Mon Sep 17 00:00:00 2001 From: Ryan Olds Date: Fri, 21 Feb 2025 15:14:12 -0800 Subject: [PATCH] Upgrade to Go 1.24 (#21) --- changelog/v0.3.0/go-124.yaml | 8 ++++++++ go.mod | 17 ++++++++++++++--- 2 files changed, 22 insertions(+), 3 deletions(-) create mode 100644 changelog/v0.3.0/go-124.yaml diff --git a/changelog/v0.3.0/go-124.yaml b/changelog/v0.3.0/go-124.yaml new file mode 100644 index 0000000..1a22654 --- /dev/null +++ b/changelog/v0.3.0/go-124.yaml @@ -0,0 +1,8 @@ +changelog: +- type: BREAKING_CHANGE + description: Bumped the Go version to 1.24.0 + dependencyOwner: golang + dependencyRepo: go + dependencyTag: v1.24.0 + issueLink: https://github.com/solo-io/solo-projects/issues/7609 + resolvesIssue: false \ No newline at end of file diff --git a/go.mod b/go.mod index 7b0b93b..4f608a9 100644 --- a/go.mod +++ b/go.mod @@ -1,14 +1,25 @@ module github.com/solo-io/ext-auth-plugins -go 1.13 +go 1.24 require ( github.com/envoyproxy/go-control-plane v0.9.8 - github.com/hpcloud/tail v1.0.1-0.20180514194441-a1dbeea552b7 // indirect github.com/onsi/ginkgo v1.7.0 github.com/onsi/gomega v1.4.3 - golang.org/x/net v0.0.0-20190611141213-3f473d35a33a // indirect google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55 google.golang.org/grpc v1.27.0 +) + +require ( + github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403 // indirect + github.com/envoyproxy/protoc-gen-validate v0.1.0 // indirect + github.com/golang/protobuf v1.4.2 // indirect + github.com/hpcloud/tail v1.0.1-0.20180514194441-a1dbeea552b7 // indirect + golang.org/x/net v0.0.0-20190611141213-3f473d35a33a // indirect + golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a // indirect + golang.org/x/text v0.3.0 // indirect + google.golang.org/protobuf v1.23.0 // indirect gopkg.in/fsnotify/fsnotify.v1 v1.4.7 // indirect + gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect + gopkg.in/yaml.v2 v2.2.2 // indirect )