Skip to content

Commit 2d559bf

Browse files
authored
Merge pull request #1584 from cloudxxx8/issue-1583
fix: Bump dependencies to resolve CVEs
2 parents b3a3c16 + 9411810 commit 2d559bf

File tree

1,541 files changed

+83708
-52970
lines changed

Some content is hidden

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

1,541 files changed

+83708
-52970
lines changed

app-service-template/Attribution.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,8 @@ https://github.com/grpc/grpc-go/blob/master/LICENSE
192192
google.golang.org/protobuf (Unspecified) https://github.com/protocolbuffers/protobuf-go
193193
https://github.com/protocolbuffers/protobuf-go/blob/master/LICENSE
194194

195-
gopkg.in/square/go-jose.v2 (Apache-2.0) https://github.com/square/go-jose/tree/v2.6.0
196-
https://github.com/square/go-jose/blob/v2.6.0/LICENSE
195+
github.com/go-jose/go-jose/v4 (Apache-2.0) https://github.com/go-jose/go-jose
196+
https://github.com/go-jose/go-jose/blob/main/LICENSE
197197

198198
github.com/Microsoft/go-winio (MIT) https://github.com/Microsoft/go-winio
199199
https://github.com/microsoft/go-winio/blob/master/LICENSE
@@ -216,9 +216,6 @@ https://github.com/golang/tools/blob/master/LICENSE
216216
golang.org/x/exp (BSD-3) https://github.com/golang/tools
217217
https://github.com/golang/tools/blob/master/LICENSE
218218

219-
github.com/go-jose/go-jose/v3 (Apache-2.0) https://github.com/go-jose/go-jose
220-
https://github.com/go-jose/go-jose/blob/v3/LICENSE
221-
222219
github.com/klauspost/compress (Apache-2.0) https://github.com/klauspost/compress
223220
https://github.com/klauspost/compress/blob/master/LICENSE
224221

@@ -238,4 +235,7 @@ github.com/valyala/fasttemplate (MIT) https://github.com/valyala/fasttemplate
238235
https://github.com/valyala/fasttemplate/blob/master/LICENSE
239236

240237
github.com/valyala/bytebufferpool (MIT) https://github.com/valyala/bytebufferpool
241-
https://github.com/valyala/bytebufferpool/blob/master/LICENSE
238+
https://github.com/valyala/bytebufferpool/blob/master/LICENSE
239+
240+
google.golang.org/genproto/googleapis/rpc (Apache 2.0) https://github.com/googleapis/go-genproto
241+
https://github.com/googleapis/go-genproto/blob/main/LICENSE

app-service-template/go.mod

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ replace github.com/edgexfoundry/app-functions-sdk-go/v3 => ../
1111
require (
1212
github.com/edgexfoundry/app-functions-sdk-go/v3 v3.1.0
1313
github.com/edgexfoundry/go-mod-core-contracts/v3 v3.1.0
14-
github.com/google/uuid v1.3.1
14+
github.com/google/uuid v1.6.0
1515
github.com/labstack/echo/v4 v4.11.2
1616
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
17-
github.com/stretchr/testify v1.8.4
17+
github.com/stretchr/testify v1.9.0
1818
)
1919

2020
require (
21-
github.com/Microsoft/go-winio v0.6.0 // indirect
21+
github.com/Microsoft/go-winio v0.6.1 // indirect
2222
github.com/armon/go-metrics v0.4.1 // indirect
2323
github.com/cenkalti/backoff v2.2.1+incompatible // indirect
2424
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
@@ -32,15 +32,14 @@ require (
3232
github.com/fatih/color v1.14.1 // indirect
3333
github.com/fxamacker/cbor/v2 v2.5.0 // indirect
3434
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
35-
github.com/go-jose/go-jose/v3 v3.0.0 // indirect
35+
github.com/go-jose/go-jose/v4 v4.0.1 // indirect
3636
github.com/go-kit/log v0.2.1 // indirect
3737
github.com/go-logfmt/logfmt v0.5.1 // indirect
3838
github.com/go-playground/locales v0.14.1 // indirect
3939
github.com/go-playground/universal-translator v0.18.1 // indirect
4040
github.com/go-playground/validator/v10 v10.15.5 // indirect
4141
github.com/go-redis/redis/v7 v7.3.0 // indirect
4242
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
43-
github.com/golang/protobuf v1.5.3 // indirect
4443
github.com/gomodule/redigo v2.0.0+incompatible // indirect
4544
github.com/gorilla/websocket v1.5.0 // indirect
4645
github.com/hashicorp/consul/api v1.25.1 // indirect
@@ -66,23 +65,23 @@ require (
6665
github.com/nats-io/nkeys v0.4.6 // indirect
6766
github.com/nats-io/nuid v1.0.1 // indirect
6867
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
69-
github.com/spiffe/go-spiffe/v2 v2.1.6 // indirect
70-
github.com/stretchr/objx v0.5.0 // indirect
68+
github.com/spiffe/go-spiffe/v2 v2.2.0 // indirect
69+
github.com/stretchr/objx v0.5.2 // indirect
7170
github.com/valyala/bytebufferpool v1.0.0 // indirect
7271
github.com/valyala/fasttemplate v1.2.2 // indirect
7372
github.com/x448/float16 v0.8.4 // indirect
7473
github.com/zeebo/errs v1.3.0 // indirect
75-
golang.org/x/crypto v0.14.0 // indirect
76-
golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect
77-
golang.org/x/mod v0.8.0 // indirect
78-
golang.org/x/net v0.17.0 // indirect
79-
golang.org/x/sync v0.2.0 // indirect
80-
golang.org/x/sys v0.13.0 // indirect
81-
golang.org/x/text v0.13.0 // indirect
82-
golang.org/x/time v0.3.0 // indirect
83-
golang.org/x/tools v0.6.0 // indirect
84-
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
85-
google.golang.org/grpc v1.56.3 // indirect
86-
google.golang.org/protobuf v1.30.0 // indirect
74+
golang.org/x/crypto v0.23.0 // indirect
75+
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
76+
golang.org/x/mod v0.17.0 // indirect
77+
golang.org/x/net v0.25.0 // indirect
78+
golang.org/x/sync v0.7.0 // indirect
79+
golang.org/x/sys v0.20.0 // indirect
80+
golang.org/x/text v0.15.0 // indirect
81+
golang.org/x/time v0.5.0 // indirect
82+
golang.org/x/tools v0.21.0 // indirect
83+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240509183442-62759503f434 // indirect
84+
google.golang.org/grpc v1.63.2 // indirect
85+
google.golang.org/protobuf v1.34.1 // indirect
8786
gopkg.in/yaml.v3 v3.0.1 // indirect
8887
)

0 commit comments

Comments
 (0)