Skip to content
This repository was archived by the owner on Jan 8, 2022. It is now read-only.

Releases: natebosch/dart_lsp

0.1.7

20 Jan 19:35
Compare
Choose a tag to compare
  • Add textDocument/documentHighlights.
  • Bug Fix: Calling textDocument/references on non-identifiers won't freeze up
    all operations for that document.
  • Add a 500ms time for operations that lock per-file.

0.1.6

20 Jan 19:34
Compare
Choose a tag to compare
  • Chunk writes to stdout.

0.1.5+2

20 Jan 19:34
Compare
Choose a tag to compare
  • Tolerate keys explicitly set to null instead of omitted.

0.1.5+1

20 Jan 19:33
Compare
Choose a tag to compare
  • Bug Fix: Remove usage of new Function type syntax so to restore compatibility
    with the stable SDK.

This will be the last release compatible with the 1.x Dart SDK

0.1.5

20 Jan 19:33
Compare
Choose a tag to compare
  • Only treat pubspec.yaml and BUILD files as indications of a package root.
  • Only send empty diagnostics for a file if it is clearing previous diagnostics.

0.1.4

20 Jan 19:32
Compare
Choose a tag to compare
  • Stop adding rootUri as an analysis root. When there are nested directories
    that 'look like' a package this can be very large (like with the SDK repo) and
    given the other tweaks to how didOpen analysis roots are handled this
    shouldn't be as useful anymore.

0.1.3

01 Jan 19:24
Compare
Choose a tag to compare
  • Add fixes to available code actions.
  • Add support for textDocument/rename.
  • Run requests for the same file serially rather than allowing them to
    interleave. Fixes some cases where bad overlays can stick around.
  • Add 'Organize imports' to every code actions list.
  • Never offer "Convert into block documentation comment"
  • Add dart/getServerPort extension method.
  • Strip trailing comma from completions since there is no cursor moving support.

0.1.2

01 Jan 19:24
Compare
Choose a tag to compare
  • Only add rootUri as an analysis root when it or a parent seems to be a
    package directory.
  • Add support for code actions.

0.1.1

25 Nov 19:48
Compare
Choose a tag to compare
  • Bug Fix: Restore analyzer wire log.
  • Set the client rootUri as an analysis root. Resolves some cases where
    opening a file in a subdirectory can fail to find symbols from directories
    higher up.
  • Bug Fix: Set priority files by path rather than URI.
  • Add ability to pass arguments to the analysis server.

0.1.0

25 Nov 19:48
Compare
Choose a tag to compare
  • Add support for TextDocumentSyncKind.Incremental.
  • Only send changed diagnostics.