Skip to content

Releases: JohnnyMorganz/luau-lsp

1.19.0

26 Apr 19:55

Choose a tag to compare

[1.19.0] - 2023-04-26

Deprecated

  • Deprecated config luau-lsp.completion.suggestImports: use luau-lsp.completion.imports.enabled instead

Added

  • Added setting luau-lsp.index.enabled which will index the whole workspace into memory. If disabled, only limited support for Find All References and rename is possible
  • Added support for finding all references of both local and exported types. For exported types, luau-lsp.index.enabled must be enabled for full support.
  • Added support for renaming table properties across files. If luau-lsp.index.enabled is disabled, this feature is disabled for correctness reasons.
  • Added support for renaming types (both local and exported). If luau-lsp.index.enabled is disabled, this exported types renaming is disabled for correctness reasons.
  • Added more settings to auto-importing:
    • luau-lsp.completion.imports.enabled: replaces luau-lsp.completion.suggestImports (default: false)
    • luau-lsp.completion.imports.suggestServices: whether GetService imports are included in suggestions (default: true)
    • luau-lsp.completion.imports.suggestRequires: whether auto-requires are included in suggestions (default: true)
    • luau-lsp.completion.imports.requireStyle: the style of require format (default: "auto")
    • luau-lsp.completion.imports.separateGroupsWithLine: whether an empty line should be added in between services and requires (default: false)

Changed

  • Sync to upstream Luau 0.573
  • Improved find all references system for tables. We can now track all references to table and its properties across files. This requires luau-lsp.index.enabled to be enabled for full support.

Fixed

  • Fixed pull diagnostics result not following spec
  • Fixed errors when file has shebang #! present at top of file
  • Fixed string require autocompletion failing when autocomplete triggered on an incomplete string, e.g. require("Constants/Te|").
    Originally, nothing would autocomplete. Now, everything inside of the Constants folder will still autocomplete as usual (filtered for "Te").

1.18.1

23 Mar 15:21

Choose a tag to compare

[1.18.1] - 2023-03-23

Fixed

  • Fixed server crash when auto require imports is enabled and there is a type-asserted require present in the file (require(location) :: any)
  • Fixed additional automatic service imports when completing an automatic require import being placed before a hot comment (such as --!strict)
  • Fixed automatic require import being placed incorrectly we also autocomplete a service. This can be shown when there is a multiline comment, and the service is imported above that comment, but the require gets imported inside of the comment incorrectly.

1.18.0

20 Mar 12:03

Choose a tag to compare

[1.18.0] - 2023-03-20

Added

  • Added support for changing Color3 colors using the color picker
  • Added support for automatic require imports (currently only for Roblox mode). If you start typing the name of a module in your code, you can autocomplete the require statement automatically. This feature is enabled by setting luau-lsp.completion.suggestImports. (Thanks @HawDevelopment!)
Code_v0GdNGjzUX.mp4

Changed

  • Sync to upstream Luau 0.568.
    In particular, this provide improvements to control flow analysis refinements. This allows the type checker to recognise type
    options that are unreachable after a conditional/unconditional code block. e.g.:
local function x(x: string?)
    if not x then return end

    -- x is 'string' here
end

To enable this feature, the FFlag LuauTinyControlFlowAnalysis must currently be enabled.

  • The language server will only be enabled on "file" and "untitled" schemes. This means it will be disabled in diff mode
    and live share. This is because we cannot yet provide sufficient information in these contexts.

1.17.1

04 Mar 16:26

Choose a tag to compare

[1.17.1] - 2023-03-04

Changed

  • Sync to upstream Luau 0.566

Fixed

  • Don't autocomplete another set of parentheses on a function call if they already exist
  • Fix .luaurc in current working directory not taken into account when calling luau-lsp analyze
  • Fixed slowdown of autocompletion when at a position where a type is explicitly expected (e.g., autocompleting a return expression when a return type is specified). Currently requires LuauAutocompleteSkipNormalization to be enabled

1.17.0

12 Feb 14:08

Choose a tag to compare

[1.17.0] - 2023-02-12

Added

  • Added two code actions: Sort requires and Sort services (services only enabled if luau-lsp.types.roblox == true).
    These actions will sort their respective groups alphabetically based on a variable name set.
    You can also set these actions to automatically run on save by configuring:
"editor.codeActionsOnSave": {
    "source.organizeImports": true
}
Code_OlQbWEgpWo.mp4

Equivalent functionality has also been added to StyLua

Changed

  • Sync to upstream Luau 0.563

  • Prioritised common services and Instance properties/methods in autocomplete so that they show up first. This is especially useful for services like ReplicatedStorage, and methods like :FindFirstChild

Before After
image image
image image

Fixed

  • Further fixes to document symbols failing due to malformed ranges

1.16.4

10 Feb 00:28

Choose a tag to compare

[1.16.4] - 2023-02-10

Fixed

  • Fixed document symbols crashing due to internal malformed data

1.16.3

09 Feb 15:15

Choose a tag to compare

[1.16.3] - 2023-02-09

Fixed

  • Changed internal representation of documents to reduce the likelihood of Request Failed for "No managed text document"

Please do let me know if this has improved (or worsened) the issue!

1.16.2

01 Feb 13:50

Choose a tag to compare

[1.16.2] - 2023-02-01

Fixed

  • Fixed document symbol crash on incomplete functions
  • Fixed --base-luaurc not registering for an LSP server
  • Fixed crashing on invalid FFlags configuration - the VSCode client will now validate the flags

1.16.1

30 Jan 12:51

Choose a tag to compare

[1.16.1] - 2023-01-30

Fixed

  • Fixed error in document symbols not conforming to specification - selectionRange will now be fully enclosed by range

1.16.0

29 Jan 17:57

Choose a tag to compare

[1.16.0] - 2023-01-29

Added

  • Support documentation comments attached to a table and table types, e.g. on DATA in the following:
--- Doc comment
local DATA = {
    ...
}

--- Doc comment
type Contents = {
	...
}
  • Include documentation comments on functions and tables in autocompletion
  • Added configuration option luau-lsp.require.mode to configure how string requires are resolved. It can either be relativeToWorkspaceRoot (default) or relativeToFile
  • Added luau-lsp.types.documentationFiles to support adding extra documentation symbols to the database. These are used to support definition files, and should be in the same format as shown here
  • Added luau-lsp.diagnostics.strictDatamodelTypes (default: false) which configures whether we use expressive DataModel types to power diagnostics.
    When off, game / script / workspace (and all their members) are typed as any, which helps to prevent false positives, but may lead to false negatives.
  • Added CLI option --base-luaurc=PATH for both LSP and Analyze mode to provide a path to a .luaurc file which is used as the default configuration
  • Added support for Go To Definition / Type Definition on imported type references module.Type (gated behind FFlag SupportTypeAliasGoToDeclaration)

Changed

  • Sync to upstream Luau 0.560
  • Class symbols with no documentation present in the docs file will no longer show anything on hover/autocomplete (i.e. won't show @luau/global/require)
  • Instance.new() now accepts variables which are of type string without erroring. It will instead error when Instance.new is called with a string literal which is an unknown class name
  • In the CLI, luau-lsp lsp now supports passing multiple --docs= parameters
  • The CLI will now error when an unknown option is passed to it
  • Diagnostics will now be emitted on .luaurc files with parse errors

Fixed

  • Fixed unknown require errors occurring in multi-root workspaces when in a folder which isn't the first one
  • Fixed diagnostics not clearing for files which were deleted unconventionally (i.e., outside of VSCode using File Explorer, or external commands such as git stash)