Skip to content

Commit d3d0516

Browse files
authored
Upgrade to Go 1.24 (#587)
* Upgrade to Go 1.24 * Updating dependencies * Fixing complilation error * Added dependency bumps
1 parent 45d037f commit d3d0516

File tree

4 files changed

+43
-60
lines changed

4 files changed

+43
-60
lines changed

changelog/v0.43.0/go-124.yaml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
changelog:
2+
- type: BREAKING_CHANGE
3+
description: >
4+
Bump dependencies to support Go 1.24
5+
issueLink: https://github.com/solo-io/solo-projects/issues/7609
6+
resolvesIssue: false
7+
- dependencyOwner: solo-io
8+
dependencyRepo: go-utils
9+
dependencyTag: v0.28.4
10+
type: DEPENDENCY_BUMP
11+
- dependencyOwner: solo-io
12+
dependencyRepo: anyvendor
13+
dependencyTag: v0.2.0
14+
type: DEPENDENCY_BUMP
15+
- dependencyOwner: solo-io
16+
dependencyRepo: k8s-utils
17+
dependencyTag: v0.10.0
18+
type: DEPENDENCY_BUMP
19+
- dependencyOwner: solo-io
20+
dependencyRepo: protoc-gen-ext
21+
dependencyTag: v0.1.0
22+
type: DEPENDENCY_BUMP
23+
- dependencyOwner: solo-io
24+
dependencyRepo: protoc-gen-openapi
25+
dependencyTag: v0.3.0
26+
type: DEPENDENCY_BUMP

codegen/doc/helm_values.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ func (v HelmValues) ToMarkdown(title string) string {
6868
fmt.Fprintln(result, "|Option|Type|Description|Default Value|")
6969
fmt.Fprintln(result, "|------|----|-----------|-------------|")
7070
for _, uniqueRow := range uniques {
71-
fmt.Fprintf(result, uniqueRow)
71+
fmt.Fprint(result, uniqueRow)
7272
}
7373
return result.String()
7474
}

go.mod

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/solo-io/skv2
22

3-
go 1.23.1
3+
go 1.24
44

55
require (
66
github.com/BurntSushi/toml v1.3.2
@@ -36,13 +36,13 @@ require (
3636
github.com/rogpeppe/go-internal v1.12.0
3737
github.com/rotisserie/eris v0.1.1
3838
github.com/sirupsen/logrus v1.9.3
39-
github.com/solo-io/anyvendor v0.0.4
39+
github.com/solo-io/anyvendor v0.2.0
4040
github.com/solo-io/cue v0.4.7
4141
github.com/solo-io/go-list-licenses v0.0.4
42-
github.com/solo-io/go-utils v0.27.4
43-
github.com/solo-io/k8s-utils v0.9.0
44-
github.com/solo-io/protoc-gen-ext v0.0.20
45-
github.com/solo-io/protoc-gen-openapi v0.2.5
42+
github.com/solo-io/go-utils v0.28.4
43+
github.com/solo-io/k8s-utils v0.10.0
44+
github.com/solo-io/protoc-gen-ext v0.1.0
45+
github.com/solo-io/protoc-gen-openapi v0.3.0
4646
github.com/spf13/pflag v1.0.5
4747
go.uber.org/zap v1.27.0
4848
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56

0 commit comments

Comments
 (0)