2020-08-24 13:18:39 +02:00
|
|
|
module github.com/distribution/distribution/v3
|
2019-06-06 00:40:29 +02:00
|
|
|
|
2024-11-13 16:42:06 +01:00
|
|
|
go 1.22.7
|
|
|
|
|
2024-12-12 09:42:19 +01:00
|
|
|
toolchain go1.23.4
|
2019-06-06 00:40:29 +02:00
|
|
|
|
|
|
|
require (
|
2024-10-26 19:06:01 +02:00
|
|
|
cloud.google.com/go/storage v1.45.0
|
2022-11-12 18:44:12 +01:00
|
|
|
github.com/AdaLogics/go-fuzz-headers v0.0.0-20221103172237-443f56ff4ba8
|
2024-06-11 22:09:16 +02:00
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1
|
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.6.0
|
2020-02-21 04:58:17 +01:00
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.0.0
|
2024-10-26 18:52:35 +02:00
|
|
|
github.com/aws/aws-sdk-go v1.55.5
|
2020-09-01 02:26:57 +02:00
|
|
|
github.com/bshuster-repo/logrus-logstash-hook v1.0.0
|
2023-08-26 15:44:58 +02:00
|
|
|
github.com/coreos/go-systemd/v22 v22.5.0
|
2024-03-26 21:19:28 +01:00
|
|
|
github.com/distribution/reference v0.6.0
|
2024-08-13 22:03:36 +02:00
|
|
|
github.com/docker/docker-credential-helpers v0.8.2
|
2018-03-14 01:08:11 +01:00
|
|
|
github.com/docker/go-events v0.0.0-20190806004212-e31b211e4f1c
|
2020-01-08 18:27:59 +01:00
|
|
|
github.com/docker/go-metrics v0.0.1
|
2024-05-14 10:21:38 +02:00
|
|
|
github.com/go-jose/go-jose/v4 v4.0.2
|
2024-06-11 22:09:16 +02:00
|
|
|
github.com/google/uuid v1.6.0
|
2023-12-22 10:23:09 +01:00
|
|
|
github.com/gorilla/handlers v1.5.2
|
2023-12-01 10:26:51 +01:00
|
|
|
github.com/gorilla/mux v1.8.1
|
2023-08-17 13:09:21 +02:00
|
|
|
github.com/hashicorp/golang-lru/arc/v2 v2.0.5
|
2024-11-13 16:42:06 +01:00
|
|
|
github.com/klauspost/compress v1.17.11
|
2023-12-27 12:28:10 +01:00
|
|
|
github.com/mitchellh/mapstructure v1.5.0
|
2020-08-24 18:45:46 +02:00
|
|
|
github.com/opencontainers/go-digest v1.0.0
|
2023-04-30 19:01:20 +02:00
|
|
|
github.com/opencontainers/image-spec v1.1.0
|
2023-08-25 12:32:23 +02:00
|
|
|
github.com/redis/go-redis/extra/redisotel/v9 v9.0.5
|
|
|
|
github.com/redis/go-redis/v9 v9.1.0
|
2023-12-01 10:21:44 +01:00
|
|
|
github.com/sirupsen/logrus v1.9.3
|
2023-12-01 10:40:25 +01:00
|
|
|
github.com/spf13/cobra v1.8.0
|
2024-06-11 22:09:16 +02:00
|
|
|
github.com/stretchr/testify v1.9.0
|
2024-11-13 16:42:06 +01:00
|
|
|
go.opentelemetry.io/contrib/exporters/autoexport v0.57.0
|
|
|
|
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.57.0
|
|
|
|
go.opentelemetry.io/otel v1.32.0
|
|
|
|
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.32.0
|
|
|
|
go.opentelemetry.io/otel/sdk v1.32.0
|
|
|
|
go.opentelemetry.io/otel/trace v1.32.0
|
2024-12-12 09:34:18 +01:00
|
|
|
golang.org/x/crypto v0.31.0
|
2024-11-13 16:42:06 +01:00
|
|
|
golang.org/x/net v0.30.0
|
2024-10-26 19:06:01 +02:00
|
|
|
golang.org/x/oauth2 v0.23.0
|
2024-12-12 12:34:21 +01:00
|
|
|
golang.org/x/sync v0.10.0
|
2024-10-26 19:06:01 +02:00
|
|
|
google.golang.org/api v0.197.0
|
2021-04-22 14:31:11 +02:00
|
|
|
gopkg.in/yaml.v2 v2.4.0
|
2019-06-06 00:40:29 +02:00
|
|
|
)
|
go.mod: add replace rule to prevent unwanted updateds of grpc and jwt-go
This replace rule is to prevent unwanted updates of grpc and jwt-go. When updating
spf13/cobra, we noticed that google.golang.org/grpc got updated.
Doing a search to find which modules (note here that `go mod graph` only looks
at dependencies from a `go modules` perspective, and not all the (current version)
of our dependencies use go modules).
And I found that the only _modules_ depending on it are `github.com/spf13/viper`
and `github.com/grpc-ecosystem/grpc-gateway`:
```bash
$ go mod graph | grep ' google.golang.org/grpc'
github.com/spf13/viper@v1.4.0 google.golang.org/grpc@v1.21.0
github.com/grpc-ecosystem/grpc-gateway@v1.9.0 google.golang.org/grpc@v1.19.0
```
Of those, `github.com/grpc-ecosystem/grpc-gateway` is a dependency of
`github.com/spf13/viper`:
```bash
$ go mod graph | grep ' github.com/grpc-ecosystem/grpc-gateway'
github.com/spf13/viper@v1.4.0 github.com/grpc-ecosystem/grpc-gateway@v1.9.0
```
So looking at that one, it's a dependency of cobra:
```bash
$ go mod graph | grep ' github.com/spf13/viper@v1.4.0'
github.com/spf13/cobra@v1.0.0 github.com/spf13/viper@v1.4.0
```
Ironically, while both `github.com/spf13/viper` and `github.com/grpc-ecosystem/grpc-gateway`,
depend on `google.golang.org/grpc` and (through their `go.mod`) are responsible
for `go mod` to update the dependency version of grpc, none of them are used:
```bash
cat vendor/modules.txt | grep github.com/spf13/viper
cat vendor/modules.txt | grep github.com/grpc-ecosystem/grpc-gateway
```
Unfortunately, `go modules` looks at `go.mod` to determine the *minimum version*
required; _even if the parts of the modules specifying it in the `go.mod` are unused_.
This patch adds a `replace` rule in go.mod to prevent updating grpc based on
other dependencies that _declare_ `google.golang.org/grpc` as a dependency,
but are not used and, hence, should not influence the minumum version.
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2021-04-23 18:34:53 +02:00
|
|
|
|
2023-12-11 21:18:42 +01:00
|
|
|
require (
|
2024-10-26 19:06:01 +02:00
|
|
|
cel.dev/expr v0.16.1 // indirect
|
|
|
|
cloud.google.com/go v0.115.1 // indirect
|
|
|
|
cloud.google.com/go/auth v0.9.3 // indirect
|
|
|
|
cloud.google.com/go/auth/oauth2adapt v0.2.4 // indirect
|
|
|
|
cloud.google.com/go/compute/metadata v0.5.1 // indirect
|
|
|
|
cloud.google.com/go/iam v1.2.1 // indirect
|
|
|
|
cloud.google.com/go/monitoring v1.21.0 // indirect
|
2024-06-11 22:09:16 +02:00
|
|
|
github.com/Azure/azure-sdk-for-go/sdk/internal v1.8.0 // indirect
|
|
|
|
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
|
2024-10-26 19:06:01 +02:00
|
|
|
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.24.1 // indirect
|
|
|
|
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.48.1 // indirect
|
|
|
|
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.48.1 // indirect
|
2022-05-05 10:20:56 +02:00
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
2024-11-05 06:45:37 +01:00
|
|
|
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
|
2024-10-26 19:06:01 +02:00
|
|
|
github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect
|
|
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
|
|
github.com/cncf/xds/go v0.0.0-20240905190251-b4127c9b8d78 // indirect
|
2023-09-07 15:06:27 +02:00
|
|
|
github.com/cyphar/filepath-securejoin v0.2.4 // indirect
|
2023-12-07 19:00:27 +01:00
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
2023-08-25 12:32:23 +02:00
|
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
2024-10-26 19:06:01 +02:00
|
|
|
github.com/envoyproxy/go-control-plane v0.13.0 // indirect
|
|
|
|
github.com/envoyproxy/protoc-gen-validate v1.1.0 // indirect
|
2023-12-11 21:18:42 +01:00
|
|
|
github.com/felixge/httpsnoop v1.0.4 // indirect
|
2024-10-26 19:06:01 +02:00
|
|
|
github.com/go-logr/logr v1.4.2 // indirect
|
2023-08-25 12:32:23 +02:00
|
|
|
github.com/go-logr/stdr v1.2.2 // indirect
|
2024-06-30 17:46:13 +02:00
|
|
|
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect
|
2023-12-11 21:18:42 +01:00
|
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
2024-10-26 19:06:01 +02:00
|
|
|
github.com/google/s2a-go v0.1.8 // indirect
|
|
|
|
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect
|
|
|
|
github.com/googleapis/gax-go/v2 v2.13.0 // indirect
|
2024-11-13 16:42:06 +01:00
|
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.23.0 // indirect
|
2023-08-18 09:28:26 +02:00
|
|
|
github.com/hashicorp/golang-lru/v2 v2.0.5 // indirect
|
2023-12-01 10:40:25 +01:00
|
|
|
github.com/inconshreveable/mousetrap v1.1.0 // indirect
|
2022-05-05 10:20:56 +02:00
|
|
|
github.com/jmespath/go-jmespath v0.4.0 // indirect
|
2020-02-21 04:58:17 +01:00
|
|
|
github.com/kylelemons/godebug v1.1.0 // indirect
|
2024-11-05 06:45:37 +01:00
|
|
|
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
|
2024-06-11 22:09:16 +02:00
|
|
|
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
|
2024-10-26 19:06:01 +02:00
|
|
|
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect
|
2023-12-07 19:00:27 +01:00
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
2024-11-13 16:42:06 +01:00
|
|
|
github.com/prometheus/client_golang v1.20.5 // indirect; updated to latest
|
2024-11-05 06:45:37 +01:00
|
|
|
github.com/prometheus/client_model v0.6.1 // indirect
|
2024-11-13 16:42:06 +01:00
|
|
|
github.com/prometheus/common v0.60.1 // indirect
|
2024-11-05 06:45:37 +01:00
|
|
|
github.com/prometheus/procfs v0.15.1 // indirect
|
2023-08-25 12:32:23 +02:00
|
|
|
github.com/redis/go-redis/extra/rediscmd/v9 v9.0.5 // indirect
|
2022-11-02 19:48:45 +01:00
|
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
2023-05-23 10:41:43 +02:00
|
|
|
go.opencensus.io v0.24.0 // indirect
|
2024-11-13 16:42:06 +01:00
|
|
|
go.opentelemetry.io/contrib/bridges/prometheus v0.57.0 // indirect
|
2024-10-26 19:06:01 +02:00
|
|
|
go.opentelemetry.io/contrib/detectors/gcp v1.29.0 // indirect
|
|
|
|
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.54.0 // indirect
|
2024-11-13 16:42:06 +01:00
|
|
|
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc v0.8.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp v0.8.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.32.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.32.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.32.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.32.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.32.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/exporters/prometheus v0.54.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/exporters/stdout/stdoutlog v0.8.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/exporters/stdout/stdoutmetric v1.32.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/log v0.8.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/metric v1.32.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/sdk/log v0.8.0 // indirect
|
|
|
|
go.opentelemetry.io/otel/sdk/metric v1.32.0 // indirect
|
2024-11-05 06:45:37 +01:00
|
|
|
go.opentelemetry.io/proto/otlp v1.3.1 // indirect
|
2024-12-12 09:34:18 +01:00
|
|
|
golang.org/x/sys v0.28.0 // indirect
|
|
|
|
golang.org/x/text v0.21.0 // indirect
|
2024-10-26 19:06:01 +02:00
|
|
|
golang.org/x/time v0.6.0 // indirect
|
|
|
|
google.golang.org/genproto v0.0.0-20240903143218-8af14fe29dc1 // indirect
|
2024-11-13 16:42:06 +01:00
|
|
|
google.golang.org/genproto/googleapis/api v0.0.0-20241104194629-dd2ea8efbc28 // indirect
|
|
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20241104194629-dd2ea8efbc28 // indirect
|
|
|
|
google.golang.org/grpc v1.68.0 // indirect
|
2024-10-26 19:06:01 +02:00
|
|
|
google.golang.org/grpc/stats/opentelemetry v0.0.0-20240907200651-3ffb98b2c93a // indirect
|
2024-11-13 16:42:06 +01:00
|
|
|
google.golang.org/protobuf v1.35.1 // indirect
|
2023-12-07 19:00:27 +01:00
|
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
2023-05-23 10:41:43 +02:00
|
|
|
)
|