Skip to content

Commit c6b0142

Browse files
authored
fix(deps): Update module github.com/cloudquery/plugin-pb-go to v1.17.0 (#16528)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/cloudquery/plugin-pb-go](https://togithub.com/cloudquery/plugin-pb-go) | require | minor | `v1.16.8` -> `v1.17.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>cloudquery/plugin-pb-go (github.com/cloudquery/plugin-pb-go)</summary> ### [`v1.17.0`](https://togithub.com/cloudquery/plugin-pb-go/releases/tag/v1.17.0) [Compare Source](https://togithub.com/cloudquery/plugin-pb-go/compare/v1.16.8...v1.17.0) ##### Features - Allow use of CloudQuery registry with docker plugins ([#&#8203;235](https://togithub.com/cloudquery/plugin-pb-go/issues/235)) ([58ec077](https://togithub.com/cloudquery/plugin-pb-go/commit/58ec0771f976cb64470b3d1dbab058ffebec45d8)) ##### Bug Fixes - **deps:** Update module github.com/cloudquery/cloudquery-api-go to v1.7.3 ([#&#8203;237](https://togithub.com/cloudquery/plugin-pb-go/issues/237)) ([e7a6085](https://togithub.com/cloudquery/plugin-pb-go/commit/e7a6085a508719075954bd370f7182d8d82be894)) </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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzQuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
1 parent 4371ad7 commit c6b0142

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

cli/cmd/install.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ func enrichClientError(clientsList managedplugin.Clients, inferredList []bool, e
118118
return fmt.Errorf("%w. Hint: use `cloudquery switch` to set a team", err)
119119
}
120120

121-
if !strings.Contains(err.Error(), "not found") {
121+
if !strings.Contains(strings.ToLower(err.Error()), "not found") {
122122
return err
123123
}
124124
l := len(clientsList)

cli/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/cenkalti/backoff/v4 v4.2.1
99
github.com/cloudquery/cloudquery-api-go v1.7.3
1010
github.com/cloudquery/codegen v0.3.12
11-
github.com/cloudquery/plugin-pb-go v1.16.8
11+
github.com/cloudquery/plugin-pb-go v1.17.0
1212
github.com/cloudquery/plugin-sdk/v4 v4.29.1
1313
github.com/distribution/reference v0.5.0
1414
github.com/docker/distribution v2.8.3+incompatible

cli/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ github.com/cloudquery/codegen v0.3.12 h1:9BaYdwbMJU1HVT/BHI+ykhOhBGeXt8AjpvBiXN1
6868
github.com/cloudquery/codegen v0.3.12/go.mod h1:utqjurr58U8uqcPJe0rZjh06i0Eq9uAPGOmyIjq/1w8=
6969
github.com/cloudquery/jsonschema v0.0.0-20240202134451-d771afde32fb h1:/l8fbvLOCNlgkHp8VUKTTL+Tk9gs5y/K3Yx/bRfReNk=
7070
github.com/cloudquery/jsonschema v0.0.0-20240202134451-d771afde32fb/go.mod h1:0SoZ/U7yJlNOR+fWsBSeTvTbGXB6DK01tzJ7m2Xfg34=
71-
github.com/cloudquery/plugin-pb-go v1.16.8 h1:VKSii3yuDi7XIVNIkgrqMdd2tAWPX1O/V/HtZp9Y9Ak=
72-
github.com/cloudquery/plugin-pb-go v1.16.8/go.mod h1:taeDcOU7nkiPerOmsUwwYzBoZpQpRNe6nyLWegi67Os=
71+
github.com/cloudquery/plugin-pb-go v1.17.0 h1:zRB3L36MK9eM2iCC6gD7HTB2YRP1JN8f8em7/VbLPw8=
72+
github.com/cloudquery/plugin-pb-go v1.17.0/go.mod h1:mW7K0QCdgAaehGbyWtfewmnTOfsu6QrD1ooGooXK/+M=
7373
github.com/cloudquery/plugin-sdk/v4 v4.29.1 h1:vBDrg/e6Zv5lR5DsKETBbVcjS0Q70lRTeUqCM5TzVrk=
7474
github.com/cloudquery/plugin-sdk/v4 v4.29.1/go.mod h1:pM5EnbRX7apbgg1e5JC9TZkcJ22eyf4b4Uo1ekDb/GQ=
7575
github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc=

scaffold/cmd/templates/source/go.mod.tpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.21.4
44

55
require (
66
github.com/apache/arrow/go/v15 bcaeaa8c2d97
7-
github.com/cloudquery/plugin-pb-go v1.16.8
7+
github.com/cloudquery/plugin-pb-go v1.17.0
88
github.com/cloudquery/plugin-sdk/v4 v4.29.1
99
github.com/rs/zerolog v1.29.0
1010
)

0 commit comments

Comments
 (0)