Changelog¶
v0.4.0 - 2026-03-23¶
Features¶
The server command used with the
lsp-devtools clientcommand can now be configured at runtime.Server process lifecycle information and errors are now also logged to the
Serverpanel. (#234)
Fixes¶
Misc¶
Bump textual to
>=8.1.0(#233)
v0.3.0 - 2026-03-02¶
Features¶
Add Windows support (#125)
Enhancements¶
The
lsp-devtools recordcommand now accepts multiple format strings (e.g.-f {message.method} -f {message.result}). They will be tried in the order given, with messages using the format first string that applies cleanly. (#122)The
lsp-devtools recordcommand now accepts an--keep-unformattedoption, which will preserve messages in the log that could not be formatted using one of the provided format strings. They will instead be formatted using the default format string for the command. (#123)The format string syntax has been changed to be more inline with how regular Python format strings work e.g.
before
{.params|json}now{message.params:json}
There is now an option that controls if the
lsp-devtools recordcommand should exit (--on-disconnect exit) when it loses the connection to the agent, or if it should continue running (--on-disconnect continue), which is still the default behaviour(#211)
Misc¶
Update pygls to v2 Update textual to v6.x
Add support for Python 3.13 & 3.14. Drop support for Python 3.9 (#203)
v0.2.4 - 2024-11-23¶
Fixes¶
The
lsp-devtools agentshould now suppressasyncio.CancelledErrorexceptions allowing the agent to process to terminate gracefully (#191)
Misc¶
v0.2.3 - 2024-05-22¶
Enhancements¶
The
lsp-devtools agentnow forwards the server’sstderrchannel (#165)
Fixes¶
v0.2.2 - 2024-01-29¶
Enhancements¶
Fixes¶
The
lsp-devtools recordcommand will now produce valid JSON when using the--to-fileoption without an explicitly provided format string. (#130)The
lsp-devtools agentnow watches for the when the server process exits and closes itself down also. (#132)Commands like
lsp-devtools recordshould now exit cleanly when hittingCtrl-C(#133)
v0.2.1 - 2023-11-13¶
Enhancements¶
If the agent is unable to connect to a server app immediately, it will now retry indefinitely until it succeeds or the language server exits (#77)
It is now possible to select completion items in the
lsp-devtools client(#108)Commands like
lsp-devtools recordandlsp-devtools inspectwill no longer exit/stop capturing messages after the first LSP session exits (#110)
v0.2.0 - 2023-10-06¶
Features¶
Experimental Add proof of concept
lsp-devtools clientcommand that builds on textual’sTextAreawidget to offer an interactive language server client. (#83)
Fixes¶
The
lsp-devtools agentcommand no longer fails to exit once an LSP session closes. (#17)lsp-devtools recordno longer emits aResourceWarning(#28)As a consequence of the new architecture, commands like
lsp-devtools recordno longer miss the start of an LSP session (#29)lsp-devtools agentno longer emitsUnable to send data, no available transport!messages (#38)
Misc¶
v0.1.1 - 2023-01-14¶
Fixes¶
Fix PyPi packaging (#33)
v0.1.0 - 2023-01-10¶
Features¶
Updated
recordcommand.It is now capable of live streaming messages sent between a client and server to stdout, plain text files or a SQLite database.
It also offers a number of filters for selecting the messages you wish to record, as well as a (WIP!) format string syntax for controlling how messages are formatted. (#26)
Add
tuicommand.A proof of concept devtools TUI implemented in textual, that live updates with the LSP messages sent between client and server!
Requires the server be wrapped in an
agent. (#27)
Misc¶
Migrated to
v1.0(#26)
v0.0.3 - 2022-07-17¶
Misc¶
Remove upper bound on required
pyglsversion (#14)
v0.0.2 - 2022-05-06¶
Fixes¶
Fix
mypyerrors. (#7)
v0.0.1 - 2022-04-29¶
Misc¶
Initial release (#6)