Skip to content
This repository was archived by the owner on Dec 18, 2024. It is now read-only.

Commit 6ab34f1

Browse files
committed
Update Go dependencies.
Triggering reason is to fix a vulnerability in gRPC <1.53
1 parent 9f3ddb9 commit 6ab34f1

File tree

3 files changed

+498
-64
lines changed

3 files changed

+498
-64
lines changed

kuksa_go_client/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,16 @@ KUKSA.val Databroker (`kuksa-client-grpc.json`) and KUKSA.val Server (`kuksa-cli
6666
The file `kuksa-client.json` is by default linked to `kuksa-client-grpc.json`.
6767

6868
For using the GO client with the kuksa.val server set protocol = ws and for a connection to kuksa.val databroker set protocol = grpc. On the command line it's available through -protocol ws/grpc.
69+
70+
### Dependency updates
71+
72+
If dependencies needs to be updated the following commands can be used:
73+
74+
```
75+
go generate .
76+
go get -u
77+
go mod tidy
78+
```
79+
80+
This will update `go.mod`and `go.sum`.
81+

kuksa_go_client/go.mod

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,28 @@ go 1.18
55
require (
66
github.com/google/uuid v1.3.0
77
github.com/gorilla/websocket v1.5.0
8-
github.com/spf13/viper v1.10.1
9-
github.com/stretchr/objx v0.3.0
10-
google.golang.org/grpc v1.51.0
11-
google.golang.org/protobuf v1.28.1
8+
github.com/spf13/viper v1.16.0
9+
github.com/stretchr/objx v0.5.0
10+
google.golang.org/grpc v1.56.1
11+
google.golang.org/protobuf v1.31.0
1212
)
1313

1414
require (
15-
github.com/fsnotify/fsnotify v1.5.1 // indirect
16-
github.com/golang/protobuf v1.5.2 // indirect
15+
github.com/fsnotify/fsnotify v1.6.0 // indirect
16+
github.com/golang/protobuf v1.5.3 // indirect
1717
github.com/hashicorp/hcl v1.0.0 // indirect
18-
github.com/magiconair/properties v1.8.5 // indirect
19-
github.com/mitchellh/mapstructure v1.4.3 // indirect
20-
github.com/pelletier/go-toml v1.9.4 // indirect
21-
github.com/spf13/afero v1.6.0 // indirect
22-
github.com/spf13/cast v1.4.1 // indirect
18+
github.com/magiconair/properties v1.8.7 // indirect
19+
github.com/mitchellh/mapstructure v1.5.0 // indirect
20+
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
21+
github.com/spf13/afero v1.9.5 // indirect
22+
github.com/spf13/cast v1.5.1 // indirect
2323
github.com/spf13/jwalterweatherman v1.1.0 // indirect
2424
github.com/spf13/pflag v1.0.5 // indirect
25-
github.com/subosito/gotenv v1.2.0 // indirect
26-
golang.org/x/net v0.10.0 // indirect
27-
golang.org/x/sys v0.8.0 // indirect
28-
golang.org/x/text v0.9.0 // indirect
29-
google.golang.org/genproto v0.0.0-20221207170731-23e4bf6bdc37 // indirect
30-
gopkg.in/ini.v1 v1.66.2 // indirect
31-
gopkg.in/yaml.v2 v2.4.0 // indirect
25+
github.com/subosito/gotenv v1.4.2 // indirect
26+
golang.org/x/net v0.12.0 // indirect
27+
golang.org/x/sys v0.10.0 // indirect
28+
golang.org/x/text v0.11.0 // indirect
29+
google.golang.org/genproto/googleapis/rpc v0.0.0-20230629202037-9506855d4529 // indirect
30+
gopkg.in/ini.v1 v1.67.0 // indirect
31+
gopkg.in/yaml.v3 v3.0.1 // indirect
3232
)

0 commit comments

Comments
 (0)