Skip to content
This repository was archived by the owner on Apr 12, 2026. It is now read-only.

Commit 0943384

Browse files
authored
[app] Update Dependencies (#424)
Update all dependencies for kobs, this includes: - All used NPM packages - All used Go packages - The used Go version. The version was updated from 1.18 to 1.19 in the go.mod file, in the GitHub Actions and in the Dockerfile.
1 parent 8dc9626 commit 0943384

29 files changed

Lines changed: 1287 additions & 1273 deletions

File tree

.github/workflows/codeql.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
uses: actions/setup-go@v3
9191
if: ${{ matrix.language == 'go' }}
9292
with:
93-
go-version: 1.18
93+
go-version: 1.19
9494

9595
- name: Manualbuild
9696
if: ${{ matrix.language == 'go' }}

.github/workflows/continuous-integration.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Setup
3333
uses: actions/setup-go@v3
3434
with:
35-
go-version: 1.18
35+
go-version: 1.19
3636

3737
- name: Cache
3838
uses: actions/cache@v3

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Most of the kobs functions are implemented via plugins, which can be found in th
8484
### Prerequisites
8585

8686
- It is strongly recommended that you use macOS or Linux distributions for development.
87-
- You have Go 1.18.0 or newer installed.
87+
- You have Go 1.19.0 or newer installed.
8888
- You have Node.js 16.0.0 or newer installed.
8989
- For the React UI, you will need a working NodeJS environment and the Yarn package manager to compile the Web UI assets.
9090

cmd/kobs/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM --platform=linux/amd64 node:16.16.0 as app
1+
FROM --platform=linux/amd64 node:16.17.0 as app
22
WORKDIR /kobs
33
COPY lerna.json package.json yarn.lock Makefile /kobs/
44
COPY plugins /kobs/plugins
55
RUN yarn install --frozen-lockfile --network-timeout 3600000
66
RUN make generate-assets
77

8-
FROM golang:1.18.5 as api
8+
FROM golang:1.19.0 as api
99
WORKDIR /kobs
1010
COPY go.mod go.sum /kobs/
1111
RUN go mod download

docs/contributing/use-custom-plugins.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,14 +81,14 @@ The `Dockerfile` is used to build your own version of kobs and to copy the front
8181
FROM kobsio/kobs:v0.9.1 as app
8282
+FROM kobsio/plugin:main as plugin-helloworld
8383

84-
FROM golang:1.18.3 as api
84+
FROM golang:1.19.0 as api
8585
WORKDIR /kobs
8686
COPY go.mod go.sum /kobs/
8787
RUN go mod download
8888
COPY . .
8989
RUN export CGO_ENABLED=0 && make build
9090

91-
FROM alpine:3.16.0
91+
FROM alpine:3.16.2
9292
RUN apk update && apk add --no-cache ca-certificates
9393
RUN mkdir /kobs
9494
COPY --from=api /kobs/bin/kobs /kobs

go.mod

Lines changed: 31 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
module github.com/kobsio/kobs
22

3-
go 1.18
3+
go 1.19
44

55
require (
66
github.com/Azure/azure-sdk-for-go v66.0.0+incompatible
7-
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.1.2
7+
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.1.3
88
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.1.0
99
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute v1.0.0
1010
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/containerinstance/armcontainerinstance v1.0.0
@@ -15,28 +15,28 @@ require (
1515
github.com/Azure/go-autorest/autorest/azure/auth v0.5.11
1616
github.com/Azure/go-autorest/autorest/date v0.3.0
1717
github.com/ClickHouse/clickhouse-go v1.5.4
18-
github.com/andygrunwald/go-jira v1.15.1
19-
github.com/coreos/go-oidc/v3 v3.2.0
20-
github.com/fluxcd/helm-controller/api v0.22.2
21-
github.com/fluxcd/kustomize-controller/api v0.27.0
22-
github.com/fluxcd/pkg/apis/meta v0.14.2
18+
github.com/andygrunwald/go-jira v1.16.0
19+
github.com/coreos/go-oidc/v3 v3.3.0
20+
github.com/fluxcd/helm-controller/api v0.23.1
21+
github.com/fluxcd/kustomize-controller/api v0.27.1
22+
github.com/fluxcd/pkg/apis/meta v0.15.0
2323
github.com/go-chi/chi/v5 v5.0.7
2424
github.com/go-chi/cors v1.2.1
2525
github.com/go-chi/render v1.0.2
2626
github.com/go-sql-driver/mysql v1.6.0
2727
github.com/golang-jwt/jwt/v4 v4.4.2
2828
github.com/google/go-github v17.0.0+incompatible
2929
github.com/gorilla/websocket v1.5.0
30-
github.com/kiali/kiali v1.55.0
30+
github.com/kiali/kiali v1.55.1
3131
github.com/lib/pq v1.10.6
32-
github.com/minio/minio-go/v7 v7.0.34
32+
github.com/minio/minio-go/v7 v7.0.35
3333
github.com/mitchellh/mapstructure v1.5.0
3434
github.com/mmcdole/gofeed v1.1.3
3535
github.com/opsgenie/opsgenie-go-sdk-v2 v1.2.13
3636
github.com/orlangure/gnomock v0.21.1
3737
github.com/prometheus/client_golang v1.13.0
3838
github.com/prometheus/common v0.37.0
39-
github.com/signalsciences/go-sigsci v0.1.4
39+
github.com/signalsciences/go-sigsci v0.1.5
4040
github.com/spf13/cobra v1.5.0
4141
github.com/stretchr/testify v1.8.0
4242
github.com/timshannon/bolthold v0.0.0-20210913165410-232392fc8a6a
@@ -49,21 +49,22 @@ require (
4949
go.opentelemetry.io/otel/exporters/zipkin v1.9.0
5050
go.opentelemetry.io/otel/sdk v1.9.0
5151
go.opentelemetry.io/otel/trace v1.9.0
52-
go.uber.org/zap v1.22.0
53-
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa
54-
golang.org/x/oauth2 v0.0.0-20220808172628-8227340efae7
55-
k8s.io/api v0.24.3
56-
k8s.io/apiextensions-apiserver v0.24.3
57-
k8s.io/apimachinery v0.24.3
58-
k8s.io/client-go v0.24.3
52+
go.uber.org/zap v1.23.0
53+
golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90
54+
golang.org/x/oauth2 v0.0.0-20220822191816-0ebed06d0094
55+
k8s.io/api v0.25.0
56+
k8s.io/apiextensions-apiserver v0.25.0
57+
k8s.io/apimachinery v0.25.0
58+
k8s.io/client-go v0.25.0
5959
sigs.k8s.io/controller-runtime v0.12.3
6060
sigs.k8s.io/yaml v1.3.0
6161
)
6262

6363
require (
6464
github.com/Azure/azure-sdk-for-go/sdk/internal v1.0.0 // indirect
65+
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
6566
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
66-
github.com/Azure/go-autorest/autorest/adal v0.9.18 // indirect
67+
github.com/Azure/go-autorest/autorest/adal v0.9.20 // indirect
6768
github.com/Azure/go-autorest/autorest/azure/cli v0.4.5 // indirect
6869
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
6970
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect
@@ -86,11 +87,11 @@ require (
8687
github.com/docker/go-connections v0.4.0 // indirect
8788
github.com/docker/go-units v0.4.0 // indirect
8889
github.com/dustin/go-humanize v1.0.0 // indirect
89-
github.com/emicklei/go-restful v2.9.5+incompatible // indirect
90+
github.com/emicklei/go-restful/v3 v3.8.0 // indirect
9091
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
9192
github.com/fatih/structs v1.1.0 // indirect
9293
github.com/felixge/httpsnoop v1.0.3 // indirect
93-
github.com/fluxcd/pkg/apis/kustomize v0.4.2 // indirect
94+
github.com/fluxcd/pkg/apis/kustomize v0.5.0 // indirect
9495
github.com/go-logr/logr v1.2.3 // indirect
9596
github.com/go-logr/stdr v1.2.2 // indirect
9697
github.com/go-openapi/jsonpointer v0.19.5 // indirect
@@ -152,26 +153,26 @@ require (
152153
go.opentelemetry.io/otel/metric v0.31.0 // indirect
153154
go.uber.org/atomic v1.9.0 // indirect
154155
go.uber.org/multierr v1.7.0 // indirect
155-
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
156+
golang.org/x/net v0.0.0-20220826154423-83b083e8dc8b // indirect
156157
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 // indirect
157-
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
158+
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 // indirect
158159
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
159160
golang.org/x/text v0.3.7 // indirect
160161
golang.org/x/time v0.0.0-20220411224347-583f2d630306 // indirect
161162
google.golang.org/appengine v1.6.7 // indirect
162-
google.golang.org/genproto v0.0.0-20220107163113-42d7afdf6368 // indirect
163-
google.golang.org/grpc v1.42.0 // indirect
163+
google.golang.org/genproto v0.0.0-20220616135557-88e70c0c3a90 // indirect
164+
google.golang.org/grpc v1.47.0 // indirect
164165
google.golang.org/protobuf v1.28.1 // indirect
165166
gopkg.in/inf.v0 v0.9.1 // indirect
166167
gopkg.in/ini.v1 v1.66.6 // indirect
167-
gopkg.in/square/go-jose.v2 v2.5.1 // indirect
168+
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
168169
gopkg.in/yaml.v2 v2.4.0 // indirect
169170
gopkg.in/yaml.v3 v3.0.1 // indirect
170171
istio.io/api v0.0.0-20220512181135-e8ec1e1d89de // indirect
171172
istio.io/client-go v1.14.0 // indirect
172-
k8s.io/klog/v2 v2.60.1 // indirect
173-
k8s.io/kube-openapi v0.0.0-20220328201542-3ee0da9b0b42 // indirect
174-
k8s.io/utils v0.0.0-20220210201930-3a6ce19ff2f9 // indirect
175-
sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 // indirect
176-
sigs.k8s.io/structured-merge-diff/v4 v4.2.1 // indirect
173+
k8s.io/klog/v2 v2.70.1 // indirect
174+
k8s.io/kube-openapi v0.0.0-20220803162953-67bda5d908f1 // indirect
175+
k8s.io/utils v0.0.0-20220728103510-ee6ede2d64ed // indirect
176+
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
177+
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
177178
)

0 commit comments

Comments
 (0)