-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #140 from tnthornton/k8s-to-v0.31.0
fix(deps): k8s dependencies to v0.31.0
- Loading branch information
Showing
37 changed files
with
575 additions
and
1,502 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,129 +1,134 @@ | ||
module github.com/upbound/xgql | ||
|
||
go 1.21 | ||
go 1.22.0 | ||
|
||
toolchain go1.23.0 | ||
|
||
require ( | ||
github.com/99designs/gqlgen v0.17.36 | ||
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/trace v1.13.1 | ||
github.com/crossplane/crossplane v1.2.1 | ||
github.com/crossplane/crossplane-runtime v0.20.0 | ||
github.com/crossplane/crossplane v1.17.0 | ||
github.com/crossplane/crossplane-runtime v1.17.0 | ||
github.com/epk/smaz v0.0.0-20220720222521-c11a89997fcf | ||
github.com/gertd/go-pluralize v0.2.1 | ||
github.com/go-chi/chi/v5 v5.0.8 | ||
github.com/google/addlicense v0.0.0-20210428195630-6d92264d7170 | ||
github.com/google/go-cmp v0.5.9 | ||
github.com/prometheus/client_golang v1.16.0 | ||
github.com/google/go-cmp v0.6.0 | ||
github.com/prometheus/client_golang v1.20.4 | ||
github.com/vektah/gqlparser/v2 v2.5.8 | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.42.0 | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.53.0 | ||
go.opentelemetry.io/contrib/instrumentation/runtime v0.42.0 | ||
go.opentelemetry.io/otel v1.16.0 | ||
go.opentelemetry.io/otel v1.30.0 | ||
go.opentelemetry.io/otel/exporters/jaeger v1.16.0 | ||
go.opentelemetry.io/otel/exporters/prometheus v0.39.0 | ||
go.opentelemetry.io/otel/metric v1.16.0 | ||
go.opentelemetry.io/otel/sdk v1.16.0 | ||
go.opentelemetry.io/otel/sdk/metric v0.39.0 | ||
go.opentelemetry.io/otel/trace v1.16.0 | ||
go.opentelemetry.io/otel/exporters/prometheus v0.52.0 | ||
go.opentelemetry.io/otel/metric v1.30.0 | ||
go.opentelemetry.io/otel/sdk v1.30.0 | ||
go.opentelemetry.io/otel/sdk/metric v1.30.0 | ||
go.opentelemetry.io/otel/trace v1.30.0 | ||
gopkg.in/alecthomas/kingpin.v2 v2.2.6 | ||
k8s.io/api v0.27.3 | ||
k8s.io/apiextensions-apiserver v0.27.3 | ||
k8s.io/apimachinery v0.27.3 | ||
k8s.io/client-go v0.27.3 | ||
k8s.io/utils v0.0.0-20230505201702-9f6742963106 | ||
sigs.k8s.io/controller-runtime v0.15.0 | ||
k8s.io/api v0.31.1 | ||
k8s.io/apiextensions-apiserver v0.31.1 | ||
k8s.io/apimachinery v0.31.1 | ||
k8s.io/client-go v0.31.1 | ||
k8s.io/utils v0.0.0-20240921022957-49e7df575cb6 | ||
sigs.k8s.io/controller-runtime v0.19.0 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go/logging v1.7.0 // indirect | ||
cloud.google.com/go/longrunning v0.5.1 // indirect | ||
cloud.google.com/go/monitoring v1.15.1 // indirect | ||
github.com/fatih/color v1.16.0 // indirect | ||
github.com/fxamacker/cbor/v2 v2.7.0 // indirect | ||
github.com/gobuffalo/flect v1.0.2 // indirect | ||
github.com/google/gnostic-models v0.6.8 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/klauspost/compress v1.17.10 // indirect | ||
github.com/logrusorgru/aurora/v3 v3.0.0 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.19 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/spf13/cobra v1.8.1 // indirect | ||
github.com/x448/float16 v0.8.4 // indirect | ||
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect | ||
sigs.k8s.io/controller-tools v0.14.0 // indirect | ||
) | ||
|
||
require ( | ||
cloud.google.com/go/compute v1.20.1 // indirect | ||
cloud.google.com/go/compute/metadata v0.2.3 // indirect | ||
cloud.google.com/go/compute/metadata v0.3.0 // indirect | ||
cloud.google.com/go/trace v1.10.1 // indirect | ||
dario.cat/mergo v1.0.0 // indirect | ||
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.37.1 // indirect | ||
github.com/agnivade/levenshtein v1.1.1 // indirect | ||
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect | ||
github.com/alecthomas/units v0.0.0-20211218093645-b94a6e3cc137 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/emicklei/go-restful/v3 v3.10.2 // indirect | ||
github.com/evanphx/json-patch v5.6.0+incompatible // indirect | ||
github.com/evanphx/json-patch/v5 v5.6.0 // indirect | ||
github.com/felixge/httpsnoop v1.0.3 // indirect | ||
github.com/fsnotify/fsnotify v1.6.0 // indirect | ||
github.com/go-logr/logr v1.2.4 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.4 // indirect | ||
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||
github.com/emicklei/go-restful/v3 v3.12.1 // indirect | ||
github.com/evanphx/json-patch/v5 v5.9.0 // indirect | ||
github.com/felixge/httpsnoop v1.0.4 // indirect | ||
github.com/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/go-logr/zapr v1.2.4 // indirect | ||
github.com/go-openapi/jsonpointer v0.20.0 // indirect | ||
github.com/go-openapi/jsonreference v0.20.2 // indirect | ||
github.com/go-openapi/swag v0.22.4 // indirect | ||
github.com/go-logr/zapr v1.3.0 // indirect | ||
github.com/go-openapi/jsonpointer v0.21.0 // indirect | ||
github.com/go-openapi/jsonreference v0.21.0 // indirect | ||
github.com/go-openapi/swag v0.23.0 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/gnostic v0.6.9 // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/google/gofuzz v1.2.0 // indirect | ||
github.com/google/s2a-go v0.1.4 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect | ||
github.com/googleapis/gax-go/v2 v2.11.0 // indirect | ||
github.com/google/s2a-go v0.1.7 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect | ||
github.com/googleapis/gax-go/v2 v2.12.0 // indirect | ||
github.com/gorilla/websocket v1.5.0 | ||
github.com/hashicorp/golang-lru/v2 v2.0.3 // indirect | ||
github.com/imdario/mergo v0.3.16 // indirect | ||
github.com/josephburnett/jd v1.7.1 | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/onsi/ginkgo/v2 v2.12.0 // indirect | ||
github.com/onsi/gomega v1.27.10 // indirect | ||
github.com/prometheus/client_model v0.4.0 // indirect | ||
github.com/prometheus/common v0.44.0 // indirect | ||
github.com/prometheus/procfs v0.11.0 // indirect | ||
github.com/prometheus/client_model v0.6.1 // indirect | ||
github.com/prometheus/common v0.59.1 // indirect | ||
github.com/prometheus/procfs v0.15.1 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/spf13/afero v1.9.5 // indirect | ||
github.com/spf13/afero v1.11.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/urfave/cli/v2 v2.25.7 // indirect | ||
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect | ||
go.etcd.io/bbolt v1.3.7 | ||
go.etcd.io/bbolt v1.3.9 | ||
go.opencensus.io v0.24.0 // indirect | ||
go.uber.org/atomic v1.11.0 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
go.uber.org/zap v1.24.0 | ||
golang.org/x/crypto v0.13.0 // indirect | ||
golang.org/x/mod v0.12.0 // indirect | ||
golang.org/x/net v0.15.0 // indirect | ||
golang.org/x/oauth2 v0.10.0 // indirect | ||
golang.org/x/sync v0.3.0 | ||
golang.org/x/sys v0.12.0 // indirect | ||
golang.org/x/term v0.12.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
golang.org/x/time v0.3.0 // indirect | ||
golang.org/x/tools v0.13.0 // indirect | ||
gomodules.xyz/jsonpatch/v2 v2.3.0 // indirect | ||
google.golang.org/api v0.126.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20230720185612-659f7aaaa771 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20230720185612-659f7aaaa771 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230720185612-659f7aaaa771 // indirect | ||
google.golang.org/grpc v1.56.2 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
go.uber.org/zap v1.27.0 | ||
golang.org/x/crypto v0.27.0 // indirect | ||
golang.org/x/mod v0.21.0 // indirect | ||
golang.org/x/net v0.29.0 // indirect | ||
golang.org/x/oauth2 v0.23.0 // indirect | ||
golang.org/x/sync v0.8.0 | ||
golang.org/x/sys v0.25.0 // indirect | ||
golang.org/x/term v0.24.0 // indirect | ||
golang.org/x/text v0.18.0 // indirect | ||
golang.org/x/time v0.6.0 // indirect | ||
golang.org/x/tools v0.25.0 // indirect | ||
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect | ||
google.golang.org/api v0.152.0 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240528184218-531527333157 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240701130421-f6361c86f094 // indirect | ||
google.golang.org/grpc v1.65.0 // indirect | ||
google.golang.org/protobuf v1.34.2 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
k8s.io/component-base v0.27.3 // indirect | ||
k8s.io/klog/v2 v2.100.1 | ||
k8s.io/kube-openapi v0.0.0-20230525220651-2546d827e515 // indirect | ||
k8s.io/klog/v2 v2.130.1 | ||
k8s.io/kube-openapi v0.0.0-20240903163716-9e1beecbcb38 // indirect | ||
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.3.0 // indirect | ||
sigs.k8s.io/yaml v1.3.0 // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect | ||
sigs.k8s.io/yaml v1.4.0 // indirect | ||
) |
Oops, something went wrong.