|
1 | 1 | #History of changes
|
2 | 2 |
|
| 3 | +##Version 1.13.0 (2025/07/07) |
| 4 | + |
| 5 | +###New features |
| 6 | +* Format signatures in docstrings. |
| 7 | +* Add support for type definition. |
| 8 | +* Send websocket payload using a queue. |
| 9 | +* Fix getting symbols with inline comments that include the`import` word. |
| 10 | +* Drop support for Python 3.8 |
| 11 | + |
| 12 | +###Issues Closed |
| 13 | + |
| 14 | +*[Issue 640](https://github.com/python-lsp/python-lsp-server/issues/640) - Should we add`py.typed` marker? ([PR 641](https://github.com/python-lsp/python-lsp-server/pull/641) by[@krassowski](https://github.com/krassowski)) |
| 15 | +*[Issue 630](https://github.com/python-lsp/python-lsp-server/issues/630) - Formatting of signatures in docstrings |
| 16 | +*[Issue 627](https://github.com/python-lsp/python-lsp-server/issues/627) - Do not call str.splitlines() twice in the same function |
| 17 | +*[Issue 97](https://github.com/python-lsp/python-lsp-server/issues/97) - Failed to run lsp-goto-type-definition and lsp-goto-implementation. |
| 18 | + |
| 19 | +In this release 4 issues were closed. |
| 20 | + |
| 21 | +###Pull Requests Merged |
| 22 | + |
| 23 | +*[PR 656](https://github.com/python-lsp/python-lsp-server/pull/656) - Add space between punctuation and next sentence, by[@spenserblack](https://github.com/spenserblack) |
| 24 | +*[PR 650](https://github.com/python-lsp/python-lsp-server/pull/650) - Drop Python 3.8, add Python 3.11 to CI and run`pyupgrade`, by[@krassowski](https://github.com/krassowski) |
| 25 | +*[PR 646](https://github.com/python-lsp/python-lsp-server/pull/646) - Enforce`setuptools` 69 or newer to ensure`py.typed` marker gets included, by[@krassowski](https://github.com/krassowski) |
| 26 | +*[PR 645](https://github.com/python-lsp/python-lsp-server/pull/645) - Add support for type definition, by[@Hoblovski](https://github.com/Hoblovski) |
| 27 | +*[PR 641](https://github.com/python-lsp/python-lsp-server/pull/641) - Add`py.typed` marker to`pylsp` imports to be analysed with`mypy`, by[@krassowski](https://github.com/krassowski) ([640](https://github.com/python-lsp/python-lsp-server/issues/640)) |
| 28 | +*[PR 639](https://github.com/python-lsp/python-lsp-server/pull/639) - Fix inline comments that include text with`import`, by[@jsbautista](https://github.com/jsbautista) |
| 29 | +*[PR 633](https://github.com/python-lsp/python-lsp-server/pull/633) - Send websocket payload using a queue, by[@Raekkeri](https://github.com/Raekkeri) |
| 30 | +*[PR 631](https://github.com/python-lsp/python-lsp-server/pull/631) - Allow to format signatures in docstrings, by[@krassowski](https://github.com/krassowski) |
| 31 | +*[PR 628](https://github.com/python-lsp/python-lsp-server/pull/628) - Do not call`str.splitlines()` twice in the same function., by[@fukanchik](https://github.com/fukanchik) |
| 32 | + |
| 33 | +In this release 9 pull requests were closed. |
| 34 | + |
| 35 | +---- |
| 36 | + |
3 | 37 | ##Version 1.12.2 (2025/02/07)
|
4 | 38 |
|
5 | 39 | ###Pull Requests Merged
|
|