Skip to content

Commit d9b64c7

Browse files
authored
fix(deps): Update module github.com/cloudquery/plugin-sdk/v4 to v4.30.0 (#151)
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.29.1` -> `v4.30.0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>cloudquery/plugin-sdk (github.com/cloudquery/plugin-sdk/v4)</summary> ### [`v4.30.0`](https://togithub.com/cloudquery/plugin-sdk/releases/tag/v4.30.0) [Compare Source](https://togithub.com/cloudquery/plugin-sdk/compare/v4.29.1...v4.30.0) ##### Features - Enhance test suite ([#&#8203;1523](https://togithub.com/cloudquery/plugin-sdk/issues/1523)) ([668a297](https://togithub.com/cloudquery/plugin-sdk/commit/668a29752331c54208bad5e4e5ddfeb90c15f52f)) - Implement `GetSpecSchema` call ([#&#8203;1521](https://togithub.com/cloudquery/plugin-sdk/issues/1521)) ([87bea95](https://togithub.com/cloudquery/plugin-sdk/commit/87bea95367b6e70335e788c410dd982c70c04dd4)) - Support offline licensing for all plugins from a specific team ([#&#8203;1517](https://togithub.com/cloudquery/plugin-sdk/issues/1517)) ([d3755dd](https://togithub.com/cloudquery/plugin-sdk/commit/d3755dd40df0a0addb52ba30e4a0793848416d6d)) ##### Bug Fixes - **deps:** Update module github.com/cloudquery/cloudquery-api-go to v1.7.3 ([#&#8203;1516](https://togithub.com/cloudquery/plugin-sdk/issues/1516)) ([54baf21](https://togithub.com/cloudquery/plugin-sdk/commit/54baf21490d3843931ffb5b39f8caf79cb069db0)) - **deps:** Update module github.com/cloudquery/cloudquery-api-go to v1.7.4 ([#&#8203;1524](https://togithub.com/cloudquery/plugin-sdk/issues/1524)) ([e1a3f77](https://togithub.com/cloudquery/plugin-sdk/commit/e1a3f779776fe87606a975bebda3a19f1ddd0a3e)) - **deps:** Update module github.com/cloudquery/cloudquery-api-go to v1.7.5 ([#&#8203;1525](https://togithub.com/cloudquery/plugin-sdk/issues/1525)) ([c1fae76](https://togithub.com/cloudquery/plugin-sdk/commit/c1fae76f2694e07964fa1562d08c93641b46a940)) - **deps:** Update module github.com/cloudquery/plugin-pb-go to v1.16.8 ([#&#8203;1514](https://togithub.com/cloudquery/plugin-sdk/issues/1514)) ([5b43629](https://togithub.com/cloudquery/plugin-sdk/commit/5b43629100296bb6a5e687b4a0fb15491a1b0e35)) - **deps:** Update module github.com/cloudquery/plugin-pb-go to v1.17.0 ([#&#8203;1519](https://togithub.com/cloudquery/plugin-sdk/issues/1519)) ([209b081](https://togithub.com/cloudquery/plugin-sdk/commit/209b081e11ac25e36a496afd1b054a3f8a45a290)) - **deps:** Update module github.com/cloudquery/plugin-pb-go to v1.17.1 ([#&#8203;1520](https://togithub.com/cloudquery/plugin-sdk/issues/1520)) ([b858608](https://togithub.com/cloudquery/plugin-sdk/commit/b858608a89f2d509287b3ffd76dd6ad0b63c3c0f)) - **deps:** Update module github.com/cloudquery/plugin-pb-go to v1.17.2 ([#&#8203;1526](https://togithub.com/cloudquery/plugin-sdk/issues/1526)) ([84a22a9](https://togithub.com/cloudquery/plugin-sdk/commit/84a22a97dba72365900b3e29becb87919449404f)) </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:eyJjcmVhdGVkSW5WZXIiOiIzNy4xOTMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE5My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
1 parent a099ca9 commit d9b64c7

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

go.mod

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
module github.com/cloudquery/codegen
22

3-
go 1.21.4
3+
go 1.21.5
4+
5+
toolchain go1.22.0
46

57
require (
68
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/appconfiguration/armappconfiguration/v2 v2.1.0
79
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/resources/armmanagedapplications v1.2.0
810
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/solutions/armmanagedapplications/v2 v2.1.0
911
github.com/bradleyjkemp/cupaloy/v2 v2.8.0
10-
github.com/cloudquery/plugin-sdk/v4 v4.29.1
12+
github.com/cloudquery/plugin-sdk/v4 v4.30.0
1113
github.com/google/go-cmp v0.6.0
1214
github.com/invopop/jsonschema v0.12.0
1315
github.com/jpillora/longestcommon v0.0.0-20161227235612-adb9d91ee629

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ github.com/cloudquery/cloudquery-api-go v1.7.5 h1:rd5OQx7qRQASEzU9c8Wopzau7GMVCG
6161
github.com/cloudquery/cloudquery-api-go v1.7.5/go.mod h1:03fojQg0UpdgqXZ9tzZ5gF5CPad/F0sok66bsX6u4RA=
6262
github.com/cloudquery/jsonschema v0.0.0-20240202134451-d771afde32fb h1:/l8fbvLOCNlgkHp8VUKTTL+Tk9gs5y/K3Yx/bRfReNk=
6363
github.com/cloudquery/jsonschema v0.0.0-20240202134451-d771afde32fb/go.mod h1:0SoZ/U7yJlNOR+fWsBSeTvTbGXB6DK01tzJ7m2Xfg34=
64-
github.com/cloudquery/plugin-sdk/v4 v4.29.1 h1:vBDrg/e6Zv5lR5DsKETBbVcjS0Q70lRTeUqCM5TzVrk=
65-
github.com/cloudquery/plugin-sdk/v4 v4.29.1/go.mod h1:pM5EnbRX7apbgg1e5JC9TZkcJ22eyf4b4Uo1ekDb/GQ=
64+
github.com/cloudquery/plugin-sdk/v4 v4.30.0 h1:ArgDxga+s5U32afSNzF5v+s7jeYski11Y8uV0240OEw=
65+
github.com/cloudquery/plugin-sdk/v4 v4.30.0/go.mod h1:Jqd/uO6UdM5/7+JXBXT1onJHoK3Tql9wz9fIADwRG3k=
6666
github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc=
6767
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
6868
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=

0 commit comments

Comments
 (0)