Skip to content

Commit e7c871e

Browse files
Merge pull request #2920 from oscr/controller-runtime
✨ (go/v3, go/v4-alpha and declarative/v1): Update k8s deps by upgrading controller-runtime from v0.12.2 to 0.13.0 and kubebuilder-declarative-pattern from fe5be9431eae158f86f9de23000a9a2ec06745fc to e0605f0e1a40f97293cb3773f57de695c8bc76af
2 parents fc1b655 + 1f60eba commit e7c871e

File tree

59 files changed

+379
-377
lines changed

Some content is hidden

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

59 files changed

+379
-377
lines changed

pkg/plugins/golang/declarative/v1/api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import (
3232
const (
3333
// kbDeclarativePattern is the sigs.k8s.io/kubebuilder-declarative-pattern version
3434
kbDeclarativePatternForV2 = "v0.0.0-20200522144838-848d48e5b073"
35-
kbDeclarativePatternForV3 = "fe5be9431eae158f86f9de23000a9a2ec06745fc"
35+
kbDeclarativePatternForV3 = "e0605f0e1a40f97293cb3773f57de695c8bc76af"
3636
)
3737

3838
var _ plugin.CreateAPISubcommand = &createAPISubcommand{}

pkg/plugins/golang/v3/commons.go

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,13 @@ manifests: controller-gen`
8383
log.Warnf("unable to update the Makefile with %s: %s", "ENVTEST_K8S_VERSION = 1.21", err)
8484
}
8585

86-
// latest version of controller-runtime where v1beta1 is supported
86+
// DO NOT UPDATE THIS VERSION
87+
// Note that this implementation will update the go.mod to downgrade the versions for those that are
88+
// compatible v1beta1 CRD/Webhooks k8s core APIs if/when a user tries to create an API with
89+
// create api [options] crd-version=v1beta1. The flag/feature is deprecated. however, to ensure that backwards
90+
// compatible we must introduce this logic. Also, note that when we bump the k8s dependencies we need to
91+
// ensure that the following replacements will be done accordingly to downgrade the versions.
92+
// The next version of the Golang base plugin (go/v4-alpha) no longer provide this feature.
8793
const controllerRuntimeVersionForVBeta1 = "v0.9.2"
8894

8995
if err := util.ReplaceInFile("go.mod",

pkg/plugins/golang/v3/scaffolds/init.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import (
3434

3535
const (
3636
// ControllerRuntimeVersion is the kubernetes-sigs/controller-runtime version to be used in the project
37-
ControllerRuntimeVersion = "v0.12.2"
37+
ControllerRuntimeVersion = "v0.13.0"
3838
// ControllerToolsVersion is the kubernetes-sigs/controller-tools version to be used in the project
3939
ControllerToolsVersion = "v0.9.2"
4040

testdata/project-v3-addon-and-grafana/go.mod

Lines changed: 40 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -3,58 +3,58 @@ module sigs.k8s.io/kubebuilder/testdata/project-v3-addon-and-grafana
33
go 1.19
44

55
require (
6-
github.com/go-logr/logr v1.2.0
6+
github.com/go-logr/logr v1.2.3
77
github.com/onsi/ginkgo v1.16.5
8-
github.com/onsi/gomega v1.18.1
9-
k8s.io/apimachinery v0.24.2
10-
k8s.io/client-go v0.24.2
11-
sigs.k8s.io/controller-runtime v0.12.2
12-
sigs.k8s.io/kubebuilder-declarative-pattern v0.11.20220513-0.20220602225619-fe5be9431eae
8+
github.com/onsi/gomega v1.19.0
9+
k8s.io/apimachinery v0.25.0
10+
k8s.io/client-go v0.25.0
11+
sigs.k8s.io/controller-runtime v0.13.0
12+
sigs.k8s.io/kubebuilder-declarative-pattern v0.11.20220513-0.20220907223038-e0605f0e1a40
1313
)
1414

1515
require (
16-
cloud.google.com/go v0.81.0 // indirect
16+
cloud.google.com/go v0.99.0 // indirect
1717
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
1818
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
19-
github.com/Azure/go-autorest/autorest v0.11.18 // indirect
20-
github.com/Azure/go-autorest/autorest/adal v0.9.13 // indirect
19+
github.com/Azure/go-autorest/autorest v0.11.27 // indirect
20+
github.com/Azure/go-autorest/autorest/adal v0.9.20 // indirect
2121
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
2222
github.com/Azure/go-autorest/logger v0.2.1 // indirect
2323
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
24-
github.com/MakeNowJust/heredoc v0.0.0-20170808103936-bb23615498cd // indirect
24+
github.com/MakeNowJust/heredoc v1.0.0 // indirect
2525
github.com/PuerkitoBio/purell v1.1.1 // indirect
2626
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
2727
github.com/beorn7/perks v1.0.1 // indirect
2828
github.com/blang/semver/v4 v4.0.0 // indirect
2929
github.com/cespare/xxhash/v2 v2.1.2 // indirect
30-
github.com/chai2010/gettext-go v0.0.0-20160711120539-c6fed771bfd5 // indirect
30+
github.com/chai2010/gettext-go v1.0.2 // indirect
3131
github.com/davecgh/go-spew v1.1.1 // indirect
32-
github.com/emicklei/go-restful v2.9.5+incompatible // indirect
32+
github.com/emicklei/go-restful/v3 v3.8.0 // indirect
3333
github.com/emirpasic/gods v1.12.0 // indirect
3434
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
35-
github.com/evanphx/json-patch/v5 v5.1.0 // indirect
35+
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
3636
github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect
3737
github.com/fatih/camelcase v1.0.0 // indirect
38-
github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect
39-
github.com/fsnotify/fsnotify v1.5.1 // indirect
38+
github.com/fsnotify/fsnotify v1.5.4 // indirect
4039
github.com/fvbommel/sortorder v1.0.1 // indirect
4140
github.com/go-errors/errors v1.0.1 // indirect
4241
github.com/go-git/gcfg v1.5.0 // indirect
4342
github.com/go-git/go-billy/v5 v5.0.0 // indirect
4443
github.com/go-git/go-git/v5 v5.1.0 // indirect
45-
github.com/go-logr/zapr v1.2.0 // indirect
44+
github.com/go-logr/zapr v1.2.3 // indirect
4645
github.com/go-openapi/jsonpointer v0.19.5 // indirect
4746
github.com/go-openapi/jsonreference v0.19.5 // indirect
4847
github.com/go-openapi/swag v0.19.14 // indirect
4948
github.com/gogo/protobuf v1.3.2 // indirect
49+
github.com/golang-jwt/jwt/v4 v4.2.0 // indirect
5050
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
5151
github.com/golang/protobuf v1.5.2 // indirect
5252
github.com/google/btree v1.0.1 // indirect
5353
github.com/google/gnostic v0.5.7-v3refs // indirect
54-
github.com/google/go-cmp v0.5.6 // indirect
54+
github.com/google/go-cmp v0.5.8 // indirect
5555
github.com/google/gofuzz v1.1.0 // indirect
5656
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
57-
github.com/google/uuid v1.2.0 // indirect
57+
github.com/google/uuid v1.3.0 // indirect
5858
github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect
5959
github.com/imdario/mergo v0.3.12 // indirect
6060
github.com/inconshreveable/mousetrap v1.0.0 // indirect
@@ -77,49 +77,47 @@ require (
7777
github.com/nxadm/tail v1.4.8 // indirect
7878
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
7979
github.com/pkg/errors v0.9.1 // indirect
80-
github.com/pmezard/go-difflib v1.0.0 // indirect
81-
github.com/prometheus/client_golang v1.12.1 // indirect
80+
github.com/prometheus/client_golang v1.12.2 // indirect
8281
github.com/prometheus/client_model v0.2.0 // indirect
8382
github.com/prometheus/common v0.32.1 // indirect
8483
github.com/prometheus/procfs v0.7.3 // indirect
8584
github.com/russross/blackfriday v1.5.2 // indirect
8685
github.com/sergi/go-diff v1.1.0 // indirect
8786
github.com/spf13/cobra v1.4.0 // indirect
8887
github.com/spf13/pflag v1.0.5 // indirect
89-
github.com/stretchr/testify v1.7.0 // indirect
9088
github.com/xanzy/ssh-agent v0.2.1 // indirect
91-
github.com/xlab/treeprint v0.0.0-20181112141820-a009c3971eca // indirect
89+
github.com/xlab/treeprint v1.1.0 // indirect
9290
go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 // indirect
9391
go.uber.org/atomic v1.7.0 // indirect
9492
go.uber.org/multierr v1.6.0 // indirect
95-
go.uber.org/zap v1.19.1 // indirect
96-
golang.org/x/crypto v0.0.0-20220214200702-86341886e292 // indirect
97-
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
93+
go.uber.org/zap v1.21.0 // indirect
94+
golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd // indirect
95+
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
9896
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
99-
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 // indirect
97+
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
10098
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
10199
golang.org/x/text v0.3.7 // indirect
102-
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
100+
golang.org/x/time v0.0.0-20220609170525-579cf78fd858 // indirect
103101
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
104102
google.golang.org/appengine v1.6.7 // indirect
105-
google.golang.org/protobuf v1.27.1 // indirect
103+
google.golang.org/protobuf v1.28.0 // indirect
106104
gopkg.in/inf.v0 v0.9.1 // indirect
107105
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
108106
gopkg.in/warnings.v0 v0.1.2 // indirect
109107
gopkg.in/yaml.v2 v2.4.0 // indirect
110-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
111-
k8s.io/api v0.24.2 // indirect
112-
k8s.io/apiextensions-apiserver v0.24.2 // indirect
113-
k8s.io/cli-runtime v0.24.0 // indirect
114-
k8s.io/component-base v0.24.2 // indirect
115-
k8s.io/klog/v2 v2.60.1 // indirect
116-
k8s.io/kube-openapi v0.0.0-20220328201542-3ee0da9b0b42 // indirect
117-
k8s.io/kubectl v0.24.0 // indirect
118-
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
119-
sigs.k8s.io/cli-utils v0.26.1 // indirect
120-
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
121-
sigs.k8s.io/kustomize/api v0.11.4 // indirect
122-
sigs.k8s.io/kustomize/kyaml v0.13.6 // indirect
123-
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
108+
gopkg.in/yaml.v3 v3.0.1 // indirect
109+
k8s.io/api v0.25.0 // indirect
110+
k8s.io/apiextensions-apiserver v0.25.0 // indirect
111+
k8s.io/cli-runtime v0.25.0 // indirect
112+
k8s.io/component-base v0.25.0 // indirect
113+
k8s.io/klog/v2 v2.70.1 // indirect
114+
k8s.io/kube-openapi v0.0.0-20220803162953-67bda5d908f1 // indirect
115+
k8s.io/kubectl v0.25.0 // indirect
116+
k8s.io/utils v0.0.0-20220728103510-ee6ede2d64ed // indirect
117+
sigs.k8s.io/cli-utils v0.33.0 // indirect
118+
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
119+
sigs.k8s.io/kustomize/api v0.12.1 // indirect
120+
sigs.k8s.io/kustomize/kyaml v0.13.9 // indirect
121+
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
124122
sigs.k8s.io/yaml v1.3.0 // indirect
125123
)

testdata/project-v3-config/controllers/admiral_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ type AdmiralReconciler struct {
4545
// the user.
4646
//
4747
// For more details, check Reconcile and its Result here:
48-
// - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.12.2/pkg/reconcile
48+
// - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.13.0/pkg/reconcile
4949
func (r *AdmiralReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
5050
_ = log.FromContext(ctx)
5151

testdata/project-v3-config/controllers/captain_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ type CaptainReconciler struct {
4545
// the user.
4646
//
4747
// For more details, check Reconcile and its Result here:
48-
// - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.12.2/pkg/reconcile
48+
// - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.13.0/pkg/reconcile
4949
func (r *CaptainReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
5050
_ = log.FromContext(ctx)
5151

testdata/project-v3-config/controllers/firstmate_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ type FirstMateReconciler struct {
4545
// the user.
4646
//
4747
// For more details, check Reconcile and its Result here:
48-
// - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.12.2/pkg/reconcile
48+
// - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.13.0/pkg/reconcile
4949
func (r *FirstMateReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
5050
_ = log.FromContext(ctx)
5151

testdata/project-v3-config/controllers/laker_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ type LakerReconciler struct {
4343
// the user.
4444
//
4545
// For more details, check Reconcile and its Result here:
46-
// - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.12.2/pkg/reconcile
46+
// - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.13.0/pkg/reconcile
4747
func (r *LakerReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
4848
_ = log.FromContext(ctx)
4949

testdata/project-v3-config/go.mod

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ go 1.19
44

55
require (
66
github.com/onsi/ginkgo v1.16.5
7-
github.com/onsi/gomega v1.18.1
8-
k8s.io/api v0.24.2
9-
k8s.io/apimachinery v0.24.2
10-
k8s.io/client-go v0.24.2
11-
sigs.k8s.io/controller-runtime v0.12.2
7+
github.com/onsi/gomega v1.19.0
8+
k8s.io/api v0.25.0
9+
k8s.io/apimachinery v0.25.0
10+
k8s.io/client-go v0.25.0
11+
sigs.k8s.io/controller-runtime v0.13.0
1212
)
1313

1414
require (
15-
cloud.google.com/go v0.81.0 // indirect
15+
cloud.google.com/go v0.97.0 // indirect
1616
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
17-
github.com/Azure/go-autorest/autorest v0.11.18 // indirect
18-
github.com/Azure/go-autorest/autorest/adal v0.9.13 // indirect
17+
github.com/Azure/go-autorest/autorest v0.11.27 // indirect
18+
github.com/Azure/go-autorest/autorest/adal v0.9.20 // indirect
1919
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
2020
github.com/Azure/go-autorest/logger v0.2.1 // indirect
2121
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
@@ -24,20 +24,20 @@ require (
2424
github.com/beorn7/perks v1.0.1 // indirect
2525
github.com/cespare/xxhash/v2 v2.1.2 // indirect
2626
github.com/davecgh/go-spew v1.1.1 // indirect
27-
github.com/emicklei/go-restful v2.9.5+incompatible // indirect
28-
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
29-
github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect
30-
github.com/fsnotify/fsnotify v1.5.1 // indirect
31-
github.com/go-logr/logr v1.2.0 // indirect
32-
github.com/go-logr/zapr v1.2.0 // indirect
27+
github.com/emicklei/go-restful/v3 v3.8.0 // indirect
28+
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
29+
github.com/fsnotify/fsnotify v1.5.4 // indirect
30+
github.com/go-logr/logr v1.2.3 // indirect
31+
github.com/go-logr/zapr v1.2.3 // indirect
3332
github.com/go-openapi/jsonpointer v0.19.5 // indirect
3433
github.com/go-openapi/jsonreference v0.19.5 // indirect
3534
github.com/go-openapi/swag v0.19.14 // indirect
3635
github.com/gogo/protobuf v1.3.2 // indirect
36+
github.com/golang-jwt/jwt/v4 v4.2.0 // indirect
3737
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
3838
github.com/golang/protobuf v1.5.2 // indirect
3939
github.com/google/gnostic v0.5.7-v3refs // indirect
40-
github.com/google/go-cmp v0.5.5 // indirect
40+
github.com/google/go-cmp v0.5.8 // indirect
4141
github.com/google/gofuzz v1.1.0 // indirect
4242
github.com/google/uuid v1.1.2 // indirect
4343
github.com/imdario/mergo v0.3.12 // indirect
@@ -50,34 +50,34 @@ require (
5050
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5151
github.com/nxadm/tail v1.4.8 // indirect
5252
github.com/pkg/errors v0.9.1 // indirect
53-
github.com/prometheus/client_golang v1.12.1 // indirect
53+
github.com/prometheus/client_golang v1.12.2 // indirect
5454
github.com/prometheus/client_model v0.2.0 // indirect
5555
github.com/prometheus/common v0.32.1 // indirect
5656
github.com/prometheus/procfs v0.7.3 // indirect
5757
github.com/spf13/pflag v1.0.5 // indirect
5858
go.uber.org/atomic v1.7.0 // indirect
5959
go.uber.org/multierr v1.6.0 // indirect
60-
go.uber.org/zap v1.19.1 // indirect
61-
golang.org/x/crypto v0.0.0-20220214200702-86341886e292 // indirect
62-
golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
60+
go.uber.org/zap v1.21.0 // indirect
61+
golang.org/x/crypto v0.0.0-20220315160706-3147a52a75dd // indirect
62+
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
6363
golang.org/x/oauth2 v0.0.0-20211104180415-d3ed0bb246c8 // indirect
64-
golang.org/x/sys v0.0.0-20220209214540-3681064d5158 // indirect
64+
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
6565
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
6666
golang.org/x/text v0.3.7 // indirect
67-
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect
67+
golang.org/x/time v0.0.0-20220609170525-579cf78fd858 // indirect
6868
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
6969
google.golang.org/appengine v1.6.7 // indirect
70-
google.golang.org/protobuf v1.27.1 // indirect
70+
google.golang.org/protobuf v1.28.0 // indirect
7171
gopkg.in/inf.v0 v0.9.1 // indirect
7272
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
7373
gopkg.in/yaml.v2 v2.4.0 // indirect
74-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
75-
k8s.io/apiextensions-apiserver v0.24.2 // indirect
76-
k8s.io/component-base v0.24.2 // indirect
77-
k8s.io/klog/v2 v2.60.1 // indirect
78-
k8s.io/kube-openapi v0.0.0-20220328201542-3ee0da9b0b42 // indirect
79-
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
80-
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
81-
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
74+
gopkg.in/yaml.v3 v3.0.1 // indirect
75+
k8s.io/apiextensions-apiserver v0.25.0 // indirect
76+
k8s.io/component-base v0.25.0 // indirect
77+
k8s.io/klog/v2 v2.70.1 // indirect
78+
k8s.io/kube-openapi v0.0.0-20220803162953-67bda5d908f1 // indirect
79+
k8s.io/utils v0.0.0-20220728103510-ee6ede2d64ed // indirect
80+
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
81+
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
8282
sigs.k8s.io/yaml v1.3.0 // indirect
8383
)

testdata/project-v3-multigroup/controllers/apps/deployment_controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ type DeploymentReconciler struct {
4444
// the user.
4545
//
4646
// For more details, check Reconcile and its Result here:
47-
// - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.12.2/pkg/reconcile
47+
// - https://pkg.go.dev/sigs.k8s.io/controller-runtime@v0.13.0/pkg/reconcile
4848
func (r *DeploymentReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ctrl.Result, error) {
4949
_ = log.FromContext(ctx)
5050

0 commit comments

Comments
 (0)