mirror of
https://github.com/kubernetes/client-go.git
synced 2026-01-19 00:15:46 +00:00
This replaces the experimental logr v0.4 with the stable v1.1.0
release. This is a breaking API change for some users because:
- Comparing logr.Logger against nil is not possible anymore:
it's now a struct instead of an interface. Code which
allows a nil logger should switch to *logr.Logger as type.
- Logger implementations must be updated in lockstep.
Instead of updating the forked zapr code in json.go, directly using
the original go-logr/zapr is simpler and avoids duplication of effort.
The updated zapr supports logging of numeric verbosity. Error messages
don't have a verbosity (= always get logged), so "v" is not getting
added to them anymore.
Source code logging for panic messages got fixed so that it references
the code with the invalid log call, not the json.go implementation.
Finally, zapr includes additional information in its panic
messages ("zap field", "ignored key", "invalid key").
Kubernetes-commit: cb6a65377775110631bc865acc06c3f957592813
47 lines
1.6 KiB
Modula-2
47 lines
1.6 KiB
Modula-2
// This is a generated file. Do not edit directly.
|
|
|
|
module k8s.io/client-go
|
|
|
|
go 1.16
|
|
|
|
require (
|
|
cloud.google.com/go v0.81.0 // indirect
|
|
github.com/Azure/go-autorest/autorest v0.11.18
|
|
github.com/Azure/go-autorest/autorest/adal v0.9.13
|
|
github.com/davecgh/go-spew v1.1.1
|
|
github.com/evanphx/json-patch v4.11.0+incompatible
|
|
github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect
|
|
github.com/gogo/protobuf v1.3.2
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
|
|
github.com/golang/protobuf v1.5.2
|
|
github.com/google/btree v1.0.1 // indirect
|
|
github.com/google/go-cmp v0.5.5
|
|
github.com/google/gofuzz v1.1.0
|
|
github.com/google/uuid v1.1.2
|
|
github.com/googleapis/gnostic v0.5.5
|
|
github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7
|
|
github.com/imdario/mergo v0.3.5
|
|
github.com/peterbourgon/diskv v2.0.1+incompatible
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/stretchr/testify v1.7.0
|
|
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
|
|
golang.org/x/net v0.0.0-20210813160813-60bc85c4be6d
|
|
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f
|
|
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b
|
|
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac
|
|
google.golang.org/protobuf v1.26.0
|
|
k8s.io/api v0.0.0
|
|
k8s.io/apimachinery v0.0.0
|
|
k8s.io/klog/v2 v2.20.0
|
|
k8s.io/kube-openapi v0.0.0-20210817084001-7fbd8d59e5b8
|
|
k8s.io/utils v0.0.0-20210819203725-bdf08cb9a70a
|
|
sigs.k8s.io/structured-merge-diff/v4 v4.1.2
|
|
sigs.k8s.io/yaml v1.2.0
|
|
)
|
|
|
|
replace (
|
|
k8s.io/api => ../api
|
|
k8s.io/apimachinery => ../apimachinery
|
|
k8s.io/client-go => ../client-go
|
|
)
|