Skip to content

Commit 7cd3a14

Browse files
Danielius1922Daniel Adam
authored andcommitted
Upgrade dependencies
Submodule: github.com/google/googletest 7002406181eb300da880701035a25157a5099abb Direct: github.com/pion/dtls/v2 v2.2.8-0.20240501061905-2c36d63320a0 github.com/plgd-dev/device/v2 v2.5.1-0.20240502072920-6021006ea86b github.com/plgd-dev/go-coap/v3 v3.3.4 github.com/plgd-dev/hub/v2 v2.18.1-0.20240502083717-331c4dbb67d7 google.golang.org/grpc v1.63.2 google.golang.org/protobuf v1.34.0 Indirect: github.com/bufbuild/protocompile v0.13.0 github.com/go-co-op/gocron/v2 v2.3.0 github.com/jhump/protoreflect v1.16.0 github.com/klauspost/compress v1.17.8 go.mongodb.org/mongo-driver v1.15.0 go.opentelemetry.io/proto/otlp v1.2.0 golang.org/x/crypto v0.22.0 golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f golang.org/x/mod v0.17.0 golang.org/x/net v0.24.0 golang.org/x/oauth2 v0.19.0 golang.org/x/sync v0.7.0 golang.org/x/sys v0.19.0 golang.org/x/term v0.19.0 golang.org/x/tools v0.20.0 google.golang.org/api v0.172.0 google.golang.org/genproto/googleapis/api v0.0.0-20240429193739-8cf5692501f6 google.golang.org/genproto/googleapis/rpc v0.0.0-20240429193739-8cf5692501f6
1 parent 2108e16 commit 7cd3a14

File tree

4 files changed

+91
-90
lines changed

4 files changed

+91
-90
lines changed

.golangci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ linters-settings:
33
default-signifies-exhaustive: true
44
gocyclo:
55
min-complexity: 15
6-
gomoddirectives:
7-
replace-allow-list:
8-
- github.com/pion/dtls/v2
96
govet:
107
enable:
118
- nilness
@@ -51,7 +48,7 @@ linters:
5148
- gofumpt # Gofumpt checks whether code was gofumpt-ed.
5249
- goheader # Checks is file header matches to pattern
5350
- goimports # Goimports does everything that gofmt does. Additionally it checks unused imports
54-
- gomoddirectives # Manage the use of 'replace', 'retract', and 'excludes' directives in go.mod.
51+
# - gomoddirectives # Manage the use of 'replace', 'retract', and 'excludes' directives in go.mod.
5552
- gomodguard # Allow and block list linter for direct Go module dependencies. This is different from depguard where there are different block types for example version constraints and module recommendations.
5653
- goprintffuncname # Checks that printf-like functions are named with `f` at the end
5754
- gosec # Inspects source code for security problems
@@ -137,6 +134,9 @@ issues:
137134
exclude-use-default: false
138135
exclude-dirs:
139136
- dependency
137+
exclude-files:
138+
- ".*\\.pb\\.go$"
139+
- ".*\\.pb\\.gw\\.go$"
140140
exclude-rules:
141141
# Allow complex tests, better to be self contained
142142
- path: _test\.go

dependency/googleapis

Submodule googleapis updated 543 files

go.mod

Lines changed: 40 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,18 @@ require (
1717
github.com/jellydator/ttlcache/v3 v3.2.0
1818
github.com/jessevdk/go-flags v1.5.0
1919
github.com/lestrrat-go/jwx v1.2.29
20-
github.com/pion/dtls/v2 v2.2.8-0.20240327211025-8244c4570c01
21-
github.com/plgd-dev/device/v2 v2.4.5-0.20240403073803-48efa094e7b0
22-
github.com/plgd-dev/go-coap/v3 v3.3.4-0.20240403064319-6ed2ef2c4664
23-
github.com/plgd-dev/hub/v2 v2.17.4-0.20240403125943-fbad2f31e1ed
20+
github.com/pion/dtls/v2 v2.2.8-0.20240501061905-2c36d63320a0
21+
github.com/plgd-dev/device/v2 v2.5.1-0.20240502072920-6021006ea86b
22+
github.com/plgd-dev/go-coap/v3 v3.3.4
23+
github.com/plgd-dev/hub/v2 v2.18.1-0.20240502083717-331c4dbb67d7
2424
github.com/plgd-dev/kit/v2 v2.0.0-20211006190727-057b33161b90
2525
github.com/stretchr/testify v1.9.0
2626
go.opentelemetry.io/otel/trace v1.24.0
2727
go.uber.org/atomic v1.11.0
2828
go.uber.org/zap v1.27.0
29-
google.golang.org/api v0.172.0
30-
google.golang.org/grpc v1.63.0
29+
google.golang.org/grpc v1.63.2
3130
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.3.0
32-
google.golang.org/protobuf v1.33.0
31+
google.golang.org/protobuf v1.34.0
3332
gopkg.in/yaml.v3 v3.0.1
3433
)
3534

@@ -96,7 +95,7 @@ require (
9695
github.com/awslabs/amazon-ecr-credential-helper/ecr-login v0.0.0-20220517224237-e6f29200ae04 // indirect
9796
github.com/aymanbagabas/go-osc52/v2 v2.0.1 // indirect
9897
github.com/blakesmith/ar v0.0.0-20190502131153-809d4375e1fb // indirect
99-
github.com/bufbuild/protocompile v0.9.0 // indirect
98+
github.com/bufbuild/protocompile v0.13.0 // indirect
10099
github.com/caarlos0/ctrlc v1.2.0 // indirect
101100
github.com/caarlos0/env/v9 v9.0.0 // indirect
102101
github.com/caarlos0/go-reddit/v3 v3.0.1 // indirect
@@ -133,7 +132,7 @@ require (
133132
github.com/felixge/httpsnoop v1.0.4 // indirect
134133
github.com/fsnotify/fsnotify v1.7.0 // indirect
135134
github.com/fxamacker/cbor/v2 v2.6.0 // indirect
136-
github.com/go-co-op/gocron/v2 v2.2.9 // indirect
135+
github.com/go-co-op/gocron/v2 v2.3.0 // indirect
137136
github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect
138137
github.com/go-git/go-billy/v5 v5.4.1 // indirect
139138
github.com/go-git/go-git/v5 v5.7.0 // indirect
@@ -186,15 +185,15 @@ require (
186185
github.com/inconshreveable/mousetrap v1.1.0 // indirect
187186
github.com/invopop/jsonschema v0.7.0 // indirect
188187
github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect
189-
github.com/jhump/protoreflect v1.15.6 // indirect
188+
github.com/jhump/protoreflect v1.16.0 // indirect
190189
github.com/jmespath/go-jmespath v0.4.0 // indirect
191190
github.com/jonboulle/clockwork v0.4.0 // indirect
192191
github.com/josharian/intern v1.0.0 // indirect
193192
github.com/json-iterator/go v1.1.12 // indirect
194193
github.com/jtacoma/uritemplates v1.0.0 // indirect
195194
github.com/karrick/tparse/v2 v2.8.2 // indirect
196195
github.com/kevinburke/ssh_config v1.2.0 // indirect
197-
github.com/klauspost/compress v1.17.7 // indirect
196+
github.com/klauspost/compress v1.17.8 // indirect
198197
github.com/klauspost/pgzip v1.2.6 // indirect
199198
github.com/kylelemons/godebug v1.1.0 // indirect
200199
github.com/lestrrat-go/backoff/v2 v2.0.8 // indirect
@@ -280,7 +279,7 @@ require (
280279
github.com/xdg-go/stringprep v1.0.4 // indirect
281280
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a // indirect
282281
gitlab.com/digitalxero/go-conventional-commit v1.0.7 // indirect
283-
go.mongodb.org/mongo-driver v1.14.0 // indirect
282+
go.mongodb.org/mongo-driver v1.15.0 // indirect
284283
go.opencensus.io v0.24.0 // indirect
285284
go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo v0.49.0 // indirect
286285
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 // indirect
@@ -290,26 +289,26 @@ require (
290289
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.24.0 // indirect
291290
go.opentelemetry.io/otel/metric v1.24.0 // indirect
292291
go.opentelemetry.io/otel/sdk v1.24.0 // indirect
293-
go.opentelemetry.io/proto/otlp v1.1.0 // indirect
292+
go.opentelemetry.io/proto/otlp v1.2.0 // indirect
294293
go.uber.org/automaxprocs v1.5.3 // indirect
295294
go.uber.org/multierr v1.11.0 // indirect
296295
gocloud.dev v0.33.0 // indirect
297-
golang.org/x/crypto v0.21.0 // indirect
298-
golang.org/x/exp v0.0.0-20240325151524-a685a6edb6d8 // indirect
299-
golang.org/x/mod v0.16.0 // indirect
300-
golang.org/x/net v0.23.0 // indirect
301-
golang.org/x/oauth2 v0.18.0 // indirect
302-
golang.org/x/sync v0.6.0 // indirect
303-
golang.org/x/sys v0.18.0 // indirect
304-
golang.org/x/term v0.18.0 // indirect
296+
golang.org/x/crypto v0.22.0 // indirect
297+
golang.org/x/exp v0.0.0-20240416160154-fe59bbe5cc7f // indirect
298+
golang.org/x/mod v0.17.0 // indirect
299+
golang.org/x/net v0.24.0 // indirect
300+
golang.org/x/oauth2 v0.19.0 // indirect
301+
golang.org/x/sync v0.7.0 // indirect
302+
golang.org/x/sys v0.19.0 // indirect
303+
golang.org/x/term v0.19.0 // indirect
305304
golang.org/x/text v0.14.0 // indirect
306305
golang.org/x/time v0.5.0 // indirect
307-
golang.org/x/tools v0.19.0 // indirect
306+
golang.org/x/tools v0.20.0 // indirect
308307
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
309-
google.golang.org/appengine v1.6.8 // indirect
308+
google.golang.org/api v0.172.0 // indirect
310309
google.golang.org/genproto v0.0.0-20240227224415-6ceb2ff114de // indirect
311-
google.golang.org/genproto/googleapis/api v0.0.0-20240401170217-c3f982113cda // indirect
312-
google.golang.org/genproto/googleapis/rpc v0.0.0-20240401170217-c3f982113cda // indirect
310+
google.golang.org/genproto/googleapis/api v0.0.0-20240429193739-8cf5692501f6 // indirect
311+
google.golang.org/genproto/googleapis/rpc v0.0.0-20240429193739-8cf5692501f6 // indirect
313312
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
314313
gopkg.in/inf.v0 v0.9.1 // indirect
315314
gopkg.in/ini.v1 v1.67.0 // indirect
@@ -321,6 +320,19 @@ require (
321320
sigs.k8s.io/yaml v1.3.0 // indirect
322321
)
323322

324-
// note: github.com/pion/dtls/v2/pkg/net package is not yet available in release branches,
325-
// so we force to the use of the pinned master branch
326-
replace github.com/pion/dtls/v2 => github.com/pion/dtls/v2 v2.2.8-0.20240201071732-2597464081c8
323+
replace (
324+
// note: github.com/pion/dtls/v2/pkg/net package is not yet available in release branches,
325+
// so we force to the use of the pinned master branch
326+
github.com/pion/dtls/v2 => github.com/pion/dtls/v2 v2.2.8-0.20240501061905-2c36d63320a0
327+
// later versions require go 1.22
328+
github.com/youmark/pkcs8 => github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a
329+
// later versions require go 1.21
330+
go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo => go.opentelemetry.io/contrib/instrumentation/go.mongodb.org/mongo-driver/mongo/otelmongo v0.49.0
331+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc => go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0
332+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp => go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0
333+
go.opentelemetry.io/otel => go.opentelemetry.io/otel v1.24.0
334+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc => go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.24.0
335+
go.opentelemetry.io/otel/metric => go.opentelemetry.io/otel/metric v1.24.0
336+
go.opentelemetry.io/otel/sdk => go.opentelemetry.io/otel/sdk v1.24.0
337+
go.opentelemetry.io/otel/trace => go.opentelemetry.io/otel/trace v1.24.0
338+
)

0 commit comments

Comments
 (0)