Skip to content

Commit ca2ab55

Browse files
Update module github.com/google/go-cmp to v0.7.0
1 parent 63131ee commit ca2ab55

63 files changed

Lines changed: 661 additions & 4727 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

go.mod

Lines changed: 74 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,99 @@
11
module github.com/yuuki/shawk
22

3-
go 1.15
3+
go 1.21
4+
5+
toolchain go1.24.2
46

57
require (
6-
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
78
github.com/EricLagergren/go-gnulib v0.0.0-20191129172535-039a51fc60f4
9+
github.com/elastic/gosigar v0.10.5
10+
github.com/google/go-cmp v0.7.0
11+
github.com/iovisor/gobpf v0.0.0-20200504095308-90dbbdfb1358
12+
github.com/jackc/pgx/v4 v4.6.0
13+
github.com/joho/godotenv v1.3.0
14+
github.com/kelseyhightower/envconfig v1.4.0
15+
github.com/ory/dockertest v3.3.5+incompatible
16+
github.com/rakyll/statik v0.1.7
17+
github.com/shirou/gopsutil v2.20.4+incompatible
18+
github.com/weaveworks/tcptracer-bpf v0.0.0-20190731111909-cd53e7c84bac
19+
golang.org/x/sys v0.0.0-20201214210602-f9fddec55a1e
20+
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
21+
gopkg.in/inconshreveable/log15.v2 v2.0.0-20200109203555-b30bc20e4fd1
22+
)
23+
24+
require (
25+
bazil.org/fuse v0.0.0-20160811212531-371fbbdaa898 // indirect
26+
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
827
github.com/Microsoft/go-winio v0.4.14 // indirect
928
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
1029
github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d // indirect
1130
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
31+
github.com/cockroachdb/apd v1.1.0 // indirect
1232
github.com/containerd/continuity v0.0.0-20200413184840-d3ef23f19fbb // indirect
33+
github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f // indirect
34+
github.com/creack/pty v1.1.7 // indirect
35+
github.com/davecgh/go-spew v1.1.1 // indirect
1336
github.com/docker/go-connections v0.4.0 // indirect
1437
github.com/docker/go-units v0.4.0 // indirect
15-
github.com/elastic/gosigar v0.10.5
38+
github.com/dustin/go-humanize v0.0.0-20171111073723-bb3d318650d4 // indirect
39+
github.com/fsnotify/fsnotify v1.4.7 // indirect
1640
github.com/go-ole/go-ole v1.2.4 // indirect
17-
github.com/google/go-cmp v0.5.1
41+
github.com/go-stack/stack v1.8.0 // indirect
42+
github.com/gofrs/uuid v3.2.0+incompatible // indirect
43+
github.com/golang/protobuf v1.2.0 // indirect
1844
github.com/gotestyourself/gotestyourself v2.2.0+incompatible // indirect
19-
github.com/iovisor/gobpf v0.0.0-20200504095308-90dbbdfb1358
20-
github.com/jackc/pgx/v4 v4.6.0
21-
github.com/joho/godotenv v1.3.0
22-
github.com/kelseyhightower/envconfig v1.4.0
45+
github.com/hpcloud/tail v1.0.0 // indirect
46+
github.com/inconshreveable/mousetrap v1.0.0 // indirect
47+
github.com/jackc/chunkreader v1.0.0 // indirect
48+
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
49+
github.com/jackc/pgconn v1.5.0 // indirect
50+
github.com/jackc/pgio v1.0.0 // indirect
51+
github.com/jackc/pgmock v0.0.0-20190831213851-13a1b77aafa2 // indirect
52+
github.com/jackc/pgpassfile v1.0.0 // indirect
53+
github.com/jackc/pgproto3 v1.1.0 // indirect
54+
github.com/jackc/pgproto3/v2 v2.0.1 // indirect
55+
github.com/jackc/pgservicefile v0.0.0-20200307190119-3430c5407db8 // indirect
56+
github.com/jackc/pgtype v1.3.0 // indirect
57+
github.com/jackc/pgx v3.6.2+incompatible // indirect
58+
github.com/jackc/puddle v1.1.0 // indirect
59+
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect
60+
github.com/kr/pretty v0.1.0 // indirect
61+
github.com/kr/pty v1.1.8 // indirect
62+
github.com/kr/text v0.1.0 // indirect
2363
github.com/lib/pq v1.3.0 // indirect
2464
github.com/mattn/go-colorable v0.1.8 // indirect
65+
github.com/mattn/go-isatty v0.0.12 // indirect
66+
github.com/onsi/ginkgo v1.10.1 // indirect
67+
github.com/onsi/gomega v1.7.0 // indirect
68+
github.com/opencontainers/go-digest v1.0.0-rc1 // indirect
2569
github.com/opencontainers/image-spec v1.0.1 // indirect
2670
github.com/opencontainers/runc v0.1.1 // indirect
27-
github.com/ory/dockertest v3.3.5+incompatible
2871
github.com/pkg/errors v0.9.1 // indirect
29-
github.com/rakyll/statik v0.1.7
30-
github.com/shirou/gopsutil v2.20.4+incompatible
72+
github.com/pmezard/go-difflib v1.0.0 // indirect
73+
github.com/rs/xid v1.2.1 // indirect
74+
github.com/rs/zerolog v1.15.0 // indirect
75+
github.com/satori/go.uuid v1.2.0 // indirect
76+
github.com/shopspring/decimal v0.0.0-20180709203117-cd690d0c9e24 // indirect
3177
github.com/sirupsen/logrus v1.6.0 // indirect
32-
github.com/weaveworks/tcptracer-bpf v0.0.0-20190731111909-cd53e7c84bac
78+
github.com/spf13/cobra v0.0.2-0.20171109065643-2da4a54c5cee // indirect
79+
github.com/spf13/pflag v1.0.1-0.20171106142849-4c012f6dcd95 // indirect
80+
github.com/stretchr/objx v0.2.0 // indirect
81+
github.com/stretchr/testify v1.5.1 // indirect
82+
github.com/zenazn/goji v0.9.0 // indirect
83+
go.uber.org/atomic v1.4.0 // indirect
84+
go.uber.org/multierr v1.1.0 // indirect
85+
go.uber.org/zap v1.10.0 // indirect
3386
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 // indirect
3487
golang.org/x/net v0.0.0-20201216054612-986b41b23924 // indirect
35-
golang.org/x/sys v0.0.0-20201214210602-f9fddec55a1e
36-
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1
37-
gopkg.in/inconshreveable/log15.v2 v2.0.0-20200109203555-b30bc20e4fd1
88+
golang.org/x/sync v0.0.0-20190423024810-112230192c58 // indirect
89+
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1 // indirect
90+
golang.org/x/text v0.3.3 // indirect
91+
golang.org/x/tools v0.0.0-20190823170909-c4a336ef6a2f // indirect
92+
gopkg.in/airbrake/gobrake.v2 v2.0.9 // indirect
93+
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
94+
gopkg.in/fsnotify.v1 v1.4.7 // indirect
95+
gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 // indirect
96+
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
3897
gopkg.in/yaml.v2 v2.2.8 // indirect
3998
gotest.tools v2.2.0+incompatible // indirect
4099
)

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ github.com/gofrs/uuid v3.2.0+incompatible/go.mod h1:b2aQJv3Z4Fp6yNu3cdSllBxTCLRx
3939
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
4040
github.com/google/go-cmp v0.5.1 h1:JFrFEBb2xKufg6XkJsJr+WbKb4FQlURi5RUcBveYu9k=
4141
github.com/google/go-cmp v0.5.1/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
42+
github.com/google/go-cmp v0.7.0 h1:wk8382ETsv4JYUZwIsn6YpYiWiBsYLSJiTsyBybVuN8=
43+
github.com/google/go-cmp v0.7.0/go.mod h1:pXiqmnSA92OHEEa9HXL2W4E7lf9JzCmGVUdgjX3N/iU=
4244
github.com/gotestyourself/gotestyourself v2.2.0+incompatible h1:AQwinXlbQR2HvPjQZOmDhRqsv5mZf+Jb1RnSLxcqZcI=
4345
github.com/gotestyourself/gotestyourself v2.2.0+incompatible/go.mod h1:zZKM6oeNM8k+FRljX1mnzVYeS8wiGgQyvST1/GafPbY=
4446
github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=

vendor/github.com/Microsoft/go-winio/go.mod

Lines changed: 0 additions & 9 deletions
This file was deleted.

vendor/github.com/Microsoft/go-winio/go.sum

Lines changed: 0 additions & 16 deletions
This file was deleted.

vendor/github.com/go-ole/go-ole/go.mod

Lines changed: 0 additions & 3 deletions
This file was deleted.

vendor/github.com/go-stack/stack/go.mod

Lines changed: 0 additions & 1 deletion
This file was deleted.

vendor/github.com/google/go-cmp/cmp/compare.go

Lines changed: 49 additions & 60 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/google/go-cmp/cmp/export_unsafe.go renamed to vendor/github.com/google/go-cmp/cmp/export.go

Lines changed: 1 addition & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/google/go-cmp/cmp/export_panic.go

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)