-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: update quic-go version (#4385)
Update the quic-go version. If you are using the squic.ConnDialer, make sure that the SCMP errors are not propagated up the stack to the quic-go transport.
- Loading branch information
Showing
22 changed files
with
259 additions
and
234 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 |
---|---|---|
|
@@ -72,7 +72,21 @@ http_archive( | |
], | ||
) | ||
|
||
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies") | ||
load("@bazel_gazelle//:deps.bzl", "gazelle_dependencies", "go_repository") | ||
|
||
# Explictly override golang.org/x/sys. Our github.com/quic-go/quic-go cannot | ||
# compile without at least golang.org/x/[email protected]. The rules_go version that | ||
# we use (v0.34.0) imports an older version. A recent enough version was only introduced | ||
# in v0.36.0. See: https://github.com/bazelbuild/rules_go/commit/64b9226a3bca997866b8831889ffb9de87405a0d | ||
# | ||
# This version should be kept in sync with the go_deps.bzl file. We can remove it | ||
# once we update the rules_go version. | ||
go_repository( | ||
name = "org_golang_x_sys", | ||
importpath = "golang.org/x/sys", | ||
sum = "h1:EBmGv8NaZBZTWvrbjNoL6HVt+IVy3QDQpJs7VRIw3tU=", | ||
version = "v0.8.0", | ||
) | ||
|
||
go_rules_dependencies() | ||
|
||
|
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
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
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
Oops, something went wrong.