You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This release makes a very big refactor that allowed all the dependencies of each different adapter to be moved to different submodules.
This means two things:
Now if you want to use kpgx you would need to:
go get github.com/vingarcia/ksql
and go get github.com/vingarcia/ksql/adapters/kpgx
This is more work for the dev, but this also has one advantage (the second thing):
Now when importing ksql you only depend on what you use. This means that we can add support to several more databases without worrying that we would bloat the go.sum of our users with several dependencies they are not even using.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
This release makes a very big refactor that allowed all the dependencies of each different adapter to be moved to different submodules.
This means two things:
Now if you want to use
kpgx
you would need to:go get github.com/vingarcia/ksql
go get github.com/vingarcia/ksql/adapters/kpgx
This is more work for the dev, but this also has one advantage (the second thing):
Now when importing
ksql
you only depend on what you use. This means that we can add support to several more databases without worrying that we would bloat thego.sum
of our users with several dependencies they are not even using.This discussion was created from the release Refactor dependencies as submodules.
Beta Was this translation helpful? Give feedback.
All reactions