Browse Source

add module retractions (#21665)

pull/21666/head
John Murret 3 months ago committed by GitHub
parent
commit
9c02eff1cd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 6
      api/go.mod
  2. 2
      envoyextensions/go.mod
  3. 6
      troubleshoot/go.mod

6
api/go.mod

@ -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

2
envoyextensions/go.mod

@ -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

6
troubleshoot/go.mod

@ -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

Loading…
Cancel
Save