Skip to content

Commit 64f01c0

Browse files
fix(deps): Update module github.com/cloudquery/codegen to v0.4.1 (#2468)
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.4.0` → `v0.4.1` | ![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fcloudquery%2fcodegen/v0.4.1?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fcloudquery%2fcodegen/v0.4.0/v0.4.1?slim=true) | --- ### Release Notes <details> <summary>cloudquery/codegen (github.com/cloudquery/codegen)</summary> ### [`v0.4.1`](https://redirect.github.com/cloudquery/codegen/releases/tag/v0.4.1) [Compare Source](https://redirect.github.com/cloudquery/codegen/compare/v0.4.0...v0.4.1) ##### Bug Fixes - **deps:** Update github.com/cloudquery/jsonschema digest to [`8dfb902`](https://redirect.github.com/cloudquery/codegen/commit/8dfb902) ([#&#8203;426](https://redirect.github.com/cloudquery/codegen/issues/426)) ([562507e](https://redirect.github.com/cloudquery/codegen/commit/562507eac27848b20e8fe0ae26d37aab6f934c02)) - **deps:** Update module github.com/cloudquery/plugin-sdk/v4 to v4.95.0 ([#&#8203;422](https://redirect.github.com/cloudquery/codegen/issues/422)) ([5b312fb](https://redirect.github.com/cloudquery/codegen/commit/5b312fb7761b76599a63e5ca9d69ceeba1febc54)) - Suport cross package types when Flattening ([#&#8203;427](https://redirect.github.com/cloudquery/codegen/issues/427)) ([b79c286](https://redirect.github.com/cloudquery/codegen/commit/b79c286b8cbc28dd6e72dcaf1372221f51e72051)) </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 88b8ab8 commit 64f01c0

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
@@ -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.9 // indirect
36-
github.com/cloudquery/codegen v0.4.0 // indirect
36+
github.com/cloudquery/codegen v0.4.1 // indirect
3737
github.com/cloudquery/plugin-pb-go v1.27.13 // 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.9 h1:Za6Kr5LhIRx0iQExH4hAZnPEuFTUe3MOjip/gMQqCjI=
5858
github.com/cloudquery/cloudquery-api-go v1.14.9/go.mod h1:vcEX3PUxr492xuvg0vwV7wGFxBuRUOV6IeDhyyPtA4E=
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=
59+
github.com/cloudquery/codegen v0.4.1 h1:c9D18N925tUvnDeGHIl3JWKj37TyII9daHufkf8hU+Y=
60+
github.com/cloudquery/codegen v0.4.1/go.mod h1:QWIOD6R1aCa+YM+th+9Qt9lZw+ztdJR9JDEMLWyazwM=
6161
github.com/cloudquery/plugin-pb-go v1.27.13 h1:douXw1Q7UjAVQ8XZzjH9BbwMJ8QduMUd+v7IBj2O5mo=
6262
github.com/cloudquery/plugin-pb-go v1.27.13/go.mod h1:8I779whR/67LBaJBZWWRmM4yi83WWGmdv+5ZjlZVVNs=
6363
github.com/cloudquery/plugin-sdk/v2 v2.7.0 h1:hRXsdEiaOxJtsn/wZMFQC9/jPfU1MeMK3KF+gPGqm7U=

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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.9
13-
github.com/cloudquery/codegen v0.4.0
13+
github.com/cloudquery/codegen v0.4.1
1414
github.com/cloudquery/plugin-pb-go v1.27.13
1515
github.com/cloudquery/plugin-sdk/v2 v2.7.0
1616
github.com/getsentry/sentry-go v0.44.1

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.9 h1:Za6Kr5LhIRx0iQExH4hAZnPEuFTUe3MOjip/gMQqCjI=
5858
github.com/cloudquery/cloudquery-api-go v1.14.9/go.mod h1:vcEX3PUxr492xuvg0vwV7wGFxBuRUOV6IeDhyyPtA4E=
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=
59+
github.com/cloudquery/codegen v0.4.1 h1:c9D18N925tUvnDeGHIl3JWKj37TyII9daHufkf8hU+Y=
60+
github.com/cloudquery/codegen v0.4.1/go.mod h1:QWIOD6R1aCa+YM+th+9Qt9lZw+ztdJR9JDEMLWyazwM=
6161
github.com/cloudquery/jsonschema v0.0.0-20260327151118-8dfb902740f6 h1:5KvFfR2HlsFFSUpnjrfp0D3jv69sYV3VlxEfmBd4EL0=
6262
github.com/cloudquery/jsonschema v0.0.0-20260327151118-8dfb902740f6/go.mod h1:0SoZ/U7yJlNOR+fWsBSeTvTbGXB6DK01tzJ7m2Xfg34=
6363
github.com/cloudquery/plugin-pb-go v1.27.13 h1:douXw1Q7UjAVQ8XZzjH9BbwMJ8QduMUd+v7IBj2O5mo=

0 commit comments

Comments
 (0)