Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions changelog/v0.28.0/go-124.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
changelog:
- type: BREAKING_CHANGE
description: "Update Go to 1.24"
issueLink: https://github.com/solo-io/solo-projects/issues/7609
resolvesIssue: false
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/solo-io/go-utils

go 1.23.0
go 1.24

require (
cloud.google.com/go/pubsub v1.33.0
Expand Down
3 changes: 2 additions & 1 deletion surveyutils/input.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package surveyutils

import (
"errors"
"fmt"
"strconv"
"strings"
Expand Down Expand Up @@ -197,7 +198,7 @@ func SelectJoinedData(message string, target *string, list []JoinerData) error {

func EnsureCsv(message string, source string, target *[]string, staticMode bool) error {
if staticMode && source == "" {
return fmt.Errorf(message)
return errors.New(message)
}
if !staticMode {
if err := GetStringInput(message, &source); err != nil {
Expand Down
2 changes: 1 addition & 1 deletion testutils/make.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ func MustMake(dir, args string) {
make.Dir = dir
out, err := make.CombinedOutput()
if err != nil {
fmt.Printf(string(out))
fmt.Print(string(out))
}
Expect(err).NotTo(HaveOccurred())
}