diff --git a/CHANGELOG.md b/CHANGELOG.md index 01d82ff6..9cdaf98a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [4.2.11](https://github.com/cloudquery/filetypes/compare/v4.2.10...v4.2.11) (2024-02-19) + + +### Bug Fixes + +* **deps:** Update github.com/cloudquery/jsonschema digest to d771afd ([#435](https://github.com/cloudquery/filetypes/issues/435)) ([3e116ee](https://github.com/cloudquery/filetypes/commit/3e116eefabfd28291f7daa296c42e670525208de)) +* **deps:** Update module github.com/cloudquery/cloudquery-api-go to v1.7.3 ([#437](https://github.com/cloudquery/filetypes/issues/437)) ([95a669f](https://github.com/cloudquery/filetypes/commit/95a669f7143b6bfa02ef3c0cee09e711c0dcedb7)) +* **deps:** Update module github.com/cloudquery/cloudquery-api-go to v1.7.4 ([#438](https://github.com/cloudquery/filetypes/issues/438)) ([05cfa4b](https://github.com/cloudquery/filetypes/commit/05cfa4b9af367b0eaa65d923a4dd915aca85df89)) +* **deps:** Update module github.com/cloudquery/cloudquery-api-go to v1.7.5 ([#439](https://github.com/cloudquery/filetypes/issues/439)) ([e965614](https://github.com/cloudquery/filetypes/commit/e965614cda0d824827988b951b132871a6bb2145)) +* **deps:** Update module github.com/cloudquery/plugin-sdk/v4 to v4.30.0 ([#440](https://github.com/cloudquery/filetypes/issues/440)) ([d6719c0](https://github.com/cloudquery/filetypes/commit/d6719c0a68c418c0eed0ee50854b8b87747d0cb6)) + ## [4.2.10](https://github.com/cloudquery/filetypes/compare/v4.2.9...v4.2.10) (2024-02-01) diff --git a/csv/write_read_test.go b/csv/write_read_test.go index c6557c89..72a273ca 100644 --- a/csv/write_read_test.go +++ b/csv/write_read_test.go @@ -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...) @@ -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() diff --git a/go.mod b/go.mod index 47e0599d..55006d21 100644 --- a/go.mod +++ b/go.mod @@ -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 diff --git a/go.sum b/go.sum index ae1cc245..95c3f9c3 100644 --- a/go.sum +++ b/go.sum @@ -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= diff --git a/json/write_read_test.go b/json/write_read_test.go index 8590fc26..3146916a 100644 --- a/json/write_read_test.go +++ b/json/write_read_test.go @@ -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() @@ -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() diff --git a/parquet/write_read_test.go b/parquet/write_read_test.go index ecb4dcf1..2613cf72 100644 --- a/parquet/write_read_test.go +++ b/parquet/write_read_test.go @@ -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) @@ -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) @@ -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()