Skip to content

Releases: pappasam/jedi-language-server

Version 0.25.7

02 Mar 17:44
Compare
Choose a tag to compare

Fixed

  • Stop putting keyword-only arguments in snippets. That turned out to be more annoying than helpful.

Version 0.25.6

01 Mar 07:14
Compare
Choose a tag to compare

Fixed

  • Fixes renaming edge case where lines at end get KeyError.

Version 0.25.5

01 Mar 06:42
Compare
Choose a tag to compare

Fixed

  • Fix renaming a variable that appears at the start of a line
  • Fix handling of completionItem/resolve when not all fields are present on the CompletionItem.
  • Fix handling of eager resolution of completions.

Version 0.25.4

22 Feb 07:19
Compare
Choose a tag to compare

Fixed

  • SymbolKind and CompletionItemKind now support Property. Support is still a bit finicky, and I'm not sure whether it's Jedi's issue or an issue with jedi-language-server at this time.
  • jedi_utils.line_column now ensures that line length never falls below 0. Resolves #74

Version 0.25.3

14 Feb 23:02
Compare
Choose a tag to compare

changed

  • relax version constraints for docstring-to-markdown to be compatible with all versions below 1.0. author confirms there won't be breaking changes until at least then: #68 (comment)

Version 0.25.2

13 Feb 21:19
Compare
Choose a tag to compare

Fixed

  • Markdown-formatted text that cannot be converted is now surrounded by fences
  • An edge case where markup_kind variable is a string, and not MarkupKind, is properly handled

Version 0.25.1

13 Feb 21:01
Compare
Choose a tag to compare

Fixed

  • Bug where client-supported markupkind wasn't being properly converted to MarkupKind, which caused problems when relying on client-provided defaults.

Version 0.25.0

13 Feb 20:30
Compare
Choose a tag to compare

Added

Version 0.24.0

12 Feb 03:22
Compare
Choose a tag to compare

Added

  • caseInsensitiveCompletion initialization option added. The user can now tell Jedi to only return case sensitive completions by setting this value to false.

Fixed

  • Handle jedi 0.18.0's change from str to pathlib.Path for workspace symbols.

Version 0.23.1

04 Feb 06:13
Compare
Choose a tag to compare

Fixed

  • workspace/didChangeConfiguration option is now defined. It currently does nothing, but this resolves some feedback errors on some language clients. See #58.