mirror of https://github.com/knative/caching.git
upgrade to latest dependencies (#865)
bumping knative.dev/pkg b1fd04d...11a3d46: > 11a3d46 Add composite ConfigStore to combine multiple ConfigStore (# 3027) Signed-off-by: Knative Automation <automation@knative.team>
This commit is contained in:
parent
1a6c1c714c
commit
2720a0e9c9
2
go.mod
2
go.mod
|
@ -11,7 +11,7 @@ require (
|
|||
k8s.io/code-generator v0.29.2
|
||||
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00
|
||||
knative.dev/hack v0.0.0-20240507013718-68e3bfb39d11
|
||||
knative.dev/pkg v0.0.0-20240513091600-b1fd04d5c458
|
||||
knative.dev/pkg v0.0.0-20240515073057-11a3d46fe4d6
|
||||
)
|
||||
|
||||
require (
|
||||
|
|
4
go.sum
4
go.sum
|
@ -663,8 +663,8 @@ k8s.io/utils v0.0.0-20240102154912-e7106e64919e h1:eQ/4ljkx21sObifjzXwlPKpdGLrCf
|
|||
k8s.io/utils v0.0.0-20240102154912-e7106e64919e/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
|
||||
knative.dev/hack v0.0.0-20240507013718-68e3bfb39d11 h1:CYoD72R8/R35REjeY2nnWfBak+Q3f+NxXwEfwcID1eU=
|
||||
knative.dev/hack v0.0.0-20240507013718-68e3bfb39d11/go.mod h1:yk2OjGDsbEnQjfxdm0/HJKS2WqTLEFg/N6nUs6Rqx3Q=
|
||||
knative.dev/pkg v0.0.0-20240513091600-b1fd04d5c458 h1:ESofRToj3xFQfKd5rlwd3EHd7G/CbVpchrUsw1HzI1w=
|
||||
knative.dev/pkg v0.0.0-20240513091600-b1fd04d5c458/go.mod h1:fkgcK/71v1QSJza7pCOxtuk7zSsWYPQ7eiuX8M2wXxs=
|
||||
knative.dev/pkg v0.0.0-20240515073057-11a3d46fe4d6 h1:mUZ3ZrZFIfHtaILKPodBX1WnFQVpVSdA+e0DaUqIe30=
|
||||
knative.dev/pkg v0.0.0-20240515073057-11a3d46fe4d6/go.mod h1:fkgcK/71v1QSJza7pCOxtuk7zSsWYPQ7eiuX8M2wXxs=
|
||||
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
|
||||
rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=
|
||||
rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
|
||||
|
|
|
@ -20,6 +20,20 @@ import "context"
|
|||
|
||||
// ConfigStore is used to attach the frozen configuration to the context.
|
||||
type ConfigStore interface {
|
||||
// ConfigStore is used to attach the frozen configuration to the context.
|
||||
// ToContext is used to attach the frozen configuration to the context.
|
||||
ToContext(ctx context.Context) context.Context
|
||||
}
|
||||
|
||||
// ConfigStores is used to combine multiple ConfigStore and attach multiple frozen configurations
|
||||
// to the context.
|
||||
type ConfigStores []ConfigStore
|
||||
|
||||
// ConfigStores implements ConfigStore interface.
|
||||
var _ ConfigStore = ConfigStores{}
|
||||
|
||||
func (stores ConfigStores) ToContext(ctx context.Context) context.Context {
|
||||
for _, s := range stores {
|
||||
ctx = s.ToContext(ctx)
|
||||
}
|
||||
return ctx
|
||||
}
|
||||
|
|
|
@ -687,7 +687,7 @@ k8s.io/utils/trace
|
|||
# knative.dev/hack v0.0.0-20240507013718-68e3bfb39d11
|
||||
## explicit; go 1.18
|
||||
knative.dev/hack
|
||||
# knative.dev/pkg v0.0.0-20240513091600-b1fd04d5c458
|
||||
# knative.dev/pkg v0.0.0-20240515073057-11a3d46fe4d6
|
||||
## explicit; go 1.21
|
||||
knative.dev/pkg/apis
|
||||
knative.dev/pkg/apis/duck
|
||||
|
|
Loading…
Reference in New Issue