sourcegraph / go-langserver

Go language server to add Go support to editors and other tools that use the Language Server Protocol (LSP)
https://sourcegraph.com
MIT License
1.17k stars 89 forks source link

pkg/lsp: Move to external repository #325

Closed keegancsmith closed 5 years ago

keegancsmith commented 5 years ago

We use these types in multiple repositories, which introduces versioning issues. Currently we version this repository like you would a command, increasing the major versions without respect to semver constraints on the libraries it exports. With go modules this is frustrating since we need to update the import paths every time we do major version bump. So we have moved the lsp structs into another repository.

To keep backwards compatibility we have added type aliases to forward the old types to the new types.