Skip to content

Releases: pappasam/jedi-language-server

Version 0.34.8

26 Oct 06:39
b41a22e
Compare
Choose a tag to compare

Fixed

  • Fixed bug where classes nested inside functions cause exceptions in textDocument/documentSymbol. This release avoids the crash and includes info about classes and functions nested inside functions. See this issue

Version 0.34.7

25 Oct 06:23
Compare
Choose a tag to compare

Added

  • InitializationOption completion.ignorePatterns, an option for users to conditionally ignore certain completion patterns. A generalized solution to this issue.

Version 0.34.6

30 Sep 01:27
Compare
Choose a tag to compare

Fixed

  • Completion at beginning of line now works.
  • Per comment here, may resolve issues associated with Windows line endings.
  • jedi_line_column now returns a tuple instead of a dict. Since this function is often used, it makes sense to choose a more-performant data type.

Version 0.34.5

27 Sep 03:49
5edbb2a
Compare
Choose a tag to compare

Fixed

  • InitializationOption jediSettings.debug now writes to stderr, not stdout. stdout broke the language server.

Version 0.34.4

26 Sep 14:39
578cf4d
Compare
Choose a tag to compare

Added

  • InitializationOption jediSettings.debug that lets user configure jedi's debugging messages to print to stdout.

Version 0.34.3

22 Aug 18:26
Compare
Choose a tag to compare

Fixed

  • Jedi Names may have no module_path, so lsp_location now returns an Optional[Location]. Thanks @dimbleby !

Version 0.34.2

22 Aug 04:33
Compare
Choose a tag to compare

Fixed

  • Empty docstrings no longer result in unnecessary newlines for signatureHelp (and potentially other requests). Resolves #158.

Version 0.34.1

09 Jul 17:08
Compare
Choose a tag to compare

Fixed

  • From Jedi's perspective, operations at the beginning of a line now assume they are at position 1. This ensures that hover operations work correctly at the beginning of the line.

Version 0.34.0

08 Jul 00:12
Compare
Choose a tag to compare

Changed

  • Diagnostics are now cleared on document close.

Version 0.33.1

28 Jun 23:08
13297ba
Compare
Choose a tag to compare

Added

  • Support for serving content over web sockets.