Skip to content

Commit effc20d

Browse files
chore(deps): Bump github.com/hashicorp/go-sockaddr from 1.0.6 to 1.0.7 (#1635)
* chore(deps): Bump github.com/hashicorp/go-sockaddr from 1.0.6 to 1.0.7 Bumps [github.com/hashicorp/go-sockaddr](https://github.com/hashicorp/go-sockaddr) from 1.0.6 to 1.0.7. - [Release notes](https://github.com/hashicorp/go-sockaddr/releases) - [Commits](hashicorp/go-sockaddr@v1.0.6...v1.0.7) --- updated-dependencies: - dependency-name: github.com/hashicorp/go-sockaddr dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * update codegen Signed-off-by: cpanato <ctadeu@gmail.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: cpanato <ctadeu@gmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: cpanato <ctadeu@gmail.com>
1 parent 676039e commit effc20d

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ require (
1919
github.com/hashicorp/go-rootcerts v1.0.2
2020
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.8
2121
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2
22-
github.com/hashicorp/go-sockaddr v1.0.6
22+
github.com/hashicorp/go-sockaddr v1.0.7
2323
github.com/hashicorp/golang-lru v1.0.2
2424
github.com/hashicorp/hcl v1.0.1-vault-5
2525
github.com/kelseyhightower/envconfig v1.4.0

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -523,8 +523,8 @@ github.com/hashicorp/go-secure-stdlib/parseutil v0.1.8 h1:iBt4Ew4XEGLfh6/bPk4rSY
523523
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.8/go.mod h1:aiJI+PIApBRQG7FZTEBx5GiiX+HbOHilUdNxUZi4eV0=
524524
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 h1:kes8mmyCpxJsI7FTwtzRqEy9CdjCtrXrXGuOpxEA7Ts=
525525
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2/go.mod h1:Gou2R9+il93BqX25LAKCLuM+y9U2T4hlwvT1yprcna4=
526-
github.com/hashicorp/go-sockaddr v1.0.6 h1:RSG8rKU28VTUTvEKghe5gIhIQpv8evvNpnDEyqO4u9I=
527-
github.com/hashicorp/go-sockaddr v1.0.6/go.mod h1:uoUUmtwU7n9Dv3O4SNLeFvg0SxQ3lyjsj6+CCykpaxI=
526+
github.com/hashicorp/go-sockaddr v1.0.7 h1:G+pTkSO01HpR5qCxg7lxfsFEZaG+C0VssTy/9dbT+Fw=
527+
github.com/hashicorp/go-sockaddr v1.0.7/go.mod h1:FZQbEYa1pxkQ7WLpyXJ6cbjpT8q0YgQaK/JakXqGyWw=
528528
github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
529529
github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
530530
github.com/hashicorp/golang-lru v1.0.2 h1:dV3g9Z/unq5DpblPpw+Oqcv4dU/1omnb4Ok8iPY6p1c=

third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ the
6868
run:
6969

7070
```text
71-
$ go get -u github.com/hashicorp/go-sockaddr/cmd/sockaddr
71+
$ go install github.com/hashicorp/go-sockaddr/cmd/sockaddr@latest
7272
```
7373

7474
If you're familiar with UNIX's `sockaddr` struct's, the following diagram

third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/route_info_android.go

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
1+
//go:build android
2+
13
package sockaddr
24

35
import (
46
"errors"
57
"os/exec"
68
)
79

8-
type routeInfo struct {
9-
cmds map[string][]string
10-
}
11-
1210
// NewRouteInfo returns a Android-specific implementation of the RouteInfo
1311
// interface.
1412
func NewRouteInfo() (routeInfo, error) {

third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/route_info_default.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
//go:build android || nacl || plan9 || js
2-
// +build android nacl plan9 js
1+
//go:build nacl || plan9 || js
2+
// +build nacl plan9 js
33

44
package sockaddr
55

third_party/VENDOR-LICENSE/github.com/hashicorp/go-sockaddr/route_info_solaris.go

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
//go:build solaris
2+
13
package sockaddr
24

35
import (

0 commit comments

Comments
 (0)