Skip to content

Commit

Permalink
fix(deps): Update module github.com/cloudquery/plugin-sdk/v4 to v4.30…
Browse files Browse the repository at this point in the history
….0 (#440)

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-->
  • Loading branch information
cq-bot authored Feb 19, 2024
1 parent e965614 commit d6719c0
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions csv/write_read_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func TestWriteRead(t *testing.T) {
MaxRows: 2,
StableTime: time.Date(2021, 1, 2, 0, 0, 0, 0, time.UTC),
}
tg := schema.NewTestDataGenerator()
tg := schema.NewTestDataGenerator(0)
record := tg.Generate(table, opts)

cl, err := NewClient(tc.options...)
Expand Down Expand Up @@ -93,7 +93,7 @@ func BenchmarkWrite(b *testing.B) {
SyncTime: syncTime,
MaxRows: 1000,
}
tg := schema.NewTestDataGenerator()
tg := schema.NewTestDataGenerator(0)
record := tg.Generate(table, opts)

cl, err := NewClient()
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require (
github.com/apache/arrow/go/v15 v15.0.0-20240115115805-d7bc55542e61
github.com/bradleyjkemp/cupaloy/v2 v2.8.0
github.com/cloudquery/codegen v0.3.12
github.com/cloudquery/plugin-sdk/v4 v4.29.1
github.com/cloudquery/plugin-sdk/v4 v4.30.0
github.com/goccy/go-json v0.10.2
github.com/invopop/jsonschema v0.12.0
github.com/stretchr/testify v1.8.4
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ github.com/cloudquery/codegen v0.3.12 h1:9BaYdwbMJU1HVT/BHI+ykhOhBGeXt8AjpvBiXN1
github.com/cloudquery/codegen v0.3.12/go.mod h1:utqjurr58U8uqcPJe0rZjh06i0Eq9uAPGOmyIjq/1w8=
github.com/cloudquery/jsonschema v0.0.0-20240202134451-d771afde32fb h1:/l8fbvLOCNlgkHp8VUKTTL+Tk9gs5y/K3Yx/bRfReNk=
github.com/cloudquery/jsonschema v0.0.0-20240202134451-d771afde32fb/go.mod h1:0SoZ/U7yJlNOR+fWsBSeTvTbGXB6DK01tzJ7m2Xfg34=
github.com/cloudquery/plugin-sdk/v4 v4.29.1 h1:vBDrg/e6Zv5lR5DsKETBbVcjS0Q70lRTeUqCM5TzVrk=
github.com/cloudquery/plugin-sdk/v4 v4.29.1/go.mod h1:pM5EnbRX7apbgg1e5JC9TZkcJ22eyf4b4Uo1ekDb/GQ=
github.com/cloudquery/plugin-sdk/v4 v4.30.0 h1:ArgDxga+s5U32afSNzF5v+s7jeYski11Y8uV0240OEw=
github.com/cloudquery/plugin-sdk/v4 v4.30.0/go.mod h1:Jqd/uO6UdM5/7+JXBXT1onJHoK3Tql9wz9fIADwRG3k=
github.com/coreos/go-systemd/v22 v22.5.0/go.mod h1:Y58oyj3AT4RCenI/lSvhwexgC+NSVTIJ3seZv2GcEnc=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
Expand Down
4 changes: 2 additions & 2 deletions json/write_read_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func TestWriteRead(t *testing.T) {
MaxRows: 2,
StableTime: time.Date(2021, 1, 2, 0, 0, 0, 0, time.UTC),
}
tg := schema.NewTestDataGenerator()
tg := schema.NewTestDataGenerator(0)
record := tg.Generate(table, opts)

cl, err := NewClient()
Expand Down Expand Up @@ -78,7 +78,7 @@ func BenchmarkWrite(b *testing.B) {
SyncTime: syncTime,
MaxRows: 1000,
}
tg := schema.NewTestDataGenerator()
tg := schema.NewTestDataGenerator(0)
record := tg.Generate(table, opts)

cl, err := NewClient()
Expand Down
6 changes: 3 additions & 3 deletions parquet/write_read_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ func TestWriteRead(t *testing.T) {
SyncTime: syncTime,
MaxRows: rows,
}
tg := schema.NewTestDataGenerator()
tg := schema.NewTestDataGenerator(0)
record := tg.Generate(table, opts)

writer := bufio.NewWriter(&b)
Expand Down Expand Up @@ -73,7 +73,7 @@ func TestWriteReadSliced(t *testing.T) {
SyncTime: syncTime,
MaxRows: rows,
}
tg := schema.NewTestDataGenerator()
tg := schema.NewTestDataGenerator(0)
record := tg.Generate(table, opts)

writer := bufio.NewWriter(&b)
Expand Down Expand Up @@ -120,7 +120,7 @@ func BenchmarkWrite(b *testing.B) {
SyncTime: syncTime,
MaxRows: b.N,
}
tg := schema.NewTestDataGenerator()
tg := schema.NewTestDataGenerator(0)
record := tg.Generate(table, opts)

cl, err := NewClient()
Expand Down

0 comments on commit d6719c0

Please sign in to comment.