Skip to content

Commit f458eb9

Browse files
Bump the go-tests group across 1 directory with 2 updates (#1106)
Bumps the go-tests group with 2 updates in the /tests directory: [golang.org/x/net](https://github.com/golang/net) and google.golang.org/protobuf. Updates `golang.org/x/net` from 0.24.0 to 0.25.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/net/commit/d27919b57fa8dd03198f85ca9e675e1a09babd7d"><code>d27919b</code></a> go.mod: update golang.org/x dependencies</li> <li><a href="https://github.com/golang/net/commit/e0324fcdb510ad91eaeb1f9bd7a1b7d564f7c549"><code>e0324fc</code></a> http2: use net.ErrClosed</li> <li><a href="https://github.com/golang/net/commit/b20cd5933aa9ba90f6299e6c2cbb59733434636e"><code>b20cd59</code></a> quic: initiate key rotation earlier in connections</li> <li><a href="https://github.com/golang/net/commit/f95a3b3a48597cebf9849b84a02cd240fb185b16"><code>f95a3b3</code></a> html: fix typo in package doc</li> <li><a href="https://github.com/golang/net/commit/0a24555f5cc06e8caf23d84a4f8b7102dcab838e"><code>0a24555</code></a> http/httpguts: speed up ValidHeaderFieldName</li> <li><a href="https://github.com/golang/net/commit/ec05fdcd71141c885f3fb84c41d1c692f094ccbe"><code>ec05fdc</code></a> http2: don't retry the first request on a connection on GOAWAY error</li> <li><a href="https://github.com/golang/net/commit/b67a0f0535536b3787161ec42c08549b686a5629"><code>b67a0f0</code></a> http2: send correct LastStreamID in stream-caused GOAWAY</li> <li><a href="https://github.com/golang/net/commit/a130fcc1c15aa11de840aa4fdcae06efabc30ba4"><code>a130fcc</code></a> quic: don't consider goroutines running when tests start as leaked</li> <li>See full diff in <a href="https://github.com/golang/net/compare/v0.24.0...v0.25.0">compare view</a></li> </ul> </details> <br /> Updates `google.golang.org/protobuf` from 1.33.0 to 1.34.1 Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0c992ba commit f458eb9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

tests/go.mod

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module github.com/envoyproxy/protoc-gen-validate/tests
33
go 1.21.1
44

55
require (
6-
golang.org/x/net v0.24.0
7-
google.golang.org/protobuf v1.33.0
6+
golang.org/x/net v0.25.0
7+
google.golang.org/protobuf v1.34.1
88
)
99

1010
require golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect

tests/go.sum

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU=
22
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
3-
golang.org/x/net v0.24.0 h1:1PcaxkF854Fu3+lvBIx5SYn9wRlBzzcnHZSiaFFAb0w=
4-
golang.org/x/net v0.24.0/go.mod h1:2Q7sJY5mzlzWjKtYUEXSlBWCdyaioyXzRB2RtU8KVE8=
3+
golang.org/x/net v0.25.0 h1:d/OCCoBEUq33pjydKrGQhw7IlUPI2Oylr+8qLx49kac=
4+
golang.org/x/net v0.25.0/go.mod h1:JkAGAh7GEvH74S6FOH42FLoXpXbE/aqXSrIQjXgsiwM=
55
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 h1:H2TDz8ibqkAF6YGhCdN3jS9O0/s90v0rJh3X/OLHEUk=
66
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2/go.mod h1:K8+ghG5WaK9qNqU5K3HdILfMLy1f3aNYFI/wnl100a8=
7-
google.golang.org/protobuf v1.33.0 h1:uNO2rsAINq/JlFpSdYEKIZ0uKD/R9cpdv0T+yoGwGmI=
8-
google.golang.org/protobuf v1.33.0/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=
7+
google.golang.org/protobuf v1.34.1 h1:9ddQBjfCyZPOHPUiPxpYESBLc+T8P3E+Vo4IbKZgFWg=
8+
google.golang.org/protobuf v1.34.1/go.mod h1:c6P6GXX6sHbq/GpV6MGZEdwhWPcYBgnhAHhKbcUYpos=

0 commit comments

Comments
 (0)