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

add module retractions #21665

Merged
merged 1 commit into from
Aug 26, 2024
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
6 changes: 5 additions & 1 deletion api/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ replace (
github.com/hashicorp/consul/sdk => ../sdk
)

retract v1.28.0 // tag was mutated
retract (
v1.28.0 // tag was mutated
v1.27.1 // tag was mutated
v1.21.2 // tag was mutated
)

require (
github.com/google/go-cmp v0.5.9
Expand Down
2 changes: 2 additions & 0 deletions envoyextensions/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ replace (
github.com/hashicorp/consul/sdk => ../sdk
)

retract v0.7.2 // tag was mutated

require (
github.com/envoyproxy/go-control-plane v0.12.0
github.com/google/go-cmp v0.5.9
Expand Down
6 changes: 6 additions & 0 deletions troubleshoot/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ exclude (
github.com/hashicorp/go-msgpack v1.1.6 // contains retractions but same as v1.1.5
)

retract (
v0.6.4 // tag was mutated
v0.6.2 // tag has incorrect line of deps
v0.6.1 // tag has incorrect line of deps
)

require (
github.com/envoyproxy/go-control-plane v0.12.0
github.com/envoyproxy/go-control-plane/xdsmatcher v0.0.0-20230524161521-aaaacbfbe53e
Expand Down
Loading