-
Notifications
You must be signed in to change notification settings - Fork 545
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Modular dependencies architecture #778
Comments
Yeah, this is a bit unfortunate. I opened an issue to track splitting this project into 2 modules (library and cli): But I'm also waiting to see how the new Go toolchain will evolve which may alleviate these sort of issues |
Thanks for the info) How do you plan to use toolchain for such things? If i'm right toolchain is giving you opportunity to select exact go tooling version, but problems are from unused dependencies. Is there any proposal from the go team that might help? Do I need to move my questions to #664 ? |
This will be automatically handled by the Go toolchain, so in my ideal world I could keep the goose project pinned to a minimum version that lags 2 versions behind the current release. E.g., at the time of this writing the current version is The current challenge is that the latest version of CilckHouse driver (as an example) has pinned to https://github.com/ClickHouse/clickhouse-go/blob/v2.26.0/go.mod#L3 And in order to pull in this dependency, we'd need to bump the minimum supported version from This is the dilemma I currently have. In a few months we'll bump the dependencies, so this is a temporary problem. Would even consider doing it sooner. |
Hey guys, I have an issue with dependencies conflict in a project that having old clickhouse library as its own dependency.
Is there any roadmap plans where dependencies of a goose are connectable packages so if I use goose for PG migrations I can use any Clickhouse driver without an issues? I understand that it's not so easy problem, but may be for next major update or something?
The text was updated successfully, but these errors were encountered: