Skip to content

Commit 041d331

Browse files
authored
fix(deps): Update module github.com/cloudquery/codegen to v0.4.0 (#2455)
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/codegen](https://redirect.github.com/cloudquery/codegen) | `v0.3.37` → `v0.4.0` | ![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fcloudquery%2fcodegen/v0.4.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fcloudquery%2fcodegen/v0.3.37/v0.4.0?slim=true) | --- ### Release Notes <details> <summary>cloudquery/codegen (github.com/cloudquery/codegen)</summary> ### [`v0.4.0`](https://redirect.github.com/cloudquery/codegen/releases/tag/v0.4.0) [Compare Source](https://redirect.github.com/cloudquery/codegen/compare/v0.3.37...v0.4.0) ##### Features - Implement type flattener ([#&#8203;419](https://redirect.github.com/cloudquery/codegen/issues/419)) ([de8ece6](https://redirect.github.com/cloudquery/codegen/commit/de8ece6a86ddac23e5160de5fa4aada418a6ebe9)) ##### Bug Fixes - **deps:** Update dependency go to v1.26.0 ([#&#8203;414](https://redirect.github.com/cloudquery/codegen/issues/414)) ([94c3c5f](https://redirect.github.com/cloudquery/codegen/commit/94c3c5fec117f5ce8863edd656f3427dfc60bd44)) - **deps:** Update golang.org/x/exp digest to [`3dfff04`](https://redirect.github.com/cloudquery/codegen/commit/3dfff04) ([#&#8203;412](https://redirect.github.com/cloudquery/codegen/issues/412)) ([28e9880](https://redirect.github.com/cloudquery/codegen/commit/28e9880ffdaaec3fbb1c8619c28c3a1541f39d49)) - **deps:** Update module github.com/cloudquery/plugin-sdk/v4 to v4.94.3 ([#&#8203;410](https://redirect.github.com/cloudquery/codegen/issues/410)) ([144ce71](https://redirect.github.com/cloudquery/codegen/commit/144ce71e8c164466d6e46d330f141eb09fcef7f2)) - **deps:** Update module github.com/cloudquery/plugin-sdk/v4 to v4.94.4 ([#&#8203;415](https://redirect.github.com/cloudquery/codegen/issues/415)) ([35c026e](https://redirect.github.com/cloudquery/codegen/commit/35c026ed45cbe9e3d3c35e51d898e3645108b7a2)) - **deps:** Update module github.com/cloudquery/plugin-sdk/v4 to v4.94.5 ([#&#8203;416](https://redirect.github.com/cloudquery/codegen/issues/416)) ([4586c6d](https://redirect.github.com/cloudquery/codegen/commit/4586c6d6a452d968e9cf3c59a7116921ba265caf)) - **deps:** Update module github.com/cloudquery/plugin-sdk/v4 to v4.94.6 ([#&#8203;417](https://redirect.github.com/cloudquery/codegen/issues/417)) ([16902da](https://redirect.github.com/cloudquery/codegen/commit/16902da9f646b2db88f21f65234a3af67944a295)) - **deps:** Update module github.com/cloudquery/plugin-sdk/v4 to v4.94.7 ([#&#8203;418](https://redirect.github.com/cloudquery/codegen/issues/418)) ([71d532b](https://redirect.github.com/cloudquery/codegen/commit/71d532b6f411e23d36d6012dd74db2606c2d48a5)) </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 1f94119 commit 041d331

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

examples/simple_plugin/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/cloudquery/plugin-sdk/examples/simple_plugin
22

3-
go 1.25.5
3+
go 1.26.1
44

55
require (
66
github.com/apache/arrow-go/v18 v18.5.2
@@ -33,7 +33,7 @@ require (
3333
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
3434
github.com/cespare/xxhash/v2 v2.3.0 // indirect
3535
github.com/cloudquery/cloudquery-api-go v1.14.8 // indirect
36-
github.com/cloudquery/codegen v0.3.37 // indirect
36+
github.com/cloudquery/codegen v0.4.0 // indirect
3737
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

examples/simple_plugin/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UF
5656
github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
5757
github.com/cloudquery/cloudquery-api-go v1.14.8 h1:iwXOQoVINrDQ69gtqBjWPSIdg7KcyLMq//FJkLxzUV4=
5858
github.com/cloudquery/cloudquery-api-go v1.14.8/go.mod h1:d+I8E+z3vmvTvCNXZ5YNhxV9InY/i1siXa0vCYq+ABk=
59-
github.com/cloudquery/codegen v0.3.37 h1:OZbMPT3LVMPsDOPOD2b5Q7njii7PrnxNa47vfPuRK2A=
60-
github.com/cloudquery/codegen v0.3.37/go.mod h1:HUb5XjUyyNrcXYBq/seBjnOkO3/TidTRxiL7B8xYW2M=
59+
github.com/cloudquery/codegen v0.4.0 h1:5UWbcNd9uBVYerMeeWdYC+8IZO9l/TEMqLQUD0JYOhs=
60+
github.com/cloudquery/codegen v0.4.0/go.mod h1:DHNcqoez8nVHVPHiOnbcDR/tXdAtLJngaCu2AOFlz90=
6161
github.com/cloudquery/plugin-pb-go v1.27.11 h1:xsU9VJJa16l6HnXeTVtNEN9WS4sRSm2+3pttvQIRsX0=
6262
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=

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/cloudquery/plugin-sdk/v4
22

3-
go 1.25.5
3+
go 1.26.1
44

55
require (
66
github.com/apache/arrow-go/v18 v18.5.2
@@ -10,7 +10,7 @@ require (
1010
github.com/aws/aws-sdk-go-v2/service/marketplacemetering v1.36.2
1111
github.com/bradleyjkemp/cupaloy/v2 v2.8.0
1212
github.com/cloudquery/cloudquery-api-go v1.14.8
13-
github.com/cloudquery/codegen v0.3.37
13+
github.com/cloudquery/codegen v0.4.0
1414
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

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ github.com/cespare/xxhash/v2 v2.3.0 h1:UL815xU9SqsFlibzuggzjXhog7bL6oX9BbNZnL2UF
5656
github.com/cespare/xxhash/v2 v2.3.0/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
5757
github.com/cloudquery/cloudquery-api-go v1.14.8 h1:iwXOQoVINrDQ69gtqBjWPSIdg7KcyLMq//FJkLxzUV4=
5858
github.com/cloudquery/cloudquery-api-go v1.14.8/go.mod h1:d+I8E+z3vmvTvCNXZ5YNhxV9InY/i1siXa0vCYq+ABk=
59-
github.com/cloudquery/codegen v0.3.37 h1:OZbMPT3LVMPsDOPOD2b5Q7njii7PrnxNa47vfPuRK2A=
60-
github.com/cloudquery/codegen v0.3.37/go.mod h1:HUb5XjUyyNrcXYBq/seBjnOkO3/TidTRxiL7B8xYW2M=
59+
github.com/cloudquery/codegen v0.4.0 h1:5UWbcNd9uBVYerMeeWdYC+8IZO9l/TEMqLQUD0JYOhs=
60+
github.com/cloudquery/codegen v0.4.0/go.mod h1:DHNcqoez8nVHVPHiOnbcDR/tXdAtLJngaCu2AOFlz90=
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=
6363
github.com/cloudquery/plugin-pb-go v1.27.11 h1:xsU9VJJa16l6HnXeTVtNEN9WS4sRSm2+3pttvQIRsX0=

0 commit comments

Comments
 (0)