Skip to content

Commit d3127f5

Browse files
authored
Update go.mod dependencies (#441)
* Update cert-manager to v1.8.0 * Update golang.org/x/text to v0.4.0
1 parent 7a1eec0 commit d3127f5

228 files changed

Lines changed: 26094 additions & 8979 deletions

File tree

Some content is hidden

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

go.mod

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module github.com/application-stacks/runtime-component-operator
33
go 1.17
44

55
require (
6+
github.com/cert-manager/cert-manager v1.8.0
67
github.com/go-logr/logr v1.2.2
7-
github.com/jetstack/cert-manager v1.5.0
88
github.com/openshift/api v0.0.0-20220414050251-a83e6f8f1d50
99
github.com/openshift/library-go v0.0.0-20220630204433-c71d40c7de49
1010
github.com/pkg/errors v0.9.1
@@ -17,7 +17,7 @@ require (
1717
)
1818

1919
require (
20-
cloud.google.com/go v0.98.0 // indirect
20+
cloud.google.com/go v0.99.0 // indirect
2121
github.com/beorn7/perks v1.0.1 // indirect
2222
github.com/blang/semver v3.5.1+incompatible // indirect
2323
github.com/blendle/zapdriver v1.3.1 // indirect
@@ -35,7 +35,6 @@ require (
3535
github.com/google/gofuzz v1.2.0 // indirect
3636
github.com/google/uuid v1.3.0 // indirect
3737
github.com/googleapis/gnostic v0.5.5 // indirect
38-
github.com/hashicorp/golang-lru v0.5.4 // indirect
3938
github.com/imdario/mergo v0.3.12 // indirect
4039
github.com/json-iterator/go v1.1.12 // indirect
4140
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
@@ -50,9 +49,9 @@ require (
5049
go.uber.org/atomic v1.9.0 // indirect
5150
go.uber.org/multierr v1.6.0 // indirect
5251
go.uber.org/zap v1.19.1 // indirect
53-
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
52+
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
5453
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b // indirect
55-
golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9 // indirect
54+
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
5655
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
5756
golang.org/x/text v0.3.7 // indirect
5857
golang.org/x/time v0.0.0-20220224211638-0e9765cccd65 // indirect
@@ -69,6 +68,7 @@ require (
6968
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
7069
knative.dev/networking v0.0.0-20220524205304-22d1b933cf73 // indirect
7170
knative.dev/pkg v0.0.0-20220524202603-19adf798efb8 // indirect
71+
sigs.k8s.io/gateway-api v0.4.1 // indirect
7272
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
7373
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
7474
sigs.k8s.io/yaml v1.3.0 // indirect
@@ -79,6 +79,7 @@ replace (
7979
github.com/otiai10/copy => github.com/otiai10/copy v1.0.2
8080
github.com/otiai10/mint => github.com/otiai10/mint v1.3.0
8181
github.com/prometheus/client_golang => github.com/prometheus/client_golang v1.11.1
82+
golang.org/x/text => golang.org/x/text v0.4.0
8283
k8s.io/api => k8s.io/api v0.23.0
8384
k8s.io/apimachinery => k8s.io/apimachinery v0.23.0
8485
k8s.io/client-go => k8s.io/client-go v0.23.0

go.sum

Lines changed: 1136 additions & 10 deletions
Large diffs are not rendered by default.

main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ import (
3232
appstacksv1beta2 "github.com/application-stacks/runtime-component-operator/api/v1beta2"
3333
"github.com/application-stacks/runtime-component-operator/controllers"
3434
"github.com/application-stacks/runtime-component-operator/utils"
35-
certmanagerv1 "github.com/jetstack/cert-manager/pkg/apis/certmanager/v1"
35+
certmanagerv1 "github.com/cert-manager/cert-manager/pkg/apis/certmanager/v1"
3636
imagev1 "github.com/openshift/api/image/v1"
3737
routev1 "github.com/openshift/api/route/v1"
3838
prometheusv1 "github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring/v1"

utils/reconciler.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
networkingv1 "k8s.io/api/networking/v1"
1010

1111
"github.com/application-stacks/runtime-component-operator/common"
12-
certmanagerv1 "github.com/jetstack/cert-manager/pkg/apis/certmanager/v1"
13-
certmanagermetav1 "github.com/jetstack/cert-manager/pkg/apis/meta/v1"
12+
certmanagerv1 "github.com/cert-manager/cert-manager/pkg/apis/certmanager/v1"
13+
certmanagermetav1 "github.com/cert-manager/cert-manager/pkg/apis/meta/v1"
1414
routev1 "github.com/openshift/api/route/v1"
1515
corev1 "k8s.io/api/core/v1"
1616
apierrors "k8s.io/apimachinery/pkg/api/errors"

utils/utils.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,13 @@ import (
66
"encoding/json"
77
"errors"
88
"fmt"
9-
certmanagerv1 "github.com/jetstack/cert-manager/pkg/apis/certmanager/v1"
109
"os"
1110
"sort"
1211
"strconv"
1312
"strings"
1413

14+
certmanagerv1 "github.com/cert-manager/cert-manager/pkg/apis/certmanager/v1"
15+
1516
networkingv1 "k8s.io/api/networking/v1"
1617
"k8s.io/client-go/kubernetes"
1718
"k8s.io/client-go/kubernetes/scheme"
File renamed without changes.

vendor/github.com/jetstack/cert-manager/LICENSES renamed to vendor/github.com/cert-manager/cert-manager/LICENSES

Lines changed: 7931 additions & 5581 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/jetstack/cert-manager/pkg/apis/acme/BUILD.bazel renamed to vendor/github.com/cert-manager/cert-manager/pkg/apis/acme/BUILD.bazel

Lines changed: 1 addition & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/github.com/jetstack/cert-manager/pkg/apis/acme/doc.go renamed to vendor/github.com/cert-manager/cert-manager/pkg/apis/acme/doc.go

File renamed without changes.

vendor/github.com/jetstack/cert-manager/pkg/apis/acme/v1/BUILD.bazel renamed to vendor/github.com/cert-manager/cert-manager/pkg/apis/acme/v1/BUILD.bazel

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)