Skip to content

Commit eaec331

Browse files
authored
fix(deps): Update module github.com/cloudquery/plugin-sdk/v4 to v4.2.0 (#12256)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/cloudquery/plugin-sdk/v4](https://togithub.com/cloudquery/plugin-sdk) | require | minor | `v4.1.1` -> `v4.2.0` | --- ### ⚠ Dependency Lookup Warnings ⚠ Warnings were logged while processing this repo. Please check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>cloudquery/plugin-sdk (github.com/cloudquery/plugin-sdk/v4)</summary> ### [`v4.2.0`](https://togithub.com/cloudquery/plugin-sdk/releases/tag/v4.2.0) [Compare Source](https://togithub.com/cloudquery/plugin-sdk/compare/v4.1.1...v4.2.0) ##### Features - Add initial version of open-telemetry ([#&#8203;1097](https://togithub.com/cloudquery/plugin-sdk/issues/1097)) ([09a880c](https://togithub.com/cloudquery/plugin-sdk/commit/09a880c3ad420b991f0bc21b3cb9fba3226a6d91)) ##### Bug Fixes - Differentiate between errgroup context and global context being cance… ([#&#8203;1082](https://togithub.com/cloudquery/plugin-sdk/issues/1082)) ([0532f88](https://togithub.com/cloudquery/plugin-sdk/commit/0532f881067c142fd7799037990963b3ceee61fa)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi44LjEyIiwidXBkYXRlZEluVmVyIjoiMzYuOC4xMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
1 parent 68f1f1c commit eaec331

File tree

99 files changed

+3849
-283
lines changed

Some content is hidden

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

99 files changed

+3849
-283
lines changed

plugins/destination/azblob/go.mod

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.0.0
88
github.com/apache/arrow/go/v13 v13.0.0-20230630125530-5a06b2ec2a8e
99
github.com/cloudquery/filetypes/v4 v4.0.1
10-
github.com/cloudquery/plugin-sdk/v4 v4.1.1
10+
github.com/cloudquery/plugin-sdk/v4 v4.2.0
1111
github.com/google/go-cmp v0.5.9
1212
github.com/google/uuid v1.3.0
1313
github.com/rs/zerolog v1.29.1
@@ -24,19 +24,23 @@ require (
2424
github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c // indirect
2525
github.com/andybalholm/brotli v1.0.5 // indirect
2626
github.com/apache/thrift v0.18.1 // indirect
27+
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
2728
github.com/cloudquery/plugin-pb-go v1.7.1 // indirect
2829
github.com/cloudquery/plugin-sdk/v2 v2.7.0 // indirect
2930
github.com/davecgh/go-spew v1.1.1 // indirect
3031
github.com/dnaeon/go-vcr v1.2.0 // indirect
3132
github.com/getsentry/sentry-go v0.20.0 // indirect
3233
github.com/ghodss/yaml v1.0.0 // indirect
34+
github.com/go-logr/logr v1.2.4 // indirect
35+
github.com/go-logr/stdr v1.2.2 // indirect
3336
github.com/goccy/go-json v0.10.2 // indirect
3437
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect
3538
github.com/golang/protobuf v1.5.3 // indirect
3639
github.com/golang/snappy v0.0.4 // indirect
3740
github.com/google/flatbuffers v23.5.9+incompatible // indirect
3841
github.com/grpc-ecosystem/go-grpc-middleware/providers/zerolog/v2 v2.0.0-rc.3 // indirect
3942
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.0.0-rc.3 // indirect
43+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0 // indirect
4044
github.com/inconshreveable/mousetrap v1.1.0 // indirect
4145
github.com/klauspost/asmfmt v1.3.2 // indirect
4246
github.com/klauspost/compress v1.16.6 // indirect
@@ -54,6 +58,14 @@ require (
5458
github.com/spf13/pflag v1.0.5 // indirect
5559
github.com/thoas/go-funk v0.9.3 // indirect
5660
github.com/zeebo/xxh3 v1.0.2 // indirect
61+
go.opentelemetry.io/otel v1.16.0 // indirect
62+
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.16.0 // indirect
63+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.16.0 // indirect
64+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.16.0 // indirect
65+
go.opentelemetry.io/otel/metric v1.16.0 // indirect
66+
go.opentelemetry.io/otel/sdk v1.16.0 // indirect
67+
go.opentelemetry.io/otel/trace v1.16.0 // indirect
68+
go.opentelemetry.io/proto/otlp v0.19.0 // indirect
5769
golang.org/x/crypto v0.7.0 // indirect
5870
golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df // indirect
5971
golang.org/x/mod v0.11.0 // indirect
@@ -63,6 +75,8 @@ require (
6375
golang.org/x/text v0.9.0 // indirect
6476
golang.org/x/tools v0.9.1 // indirect
6577
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
78+
google.golang.org/genproto v0.0.0-20230525234025-438c736192d0 // indirect
79+
google.golang.org/genproto/googleapis/api v0.0.0-20230525234020-1aefcd67740a // indirect
6680
google.golang.org/genproto/googleapis/rpc v0.0.0-20230629202037-9506855d4529 // indirect
6781
google.golang.org/grpc v1.55.0 // indirect
6882
google.golang.org/protobuf v1.30.0 // indirect

plugins/destination/azblob/go.sum

Lines changed: 64 additions & 2 deletions
Large diffs are not rendered by default.

plugins/destination/bigquery/go.mod

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.20
55
require (
66
cloud.google.com/go/bigquery v1.50.0
77
github.com/apache/arrow/go/v13 v13.0.0-20230630125530-5a06b2ec2a8e
8-
github.com/cloudquery/plugin-sdk/v4 v4.1.1
8+
github.com/cloudquery/plugin-sdk/v4 v4.2.0
99
github.com/goccy/go-json v0.10.2
1010
github.com/rs/zerolog v1.29.1
1111
golang.org/x/sync v0.1.0
@@ -16,11 +16,15 @@ require (
1616
github.com/andybalholm/brotli v1.0.5 // indirect
1717
github.com/apache/arrow/go/v11 v11.0.0 // indirect
1818
github.com/apache/thrift v0.16.0 // indirect
19+
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
1920
github.com/cloudquery/plugin-pb-go v1.7.1 // indirect
2021
github.com/cloudquery/plugin-sdk/v2 v2.7.0 // indirect
2122
github.com/davecgh/go-spew v1.1.1 // indirect
23+
github.com/go-logr/logr v1.2.4 // indirect
24+
github.com/go-logr/stdr v1.2.2 // indirect
2225
github.com/golang/snappy v0.0.4 // indirect
2326
github.com/google/flatbuffers v23.1.21+incompatible // indirect
27+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0 // indirect
2428
github.com/klauspost/asmfmt v1.3.2 // indirect
2529
github.com/klauspost/compress v1.16.6 // indirect
2630
github.com/klauspost/cpuid/v2 v2.2.5 // indirect
@@ -30,6 +34,14 @@ require (
3034
github.com/pmezard/go-difflib v1.0.0 // indirect
3135
github.com/stretchr/testify v1.8.4 // indirect
3236
github.com/zeebo/xxh3 v1.0.2 // indirect
37+
go.opentelemetry.io/otel v1.16.0 // indirect
38+
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.16.0 // indirect
39+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.16.0 // indirect
40+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.16.0 // indirect
41+
go.opentelemetry.io/otel/metric v1.16.0 // indirect
42+
go.opentelemetry.io/otel/sdk v1.16.0 // indirect
43+
go.opentelemetry.io/otel/trace v1.16.0 // indirect
44+
go.opentelemetry.io/proto/otlp v0.19.0 // indirect
3345
golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df // indirect
3446
golang.org/x/mod v0.11.0 // indirect
3547
golang.org/x/tools v0.6.0 // indirect
@@ -64,7 +76,7 @@ require (
6476
go.opencensus.io v0.24.0 // indirect
6577
golang.org/x/net v0.9.0 // indirect; indirect // indirect
6678
golang.org/x/oauth2 v0.6.0 // indirect
67-
golang.org/x/sys v0.7.0 // indirect
79+
golang.org/x/sys v0.8.0 // indirect
6880
golang.org/x/text v0.9.0 // indirect
6981
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
7082
google.golang.org/appengine v1.6.7 // indirect

0 commit comments

Comments
 (0)