Closed candiduslynx closed 1 year ago
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:
gomajor get github.com/cloudquery/plugin-sdk/v2
replace
github.com/apache/arrow/go/v12
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
Closing per SDK v4 already released
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:
gomajor get github.com/cloudquery/plugin-sdk/v2
replace
forgithub.com/apache/arrow/go/v12
(seegithub.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)