Skip to content

Commit 3e243d1

Browse files
committed
3.16.0
1 parent eb963dc commit 3e243d1

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

changelog.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,21 @@
22

33
## Unreleased
44
<!-- Add all new changes here. They will be moved under a version at release -->
5+
6+
## 3.16.0
7+
`2025-12-2`
58
* `NEW` Support Lua 5.5
9+
* `CHG` Doc output now contains file paths for `@alias` and `@enum` types
10+
* `CHG` Rename configuration option `Lua.diagnostics.disableScheme` to `Lua.diagnostics.validScheme` and improve its description. Now it enables diagnostics for Lua files that use the specified scheme.
11+
* `FIX` Plugin virtual comment style and behavior issues
612
* `FIX` Incorrect generation of function signatures with tuple-parameters
7-
* `NEW` Doc output now contains file paths for `@alias` and `@enum` types
813
* `FIX` Typos in a few error messages.
914
* `FIX` Incorrect inject-field message for extra table field in exact class
10-
* `CHG` Rename configuration option `Lua.diagnostics.disableScheme` to `Lua.diagnostics.validScheme` and improve its description. Now it enables diagnostics for Lua files that use the specified scheme.
1115
* `FIX` adds the `|lambda|` operator to the `Lua.runtime.nonstandardSymbol` configuration template, which allows the use of that option. Previously, support for it existed in the parser, but we could not actually use the option because it is not recognised in the configuration.
1216
* `FIX` Typed `@field` (eg `---@field [string] boolean`) should not override other defined field [#2171](https://github.com/LuaLS/lua-language-server/issues/2171), [#2711](https://github.com/LuaLS/lua-language-server/issues/2711)
1317
* `FIX` don't return empty hover doc when luals failed to find definition
1418
* `FIX` Prevent stack overflow when attempting to resolve function return values. [#3246](https://github.com/LuaLS/lua-language-server/issues/3246)
19+
* `FIX` Fix type annotations for `string.buffer` module
1520

1621
## 3.15.0
1722
`2025-6-25`

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3461,5 +3461,5 @@
34613461
"sponsor": {
34623462
"url": "https://github.com/LuaLS/lua-language-server/issues/484"
34633463
},
3464-
"version": "3.15.0"
3464+
"version": "3.16.0"
34653465
}

package/build.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
local json = require 'json-beautify'
22

3-
local VERSION = "3.15.0"
3+
local VERSION = "3.16.0"
44

55
local fsu = require 'fs-utility'
66
local package = json.decode(fsu.loadFile(ROOT / 'package.json'))

0 commit comments

Comments
 (0)