You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+29Lines changed: 29 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,34 @@
1
1
# History of changes
2
2
3
+
## Version 1.14.0 (2025/12/06)
4
+
5
+
### New features
6
+
* Add `pylsp.signature.include_docstring` to hide docstring in signatures.
7
+
* Add support for Pylint 4.
8
+
* Fix support for Python 3.14.
9
+
10
+
### Pull Requests Merged
11
+
12
+
*[PR 690](https://github.com/python-lsp/python-lsp-server/pull/690) - Fix starting the server for Python 3.14 and run tests with that version, by [@ccordoba12](https://github.com/ccordoba12)
13
+
*[PR 689](https://github.com/python-lsp/python-lsp-server/pull/689) - Adjust test based on Jedi version, by [@aeliton](https://github.com/aeliton)
14
+
*[PR 687](https://github.com/python-lsp/python-lsp-server/pull/687) - Bump allowed pylint to less than 4.1, by [@tiltingpenguin](https://github.com/tiltingpenguin)
15
+
*[PR 686](https://github.com/python-lsp/python-lsp-server/pull/686) - Add option to hide docstring in signatures, by [@tomekwojcik](https://github.com/tomekwojcik)
16
+
17
+
In this release 4 pull requests were closed.
18
+
19
+
----
20
+
21
+
## Version 1.13.2 (2025/11/19)
22
+
23
+
### Pull Requests Merged
24
+
25
+
*[PR 683](https://github.com/python-lsp/python-lsp-server/pull/683) - Prevent showing cmd on Windows when running flake8, by [@dalthviz](https://github.com/dalthviz)
26
+
*[PR 669](https://github.com/python-lsp/python-lsp-server/pull/669) - Fix license entries in `pyproject.toml` due to pep 639, by [@ccordoba12](https://github.com/ccordoba12)
Copy file name to clipboardExpand all lines: CONFIGURATION.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -77,6 +77,7 @@ This server can be configured using the `workspace/didChangeConfiguration` metho
77
77
|`pylsp.rope.extensionModules`|`string`| Builtin and c-extension modules that are allowed to be imported and inspected by rope. |`null`|
78
78
|`pylsp.rope.ropeFolder`|`array` of unique `string` items | The name of the folder in which rope stores project configurations and data. Pass `null` for not using such a folder at all. |`null`|
79
79
|`pylsp.signature.formatter`|`string` (one of: `'black'`, `'ruff'`, `None`) | Formatter to use for reformatting signatures in docstrings. |`"black"`|
80
-
|`pylsp.signature.line_length`|`number`| Maximum line length in signatures. |`88`|
80
+
|`pylsp.signature.include_docstring`|`boolean`| Include signature docstring. |`true`|
81
+
|`pylsp.signature.line_length`|`integer`| Maximum line length in signatures. |`88`|
81
82
82
83
This documentation was generated from `pylsp/config/schema.json`. Please do not edit this file directly.
0 commit comments