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
19 changes: 19 additions & 0 deletions changelog/v0.39.1/go-1-24-6.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
changelog:
- type: DEPENDENCY_BUMP
dependencyOwner: golang
dependencyRepo: go
dependencyTag: v1.24.6
description: "Update Go to 1.24.6"
issueLink: https://github.com/solo-io/solo-projects/issues/8512
resolvesIssue: false
- type: DEPENDENCY_BUMP
dependencyOwner: solo-io
dependencyRepo: go-utils
dependencyTag: v0.28.6
description: "Update go-utils to 0.28.6"
issueLink: https://github.com/solo-io/solo-projects/issues/8512
resolvesIssue: false
- type: DEPENDENCY_BUMP
dependencyOwner: solo-io
dependencyRepo: cloud-builders
dependencyTag: v0.13.1
10 changes: 5 additions & 5 deletions cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ steps:
dir: &dir '/workspace/solo-kit'

# prepare-workspace to set up the project so it can be built and tested
- name: 'gcr.io/$PROJECT_ID/prepare-go-workspace:0.13.0'
- name: 'gcr.io/$PROJECT_ID/prepare-go-workspace:0.13.1'
args:
- "--repo-name"
- "$REPO_NAME"
Expand All @@ -20,14 +20,14 @@ steps:
id: 'prepare-workspace'

# download massive container in parallel
- name: 'gcr.io/$PROJECT_ID/e2e-go-mod-ginkgo:0.13.0'
- name: 'gcr.io/$PROJECT_ID/e2e-go-mod-ginkgo:0.13.1'
entrypoint: 'bash'
dir: *dir
args: ['-c', 'ls']
waitFor: ['-']

# Installs go executables required by codegen tests
- name: 'gcr.io/$PROJECT_ID/go-mod-make:0.13.0'
- name: 'gcr.io/$PROJECT_ID/go-mod-make:0.13.1'
args: ['update-all']
waitFor: ['prepare-workspace']
id: 'update-deps'
Expand All @@ -45,7 +45,7 @@ steps:

# check code gen for kubernetes custom resources
# this step passes if there is no generated diff, fails otherwise
- name: 'gcr.io/$PROJECT_ID/go-mod-make:0.13.0'
- name: 'gcr.io/$PROJECT_ID/go-mod-make:0.13.1'
entrypoint: 'bash'
args: ['ci/check-code-gen.sh']
waitFor: ['update-deps']
Expand All @@ -55,7 +55,7 @@ steps:
# e2e-go-mod-ginkgo is produced from https://github.com/solo-io/cloud-builders/tree/master/e2e-go-mod-ginkgo
# sets up redis, consul, kubectl, go with required environment variables
# need to use the provided entrypoint
- name: 'gcr.io/$PROJECT_ID/e2e-go-mod-ginkgo:0.13.0'
- name: 'gcr.io/$PROJECT_ID/e2e-go-mod-ginkgo:0.13.1'
dir: *dir
entrypoint: 'make'
args:
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/solo-io/solo-kit

go 1.24.4
go 1.24.6

require (
cuelang.org/go v0.3.2
Expand Down Expand Up @@ -29,7 +29,7 @@ require (
github.com/rotisserie/eris v0.1.1
github.com/solo-io/anyvendor v0.2.0
github.com/solo-io/go-list-licenses v0.1.4
github.com/solo-io/go-utils v0.28.5
github.com/solo-io/go-utils v0.28.6
github.com/solo-io/k8s-utils v0.11.0
github.com/solo-io/protoc-gen-ext v0.1.0
github.com/solo-io/protoc-gen-openapi v0.3.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -558,8 +558,8 @@ github.com/solo-io/anyvendor v0.2.0/go.mod h1:WIJdoBmSQCii7hsiCpjXNWa0AnRzOLbg6P
github.com/solo-io/go-list-licenses v0.1.4 h1:u4xh1OUORT4iSWuAp3Q4NsfHcDaeUV8QRDH8ACQqbxw=
github.com/solo-io/go-list-licenses v0.1.4/go.mod h1:x6LSp/NrYgVXwNum7ZOiaAYTpg6B3F6TrWYfcdHVroA=
github.com/solo-io/go-utils v0.20.2/go.mod h1:6e8K1spnMWwlnJRSNp/J84GEyJbrcK4Gm7i+ehzCi8c=
github.com/solo-io/go-utils v0.28.5 h1:SendslIDYc46qp2QLtfd7cEi6jJWf90W51dzzQg3eRg=
github.com/solo-io/go-utils v0.28.5/go.mod h1:/V0ovlR+tGhb4+QNYIffKscuhtUIEoN29mJhWjYLYA4=
github.com/solo-io/go-utils v0.28.6 h1:Ai/3Yo+Exa6w5N3CanQXHmxW7471Ne23vO1bpkQT/lg=
github.com/solo-io/go-utils v0.28.6/go.mod h1:xA4ARGfGXD2QRRGpFFX6AQVTn4mUklnzrS5FJ5Xcgbo=
github.com/solo-io/k8s-utils v0.11.0 h1:HxeqetI7rHlZaYjh7WX1QV0S1QFH910dJZy01DVyiPw=
github.com/solo-io/k8s-utils v0.11.0/go.mod h1:3SeJQq6VGTwmCDhw5WM49A2Awa9dM370fk/TVCdH70A=
github.com/solo-io/protoc-gen-ext v0.1.0 h1:WvmXaontRCax9Wq5vAdewv+4tCwTrubC5rbk6coSajQ=
Expand Down