Skip to content

Commit 510003e

Browse files
authored
Remove deprecated libraries (#278)
This will require a major version bump of pkg
1 parent a0cda6f commit 510003e

File tree

10 files changed

+12
-666
lines changed

10 files changed

+12
-666
lines changed

containertest/README.md

-118
This file was deleted.

containertest/config.go

-57
This file was deleted.

containertest/containertest.go

-45
This file was deleted.

containertest/mysql.go

-27
This file was deleted.

containertest/postgres.go

-23
This file was deleted.

go.mod

+3-35
Original file line numberDiff line numberDiff line change
@@ -3,62 +3,30 @@ module github.com/abcxyz/pkg
33
go 1.21
44

55
require (
6-
github.com/abcxyz/containertest v0.1.0
7-
github.com/go-sql-driver/mysql v1.7.1
86
github.com/google/go-cmp v0.6.0
97
github.com/hashicorp/hcl/v2 v2.19.1
108
github.com/kr/text v0.2.0
119
github.com/mattn/go-isatty v0.0.20
1210
github.com/posener/complete/v2 v2.1.0
1311
github.com/sethvargo/go-envconfig v1.0.0
1412
github.com/sethvargo/go-retry v0.2.4
15-
golang.org/x/oauth2 v0.16.0
13+
golang.org/x/oauth2 v0.17.0
1614
golang.org/x/sync v0.6.0
1715
golang.org/x/text v0.14.0
18-
google.golang.org/grpc v1.61.0
16+
google.golang.org/grpc v1.61.1
1917
google.golang.org/protobuf v1.32.0
2018
gopkg.in/yaml.v3 v3.0.1
2119
)
2220

2321
require (
24-
dario.cat/mergo v1.0.0 // indirect
25-
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
26-
github.com/Microsoft/go-winio v0.6.1 // indirect
27-
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
2822
github.com/agext/levenshtein v1.2.3 // indirect
2923
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
30-
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
31-
github.com/containerd/continuity v0.4.3 // indirect
32-
github.com/docker/cli v25.0.3+incompatible // indirect
33-
github.com/docker/docker v25.0.3+incompatible // indirect
34-
github.com/docker/go-connections v0.5.0 // indirect
35-
github.com/docker/go-units v0.5.0 // indirect
36-
github.com/gogo/protobuf v1.3.2 // indirect
3724
github.com/golang/protobuf v1.5.3 // indirect
38-
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
39-
github.com/jackc/pgpassfile v1.0.0 // indirect
40-
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect
41-
github.com/jackc/pgx/v5 v5.5.3 // indirect
4225
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
43-
github.com/mitchellh/mapstructure v1.5.0 // indirect
44-
github.com/moby/term v0.5.0 // indirect
45-
github.com/opencontainers/go-digest v1.0.0 // indirect
46-
github.com/opencontainers/image-spec v1.0.2 // indirect
47-
github.com/opencontainers/runc v1.1.12 // indirect
48-
github.com/ory/dockertest/v3 v3.10.0 // indirect
49-
github.com/pkg/errors v0.9.1 // indirect
5026
github.com/posener/script v1.2.0 // indirect
51-
github.com/sirupsen/logrus v1.9.3 // indirect
52-
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
53-
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
54-
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
5527
github.com/zclconf/go-cty v1.14.2 // indirect
56-
golang.org/x/crypto v0.19.0 // indirect
57-
golang.org/x/mod v0.15.0 // indirect
5828
golang.org/x/net v0.21.0 // indirect
5929
golang.org/x/sys v0.17.0 // indirect
60-
golang.org/x/tools v0.18.0 // indirect
6130
google.golang.org/appengine v1.6.8 // indirect
62-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe // indirect
63-
gopkg.in/yaml.v2 v2.4.0 // indirect
31+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240213162025-012b6fc9bca9 // indirect
6432
)

0 commit comments

Comments
 (0)