Hello!
We've recently updated plugin-sdk to v2 (includes migration to Apache Arrow for the destination side).
Currently, no major updates to the source side were made.
Here's an easy step-by-step workflow that will allow you to migrate the code easily & efficiently:
- Install gomajor
gomajor get github.com/cloudquery/plugin-sdk/v2
- add
replace for github.com/apache/arrow/go/v12 (see github.com/cloudquery/plugin-sdk/v2 go.mod)
go mod tidy && go get -t -d ./... && go mod tidy && go mod vendor
make gen lint test (if the appropriate targets exist)