Skip to content

Commit f044b38

Browse files
committed
update deps
1 parent c989218 commit f044b38

File tree

859 files changed

+44071
-28079
lines changed

Some content is hidden

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

859 files changed

+44071
-28079
lines changed

go.mod

Lines changed: 29 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,36 +3,39 @@ module github.com/percona/percona-backup-mongodb
33
go 1.22
44

55
require (
6-
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.9.0
7-
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.2.0
6+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.10.0
7+
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.1
88
github.com/alecthomas/kingpin v2.2.6+incompatible
9-
github.com/aws/aws-sdk-go v1.48.4
10-
github.com/docker/docker v24.0.7+incompatible
9+
github.com/aws/aws-sdk-go v1.50.31
10+
github.com/docker/docker v25.0.3+incompatible
1111
github.com/golang/snappy v0.0.4
12-
github.com/google/uuid v1.4.0
13-
github.com/klauspost/compress v1.17.3
12+
github.com/google/uuid v1.6.0
13+
github.com/klauspost/compress v1.17.7
1414
github.com/klauspost/pgzip v1.2.6
1515
github.com/minio/minio-go v6.0.14+incompatible
1616
github.com/mongodb/mongo-tools v0.0.0-20231117185435-bf0bef9e9f19
1717
github.com/pierrec/lz4 v2.6.1+incompatible
1818
github.com/pkg/errors v0.9.1
1919
go.mongodb.org/mongo-driver v1.13.0
20-
golang.org/x/mod v0.14.0
21-
golang.org/x/sync v0.5.0
20+
golang.org/x/mod v0.16.0
21+
golang.org/x/sync v0.6.0
2222
gopkg.in/yaml.v2 v2.4.0
2323
)
2424

2525
require (
26-
github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.0 // indirect
27-
github.com/Microsoft/go-winio v0.6.1 // indirect
26+
github.com/Azure/azure-sdk-for-go/sdk/internal v1.5.2 // indirect
27+
github.com/Microsoft/go-winio v0.4.14 // indirect
2828
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect
29-
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect
29+
github.com/alecthomas/units v0.0.0-20231202071711-9a357b53e9c9 // indirect
30+
github.com/containerd/log v0.1.0 // indirect
3031
github.com/distribution/reference v0.5.0 // indirect
31-
github.com/docker/distribution v2.8.3+incompatible // indirect
32-
github.com/docker/go-connections v0.4.0 // indirect
32+
github.com/docker/go-connections v0.5.0 // indirect
3333
github.com/docker/go-units v0.5.0 // indirect
34+
github.com/felixge/httpsnoop v1.0.4 // indirect
3435
github.com/frankban/quicktest v1.14.6 // indirect
3536
github.com/go-ini/ini v1.67.0 // indirect
37+
github.com/go-logr/logr v1.4.1 // indirect
38+
github.com/go-logr/stdr v1.2.2 // indirect
3639
github.com/gogo/protobuf v1.3.2 // indirect
3740
github.com/jessevdk/go-flags v1.5.0 // indirect
3841
github.com/jmespath/go-jmespath v0.4.0 // indirect
@@ -41,18 +44,23 @@ require (
4144
github.com/montanaflynn/stats v0.6.6 // indirect
4245
github.com/morikuni/aec v1.0.0 // indirect
4346
github.com/opencontainers/go-digest v1.0.0 // indirect
44-
github.com/opencontainers/image-spec v1.0.2 // indirect
47+
github.com/opencontainers/image-spec v1.1.0 // indirect
4548
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
4649
github.com/xdg-go/scram v1.1.2 // indirect
4750
github.com/xdg-go/stringprep v1.0.4 // indirect
4851
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a // indirect
49-
golang.org/x/crypto v0.14.0 // indirect
52+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect
53+
go.opentelemetry.io/otel v1.24.0 // indirect
54+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.24.0 // indirect
55+
go.opentelemetry.io/otel/metric v1.24.0 // indirect
56+
go.opentelemetry.io/otel/sdk v1.24.0 // indirect
57+
go.opentelemetry.io/otel/trace v1.24.0 // indirect
58+
golang.org/x/crypto v0.19.0 // indirect
5059
golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect
51-
golang.org/x/net v0.17.0 // indirect
52-
golang.org/x/sys v0.13.0 // indirect
53-
golang.org/x/term v0.13.0 // indirect
54-
golang.org/x/text v0.13.0 // indirect
55-
golang.org/x/time v0.4.0 // indirect
56-
golang.org/x/tools v0.13.0 // indirect
60+
golang.org/x/net v0.21.0 // indirect
61+
golang.org/x/sys v0.17.0 // indirect
62+
golang.org/x/term v0.17.0 // indirect
63+
golang.org/x/text v0.14.0 // indirect
64+
golang.org/x/time v0.5.0 // indirect
5765
gotest.tools/v3 v3.5.1 // indirect
5866
)

go.sum

Lines changed: 98 additions & 53 deletions
Large diffs are not rendered by default.

vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/CHANGELOG.md

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

vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/core.go

Lines changed: 20 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/etag.go

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

vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/exported/request.go

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

vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/exported/response_error.go

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

vendor/github.com/Azure/azure-sdk-for-go/sdk/azcore/internal/log/log.go

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

0 commit comments

Comments
 (0)