Skip to content

Commit fcc3bdb

Browse files
committed
Bump Go stuff (stay on Helm 3)
1 parent 3275f66 commit fcc3bdb

3 files changed

Lines changed: 240 additions & 302 deletions

File tree

go.mod

Lines changed: 32 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,12 @@ module rust/stackable/go-helm-wrapper
22

33
go 1.26.0
44

5-
// We can not bump to helm 4 yet:
6-
// > go.mod:8:2: require helm.sh/helm/v3: version "v4.1.1" invalid: should be v3, not v4
7-
// Related helm 4 issue: https://github.com/stackabletech/issues/issues/814
5+
// go-helm-client now supports helm 4 :) Because of https://github.com/stackabletech/issues/issues/814
6+
// we don't want to bump to Helm 4 yet
87
require (
98
github.com/mittwald/go-helm-client v0.12.19
10-
helm.sh/helm/v3 v3.20.0
11-
k8s.io/client-go v0.35.2
9+
helm.sh/helm/v3 v3.21.3
10+
k8s.io/client-go v0.36.2
1211
)
1312

1413
require (
@@ -18,19 +17,15 @@ require (
1817
github.com/BurntSushi/toml v1.6.0 // indirect
1918
github.com/MakeNowJust/heredoc v1.0.0 // indirect
2019
github.com/Masterminds/goutils v1.1.1 // indirect
21-
github.com/Masterminds/semver/v3 v3.4.0 // indirect
20+
github.com/Masterminds/semver/v3 v3.5.0 // indirect
2221
github.com/Masterminds/sprig/v3 v3.3.0 // indirect
2322
github.com/Masterminds/squirrel v1.5.4 // indirect
2423
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 // indirect
2524
github.com/blang/semver/v4 v4.0.0 // indirect
2625
github.com/chai2010/gettext-go v1.0.3 // indirect
27-
github.com/containerd/containerd v1.7.30 // indirect
28-
github.com/containerd/errdefs v0.3.0 // indirect
29-
github.com/containerd/log v0.1.0 // indirect
30-
github.com/containerd/platforms v0.2.1 // indirect
31-
github.com/cyphar/filepath-securejoin v0.6.1 // indirect
26+
github.com/cyphar/filepath-securejoin v0.7.0 // indirect
3227
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
33-
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
28+
github.com/emicklei/go-restful/v3 v3.13.0 // indirect
3429
github.com/evanphx/json-patch v5.9.11+incompatible // indirect
3530
github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect
3631
github.com/fatih/color v1.17.0 // indirect
@@ -44,21 +39,18 @@ require (
4439
github.com/gobwas/glob v0.2.3 // indirect
4540
github.com/google/btree v1.1.3 // indirect
4641
github.com/google/gnostic-models v0.7.0 // indirect
47-
github.com/google/go-cmp v0.7.0 // indirect
4842
github.com/google/uuid v1.6.0 // indirect
4943
github.com/gosuri/uitable v0.0.4 // indirect
50-
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
5144
github.com/hashicorp/errwrap v1.1.0 // indirect
5245
github.com/hashicorp/go-multierror v1.1.1 // indirect
5346
github.com/huandu/xstrings v1.5.0 // indirect
5447
github.com/inconshreveable/mousetrap v1.1.0 // indirect
5548
github.com/jmoiron/sqlx v1.4.0 // indirect
5649
github.com/josharian/intern v1.0.0 // indirect
5750
github.com/json-iterator/go v1.1.12 // indirect
58-
github.com/klauspost/compress v1.18.0 // indirect
5951
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect
6052
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect
61-
github.com/lib/pq v1.10.9 // indirect
53+
github.com/lib/pq v1.12.3 // indirect
6254
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
6355
github.com/mailru/easyjson v0.7.7 // indirect
6456
github.com/mattn/go-colorable v0.1.13 // indirect
@@ -82,43 +74,40 @@ require (
8274
github.com/russross/blackfriday/v2 v2.1.0 // indirect
8375
github.com/santhosh-tekuri/jsonschema/v6 v6.0.2 // indirect
8476
github.com/shopspring/decimal v1.4.0 // indirect
85-
github.com/sirupsen/logrus v1.9.3 // indirect
8677
github.com/spf13/cast v1.7.0 // indirect
8778
github.com/spf13/cobra v1.10.2 // indirect
8879
github.com/spf13/pflag v1.0.10 // indirect
8980
github.com/x448/float16 v0.8.4 // indirect
9081
github.com/xlab/treeprint v1.2.0 // indirect
91-
go.yaml.in/yaml/v2 v2.4.3 // indirect
82+
go.yaml.in/yaml/v2 v2.4.4 // indirect
9283
go.yaml.in/yaml/v3 v3.0.4 // indirect
93-
golang.org/x/crypto v0.46.0 // indirect
94-
golang.org/x/net v0.48.0 // indirect
95-
golang.org/x/oauth2 v0.30.0 // indirect
96-
golang.org/x/sync v0.19.0 // indirect
97-
golang.org/x/sys v0.40.0 // indirect
98-
golang.org/x/term v0.39.0 // indirect
99-
golang.org/x/text v0.33.0 // indirect
100-
golang.org/x/time v0.12.0 // indirect
101-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250528174236-200df99c418a // indirect
102-
google.golang.org/grpc v1.72.2 // indirect
103-
google.golang.org/protobuf v1.36.8 // indirect
84+
golang.org/x/crypto v0.53.0 // indirect
85+
golang.org/x/net v0.55.0 // indirect
86+
golang.org/x/oauth2 v0.35.0 // indirect
87+
golang.org/x/sync v0.21.0 // indirect
88+
golang.org/x/sys v0.46.0 // indirect
89+
golang.org/x/term v0.44.0 // indirect
90+
golang.org/x/text v0.38.0 // indirect
91+
golang.org/x/time v0.14.0 // indirect
92+
google.golang.org/protobuf v1.36.12-0.20260120151049-f2248ac996af // indirect
10493
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
10594
gopkg.in/inf.v0 v0.9.1 // indirect
10695
gopkg.in/yaml.v3 v3.0.1 // indirect
107-
k8s.io/api v0.35.2 // indirect
108-
k8s.io/apiextensions-apiserver v0.35.0 // indirect
109-
k8s.io/apimachinery v0.35.2 // indirect
110-
k8s.io/apiserver v0.35.0 // indirect
111-
k8s.io/cli-runtime v0.35.0 // indirect
112-
k8s.io/component-base v0.35.0 // indirect
113-
k8s.io/klog/v2 v2.130.1 // indirect
114-
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect
115-
k8s.io/kubectl v0.35.0 // indirect
116-
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 // indirect
117-
oras.land/oras-go/v2 v2.6.0 // indirect
96+
k8s.io/api v0.36.2 // indirect
97+
k8s.io/apiextensions-apiserver v0.36.2 // indirect
98+
k8s.io/apimachinery v0.36.2 // indirect
99+
k8s.io/apiserver v0.36.2 // indirect
100+
k8s.io/cli-runtime v0.36.2 // indirect
101+
k8s.io/component-base v0.36.2 // indirect
102+
k8s.io/klog/v2 v2.140.0 // indirect
103+
k8s.io/kube-openapi v0.0.0-20260317180543-43fb72c5454a // indirect
104+
k8s.io/kubectl v0.36.2 // indirect
105+
k8s.io/utils v0.0.0-20260210185600-b8788abfbbc2 // indirect
106+
oras.land/oras-go/v2 v2.6.1 // indirect
118107
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
119-
sigs.k8s.io/kustomize/api v0.20.1 // indirect
120-
sigs.k8s.io/kustomize/kyaml v0.20.1 // indirect
108+
sigs.k8s.io/kustomize/api v0.21.1 // indirect
109+
sigs.k8s.io/kustomize/kyaml v0.21.1 // indirect
121110
sigs.k8s.io/randfill v1.0.0 // indirect
122-
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
111+
sigs.k8s.io/structured-merge-diff/v6 v6.3.2 // indirect
123112
sigs.k8s.io/yaml v1.6.0 // indirect
124113
)

0 commit comments

Comments
 (0)