Update to pygls 2#400
Merged
Merged
Conversation
Contributor
Author
|
Tests fixed to match changes from python/mypy#19115 |
brettcannon
approved these changes
Feb 11, 2026
rchiodo
previously approved these changes
Feb 11, 2026
rchiodo
approved these changes
Feb 12, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request updates the LSP server implementation in
bundled/tool/lsp_server.pyto be compatible withpyglsversion 2 and refactors diagnostic and messaging APIs to use the new methods and types. The changes modernize the codebase, improve clarity, and ensure compatibility with the latestpyglsrelease.Migration to pygls v2 and API refactoring:
requirements.into requirepygls>=2, ensuring compatibility with the latest version.server.LanguageServer,workspace.Document, and associated methods with theirpyglsv2 equivalents (LanguageServer,TextDocument, etc.).text_document_publish_diagnosticsandlsp.PublishDiagnosticsParamsinstead of the deprecatedpublish_diagnostics. [1] [2] [3]window_log_messageandwindow_show_messagewith the new parameter objects, replacing the oldshow_message_logandshow_messagemethods.Type and method updates for workspace/document handling:
TextDocumentinstead ofworkspace.Document, updating all relevant helper and utility functions. [1] [2] [3] [4] [5]These updates are essential for maintaining compatibility and leveraging improvements in
pyglsv2.