-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Switch to upstream positionEncoding
#13484
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
Conversation
crates/rust-analyzer/Cargo.toml
Outdated
@@ -23,7 +23,7 @@ crossbeam-channel = "0.5.5" | |||
dissimilar = "1.0.4" | |||
itertools = "0.10.5" | |||
scip = "0.1.1" | |||
lsp-types = { version = "0.93.1", features = ["proposed"] } | |||
lsp-types = { version = "0.93.2", features = ["proposed"] } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lsp-types = { version = "0.93.2", features = ["proposed"] } | |
lsp-types = { version = "=0.93.2", features = ["proposed"] } |
We might wanna pin our lsp-types version to prevent breakages like these in the future
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was lsp-types
breaking semver in a minor release, but sure, it can't hurt. I just hope we don't end up doing this for every dependency.
Or we could do ..Default::default()
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oh for some reason I thought they were breaking by keeping versions numbers in sync, but thats not the case. Nevermind then, that's just unfortunate i guess
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's fine to pin it, I think it's not the first time something like this happens. But if rather not use default()
so that we know when something new gets added there.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
gluon-lang/lsp-types#248 (comment) so ye, pinning is the right choice for us here
@bors r+ |
@bors ping |
😪 I'm awake I'm awake |
@bors r+ |
☀️ Test successful - checks-actions |
Closes #13481
This drops support for the custom extension, but that's probably fine.
Draft because it's not tested yet.