Skip to content

Commit 391e5c6

Browse files
authored
Update deps (#265)
1 parent 3eaafa1 commit 391e5c6

File tree

3 files changed

+89
-103
lines changed

3 files changed

+89
-103
lines changed

cfgloader/cfgloader.go

+4-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,10 @@ func Load(ctx context.Context, cfg any, opt ...Option) error {
104104
lookuper = envconfig.PrefixLookuper(opts.envPrefix, lookuper)
105105
}
106106

107-
if err := envconfig.ProcessWith(ctx, cfg, lookuper); err != nil {
107+
if err := envconfig.ProcessWith(ctx, &envconfig.Config{
108+
Target: cfg,
109+
Lookuper: lookuper,
110+
}); err != nil {
108111
return fmt.Errorf("failed to load config: %w", err)
109112
}
110113

go.mod

+27-27
Original file line numberDiff line numberDiff line change
@@ -4,45 +4,45 @@ go 1.21
44

55
require (
66
github.com/go-sql-driver/mysql v1.7.1
7-
github.com/google/go-cmp v0.5.9
8-
github.com/hashicorp/hcl/v2 v2.17.0
9-
github.com/jackc/pgx/v5 v5.4.3
7+
github.com/google/go-cmp v0.6.0
8+
github.com/hashicorp/hcl/v2 v2.19.1
9+
github.com/jackc/pgx/v5 v5.5.2
1010
github.com/kr/text v0.2.0
11-
github.com/lestrrat-go/jwx/v2 v2.0.11
12-
github.com/mattn/go-isatty v0.0.19
11+
github.com/lestrrat-go/jwx/v2 v2.0.19
12+
github.com/mattn/go-isatty v0.0.20
1313
github.com/ory/dockertest/v3 v3.10.0
1414
github.com/posener/complete/v2 v2.1.0
15-
github.com/sethvargo/go-envconfig v0.9.0
15+
github.com/sethvargo/go-envconfig v1.0.0
1616
github.com/sethvargo/go-retry v0.2.4
17-
golang.org/x/oauth2 v0.11.0
18-
golang.org/x/sync v0.3.0
17+
golang.org/x/oauth2 v0.16.0
18+
golang.org/x/sync v0.6.0
1919
golang.org/x/text v0.14.0
20-
google.golang.org/grpc v1.57.1
21-
google.golang.org/protobuf v1.31.0
20+
google.golang.org/grpc v1.61.0
21+
google.golang.org/protobuf v1.32.0
2222
gopkg.in/yaml.v3 v3.0.1
2323
)
2424

2525
require (
26+
dario.cat/mergo v1.0.0 // indirect
2627
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
2728
github.com/Microsoft/go-winio v0.6.1 // indirect
2829
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
2930
github.com/agext/levenshtein v1.2.3 // indirect
30-
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
31+
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
3132
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
32-
github.com/containerd/continuity v0.4.1 // indirect
33+
github.com/containerd/continuity v0.4.3 // indirect
3334
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.2.0 // indirect
34-
github.com/docker/cli v24.0.5+incompatible // indirect
35-
github.com/docker/docker v24.0.7+incompatible // indirect
36-
github.com/docker/go-connections v0.4.0 // indirect
35+
github.com/docker/cli v25.0.1+incompatible // indirect
36+
github.com/docker/docker v25.0.1+incompatible // indirect
37+
github.com/docker/go-connections v0.5.0 // indirect
3738
github.com/docker/go-units v0.5.0 // indirect
3839
github.com/goccy/go-json v0.10.2 // indirect
3940
github.com/gogo/protobuf v1.3.2 // indirect
4041
github.com/golang/protobuf v1.5.3 // indirect
4142
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
42-
github.com/imdario/mergo v0.3.16 // indirect
4343
github.com/jackc/pgpassfile v1.0.0 // indirect
44-
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
45-
github.com/lestrrat-go/blackmagic v1.0.1 // indirect
44+
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect
45+
github.com/lestrrat-go/blackmagic v1.0.2 // indirect
4646
github.com/lestrrat-go/httpcc v1.0.1 // indirect
4747
github.com/lestrrat-go/httprc v1.0.4 // indirect
4848
github.com/lestrrat-go/iter v1.0.2 // indirect
@@ -52,7 +52,7 @@ require (
5252
github.com/moby/term v0.5.0 // indirect
5353
github.com/opencontainers/go-digest v1.0.0 // indirect
5454
github.com/opencontainers/image-spec v1.0.2 // indirect
55-
github.com/opencontainers/runc v1.1.8 // indirect
55+
github.com/opencontainers/runc v1.1.11 // indirect
5656
github.com/pkg/errors v0.9.1 // indirect
5757
github.com/posener/script v1.2.0 // indirect
5858
github.com/rogpeppe/go-internal v1.9.0 // indirect
@@ -61,13 +61,13 @@ require (
6161
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
6262
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
6363
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
64-
github.com/zclconf/go-cty v1.13.2 // indirect
65-
golang.org/x/crypto v0.17.0 // indirect
66-
golang.org/x/mod v0.12.0 // indirect
67-
golang.org/x/net v0.17.0 // indirect
68-
golang.org/x/sys v0.15.0 // indirect
69-
golang.org/x/tools v0.12.0 // indirect
70-
google.golang.org/appengine v1.6.7 // indirect
71-
google.golang.org/genproto/googleapis/rpc v0.0.0-20230807174057-1744710a1577 // indirect
64+
github.com/zclconf/go-cty v1.14.2 // indirect
65+
golang.org/x/crypto v0.18.0 // indirect
66+
golang.org/x/mod v0.14.0 // indirect
67+
golang.org/x/net v0.20.0 // indirect
68+
golang.org/x/sys v0.16.0 // indirect
69+
golang.org/x/tools v0.17.0 // indirect
70+
google.golang.org/appengine v1.6.8 // indirect
71+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe // indirect
7272
gopkg.in/yaml.v2 v2.4.0 // indirect
7373
)

0 commit comments

Comments
 (0)