-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pin vitess.io/vitess to main for linker fixes in Go 1.23 (#22)
Upgrading dependences to use Go 1.23 resorts in linker errors, so this pins Vitess to the latest commit in `main` which has fixes to remove `runtime.roundupsize` from the linker. See vitessio/vitess#16015 for more information.
- Loading branch information
Showing
2 changed files
with
34 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,32 @@ | ||
module github.com/planetscale/psdbproxy | ||
|
||
go 1.22.1 | ||
go 1.23.1 | ||
|
||
require ( | ||
connectrpc.com/connect v1.14.0 | ||
github.com/golang/glog v1.2.0 | ||
github.com/golang/glog v1.2.2 | ||
github.com/planetscale/psdb v0.0.0-20231211201729-8cfd83fe2664 | ||
github.com/planetscale/vitess-types v0.0.0-20231211191709-770e14433716 | ||
github.com/spf13/pflag v1.0.5 | ||
// Once Vitess v19 is out, we can move to that but for now | ||
// we depend on latest main here. | ||
vitess.io/vitess v0.19.0 | ||
// Once a fix for https://github.com/vitessio/vitess/issues/16015 is out, we can pin to that version. | ||
// For now, pin to pain with the fixes. | ||
vitess.io/vitess v0.10.3-0.20240927074858-3e5371377b43 | ||
) | ||
|
||
require ( | ||
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/klauspost/compress v1.17.7 // indirect | ||
github.com/AdaLogics/go-fuzz-headers v0.0.0-20240806141605-e8a1dd7889d6 // indirect | ||
github.com/klauspost/compress v1.17.9 // indirect | ||
github.com/klauspost/connect-compress/v2 v2.0.0 // indirect | ||
github.com/pires/go-proxyproto v0.7.0 // indirect | ||
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect | ||
github.com/segmentio/asm v1.2.0 // indirect | ||
github.com/slok/noglog v0.2.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240304212257-790db918fca8 // indirect | ||
google.golang.org/grpc v1.62.1 // indirect | ||
google.golang.org/protobuf v1.33.0 // indirect | ||
golang.org/x/sys v0.25.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect | ||
google.golang.org/grpc v1.66.2 // indirect | ||
google.golang.org/protobuf v1.34.2 // indirect | ||
) | ||
|
||
replace github.com/golang/glog => github.com/planetscale/noglog v0.2.1-0.20210421230640-bea75fcd2e8e |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters