Skip to content

Commit 2042e5b

Browse files
committed
Update dependencies
Signed-off-by: Mario Loriedo <[email protected]>
1 parent e3e4b25 commit 2042e5b

File tree

258 files changed

+7262
-23875
lines changed

Some content is hidden

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

258 files changed

+7262
-23875
lines changed

.golangci.yaml

-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ linters:
2727
- wsl
2828
- godox
2929
- tparallel
30-
- gomnd
3130
- nlreturn
3231
- noctx
3332
- nestif
@@ -62,7 +61,6 @@ linters:
6261
- nonamedreturns
6362
- exhaustruct
6463
# deprecated linters
65-
- execinquery
6664
- exportloopref
6765
linters-settings:
6866
errcheck:

.pre-commit-config.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ repos:
1111
- id: check-executables-have-shebangs
1212
- id: check-merge-conflict
1313
- id: check-yaml
14+
args: [--allow-multiple-documents]
1415
- repo: https://github.com/codespell-project/codespell
1516
rev: v2.3.0
1617
hooks:

CONTRIBUTING.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -127,4 +127,6 @@ passes these checks, but we also have more criteria than just that before we can
127127
accept and merge it. We recommend that you check the following things locally
128128
before you submit your code:
129129

130-
⚠️ **Create a checklist that authors should use before submitting a pull request**
130+
- `golangci-lint run`
131+
- `pre-commit run --all-files`
132+
- `snyk test`

demo-assets/outyet-devworkspace.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,3 @@ spec:
2929
env:
3030
- name: CODE_HOST
3131
value: 0.0.0.0
32-

go.mod

+30-32
Original file line numberDiff line numberDiff line change
@@ -2,39 +2,39 @@
22

33
module devfile.io/kubectl-cde
44

5-
go 1.22.0
5+
go 1.23.4
66

77
require (
8-
github.com/devfile/api/v2 v2.2.2
8+
github.com/devfile/api/v2 v2.3.0
99
github.com/spf13/cobra v1.8.1
1010
github.com/spf13/pflag v1.0.5
11-
k8s.io/api v0.31.2
12-
k8s.io/apimachinery v0.31.2
13-
k8s.io/cli-runtime v0.0.0-20240828000529-8828c9f7a39d
14-
k8s.io/client-go v0.31.2
11+
k8s.io/api v0.31.4
12+
k8s.io/apimachinery v0.31.4
13+
k8s.io/cli-runtime v0.31.4
14+
k8s.io/client-go v0.31.4
1515
)
1616

1717
require (
18-
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
18+
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect
1919
github.com/blang/semver/v4 v4.0.0 // indirect
2020
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
21-
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
21+
github.com/emicklei/go-restful/v3 v3.12.1 // indirect
2222
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
23-
github.com/go-errors/errors v1.4.2 // indirect
23+
github.com/go-errors/errors v1.5.1 // indirect
2424
github.com/go-logr/logr v1.4.2 // indirect
2525
github.com/go-openapi/jsonpointer v0.21.0 // indirect
26-
github.com/go-openapi/jsonreference v0.20.2 // indirect
26+
github.com/go-openapi/jsonreference v0.21.0 // indirect
2727
github.com/go-openapi/swag v0.23.0 // indirect
2828
github.com/gogo/protobuf v1.3.2 // indirect
2929
github.com/golang/protobuf v1.5.4 // indirect
30-
github.com/google/btree v1.0.1 // indirect
31-
github.com/google/gnostic-models v0.6.8 // indirect
30+
github.com/google/btree v1.1.3 // indirect
31+
github.com/google/gnostic-models v0.6.9 // indirect
3232
github.com/google/go-cmp v0.6.0 // indirect
3333
github.com/google/gofuzz v1.2.0 // indirect
3434
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
3535
github.com/google/uuid v1.6.0 // indirect
36-
github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect
37-
github.com/imdario/mergo v0.3.13 // indirect
36+
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
37+
github.com/imdario/mergo v0.3.16 // indirect
3838
github.com/inconshreveable/mousetrap v1.1.0 // indirect
3939
github.com/josharian/intern v1.0.0 // indirect
4040
github.com/json-iterator/go v1.1.12 // indirect
@@ -47,30 +47,28 @@ require (
4747
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
4848
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
4949
github.com/pkg/errors v0.9.1 // indirect
50-
github.com/stretchr/objx v0.5.2 // indirect
5150
github.com/x448/float16 v0.8.4 // indirect
5251
github.com/xlab/treeprint v1.2.0 // indirect
53-
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect
54-
golang.org/x/net v0.28.0 // indirect
55-
golang.org/x/oauth2 v0.21.0 // indirect
56-
golang.org/x/sync v0.8.0 // indirect
57-
golang.org/x/sys v0.23.0 // indirect
58-
golang.org/x/term v0.23.0 // indirect
59-
golang.org/x/text v0.17.0 // indirect
60-
golang.org/x/time v0.3.0 // indirect
61-
google.golang.org/protobuf v1.34.2 // indirect
52+
golang.org/x/net v0.31.0 // indirect
53+
golang.org/x/oauth2 v0.24.0 // indirect
54+
golang.org/x/sync v0.9.0 // indirect
55+
golang.org/x/sys v0.27.0 // indirect
56+
golang.org/x/term v0.26.0 // indirect
57+
golang.org/x/text v0.20.0 // indirect
58+
golang.org/x/time v0.8.0 // indirect
59+
google.golang.org/protobuf v1.35.2 // indirect
6260
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
6361
gopkg.in/inf.v0 v0.9.1 // indirect
6462
gopkg.in/yaml.v2 v2.4.0 // indirect
6563
gopkg.in/yaml.v3 v3.0.1 // indirect
66-
k8s.io/apiextensions-apiserver v0.26.1 // indirect
64+
k8s.io/apiextensions-apiserver v0.31.4 // indirect
6765
k8s.io/klog/v2 v2.130.1 // indirect
68-
k8s.io/kube-openapi v0.0.0-20240827152857-f7e401e7b4c2 // indirect
69-
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
70-
sigs.k8s.io/controller-runtime v0.14.4 // indirect
71-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
72-
sigs.k8s.io/kustomize/api v0.17.2 // indirect
73-
sigs.k8s.io/kustomize/kyaml v0.17.1 // indirect
74-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
66+
k8s.io/kube-openapi v0.0.0-20241212222426-2c72e554b1e7 // indirect
67+
k8s.io/utils v0.0.0-20241210054802-24370beab758 // indirect
68+
sigs.k8s.io/controller-runtime v0.19.3 // indirect
69+
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
70+
sigs.k8s.io/kustomize/api v0.18.0 // indirect
71+
sigs.k8s.io/kustomize/kyaml v0.18.1 // indirect
72+
sigs.k8s.io/structured-merge-diff/v4 v4.4.3 // indirect
7573
sigs.k8s.io/yaml v1.4.0 // indirect
7674
)

0 commit comments

Comments
 (0)