Skip to content

Commit 1f94119

Browse files
authored
fix(deps): Update module github.com/cloudquery/plugin-pb-go to v1.27.11 (#2453)
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [github.com/cloudquery/plugin-pb-go](https://redirect.github.com/cloudquery/plugin-pb-go) | `v1.27.10` → `v1.27.11` | ![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fcloudquery%2fplugin-pb-go/v1.27.11?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fcloudquery%2fplugin-pb-go/v1.27.10/v1.27.11?slim=true) | --- ### Release Notes <details> <summary>cloudquery/plugin-pb-go (github.com/cloudquery/plugin-pb-go)</summary> ### [`v1.27.11`](https://redirect.github.com/cloudquery/plugin-pb-go/releases/tag/v1.27.11) [Compare Source](https://redirect.github.com/cloudquery/plugin-pb-go/compare/v1.27.10...v1.27.11) ##### Bug Fixes - Prevent panic on non-retryable download errors ([#&#8203;619](https://redirect.github.com/cloudquery/plugin-pb-go/issues/619)) ([04f5add](https://redirect.github.com/cloudquery/plugin-pb-go/commit/04f5addaf15225e44aa0f0cd7bc5ee8c175ff124)) </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://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My42My4wIiwidXBkYXRlZEluVmVyIjoiNDMuNjMuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXV0b21lcmdlIl19-->
1 parent 6e79eeb commit 1f94119

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

examples/simple_plugin/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ require (
3434
github.com/cespare/xxhash/v2 v2.3.0 // indirect
3535
github.com/cloudquery/cloudquery-api-go v1.14.8 // indirect
3636
github.com/cloudquery/codegen v0.3.37 // indirect
37-
github.com/cloudquery/plugin-pb-go v1.27.10 // indirect
37+
github.com/cloudquery/plugin-pb-go v1.27.11 // indirect
3838
github.com/cloudquery/plugin-sdk/v2 v2.7.0 // indirect
3939
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
4040
github.com/getsentry/sentry-go v0.42.0 // indirect

examples/simple_plugin/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ github.com/cloudquery/cloudquery-api-go v1.14.8 h1:iwXOQoVINrDQ69gtqBjWPSIdg7Kcy
5858
github.com/cloudquery/cloudquery-api-go v1.14.8/go.mod h1:d+I8E+z3vmvTvCNXZ5YNhxV9InY/i1siXa0vCYq+ABk=
5959
github.com/cloudquery/codegen v0.3.37 h1:OZbMPT3LVMPsDOPOD2b5Q7njii7PrnxNa47vfPuRK2A=
6060
github.com/cloudquery/codegen v0.3.37/go.mod h1:HUb5XjUyyNrcXYBq/seBjnOkO3/TidTRxiL7B8xYW2M=
61-
github.com/cloudquery/plugin-pb-go v1.27.10 h1:DqohoYcyqBevmXEWtWMq9hRa+5rD5VyX//WG8T3s41E=
62-
github.com/cloudquery/plugin-pb-go v1.27.10/go.mod h1:n+oMDVa/o69N8oLPafwWZWPKDgFr2Kek6eYsN9wHTL8=
61+
github.com/cloudquery/plugin-pb-go v1.27.11 h1:xsU9VJJa16l6HnXeTVtNEN9WS4sRSm2+3pttvQIRsX0=
62+
github.com/cloudquery/plugin-pb-go v1.27.11/go.mod h1:n+oMDVa/o69N8oLPafwWZWPKDgFr2Kek6eYsN9wHTL8=
6363
github.com/cloudquery/plugin-sdk/v2 v2.7.0 h1:hRXsdEiaOxJtsn/wZMFQC9/jPfU1MeMK3KF+gPGqm7U=
6464
github.com/cloudquery/plugin-sdk/v2 v2.7.0/go.mod h1:pAX6ojIW99b/Vg4CkhnsGkRIzNaVEceYMR+Bdit73ug=
6565
github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc=

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ require (
1111
github.com/bradleyjkemp/cupaloy/v2 v2.8.0
1212
github.com/cloudquery/cloudquery-api-go v1.14.8
1313
github.com/cloudquery/codegen v0.3.37
14-
github.com/cloudquery/plugin-pb-go v1.27.10
14+
github.com/cloudquery/plugin-pb-go v1.27.11
1515
github.com/cloudquery/plugin-sdk/v2 v2.7.0
1616
github.com/getsentry/sentry-go v0.42.0
1717
github.com/goccy/go-json v0.10.6

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ github.com/cloudquery/codegen v0.3.37 h1:OZbMPT3LVMPsDOPOD2b5Q7njii7PrnxNa47vfPu
6060
github.com/cloudquery/codegen v0.3.37/go.mod h1:HUb5XjUyyNrcXYBq/seBjnOkO3/TidTRxiL7B8xYW2M=
6161
github.com/cloudquery/jsonschema v0.0.0-20240220124159-92878faa2a66 h1:OZLPSIBYEfvkAUeOeM8CwTgVQy5zhayI99ishCrsFV0=
6262
github.com/cloudquery/jsonschema v0.0.0-20240220124159-92878faa2a66/go.mod h1:0SoZ/U7yJlNOR+fWsBSeTvTbGXB6DK01tzJ7m2Xfg34=
63-
github.com/cloudquery/plugin-pb-go v1.27.10 h1:DqohoYcyqBevmXEWtWMq9hRa+5rD5VyX//WG8T3s41E=
64-
github.com/cloudquery/plugin-pb-go v1.27.10/go.mod h1:n+oMDVa/o69N8oLPafwWZWPKDgFr2Kek6eYsN9wHTL8=
63+
github.com/cloudquery/plugin-pb-go v1.27.11 h1:xsU9VJJa16l6HnXeTVtNEN9WS4sRSm2+3pttvQIRsX0=
64+
github.com/cloudquery/plugin-pb-go v1.27.11/go.mod h1:n+oMDVa/o69N8oLPafwWZWPKDgFr2Kek6eYsN9wHTL8=
6565
github.com/cloudquery/plugin-sdk/v2 v2.7.0 h1:hRXsdEiaOxJtsn/wZMFQC9/jPfU1MeMK3KF+gPGqm7U=
6666
github.com/cloudquery/plugin-sdk/v2 v2.7.0/go.mod h1:pAX6ojIW99b/Vg4CkhnsGkRIzNaVEceYMR+Bdit73ug=
6767
github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc=

0 commit comments

Comments
 (0)