Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: Remove Go minor version from go.mods #1078

Merged
merged 1 commit into from
Jan 2, 2025
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
2 changes: 1 addition & 1 deletion contrib/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/envoyproxy/go-control-plane/contrib

go 1.21
go 1.22

replace github.com/envoyproxy/go-control-plane/envoy => ../envoy

Expand Down
2 changes: 1 addition & 1 deletion envoy/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/envoyproxy/go-control-plane/envoy

go 1.21
go 1.22

require (
github.com/cncf/xds/go v0.0.0-20240723142845-024c85f92f20
Expand Down
2 changes: 1 addition & 1 deletion examples/dyplomat/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/envoyproxy/go-control-plane/examples/dyplomat

go 1.22.8
go 1.22

replace (
github.com/envoyproxy/go-control-plane => ../..
Expand Down
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/envoyproxy/go-control-plane

go 1.22.8
go 1.22

replace (
github.com/envoyproxy/go-control-plane/envoy => ./envoy
Expand Down
2 changes: 1 addition & 1 deletion internal/tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/envoyproxy/go-control-plane/internal/tools

go 1.23.1
go 1.22.1

require (
github.com/golangci/golangci-lint v1.62.2
Expand Down
2 changes: 1 addition & 1 deletion ratelimit/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/envoyproxy/go-control-plane/ratelimit

go 1.21
go 1.22

replace github.com/envoyproxy/go-control-plane/envoy => ../envoy

Expand Down
2 changes: 1 addition & 1 deletion xdsmatcher/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/envoyproxy/go-control-plane/xdsmatcher

go 1.22.8
go 1.22

replace github.com/envoyproxy/go-control-plane/envoy => ../envoy

Expand Down
Loading