Skip to content

Commit e656d27

Browse files
authored
Merge branch 'master' into max-fields-count
2 parents 0956873 + fa2c778 commit e656d27

File tree

12 files changed

+35
-12
lines changed

12 files changed

+35
-12
lines changed

.luarc.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@
2929
"script/?.lua",
3030
"script/?/init.lua",
3131
"test/?.lua",
32-
"test/?/init.lua",
33-
"script/meta/?.lua"
32+
"test/?/init.lua"
3433
],
3534
"pathStrict": true
3635
},

changelog.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,16 @@
22

33
## Unreleased
44
<!-- Add all new changes here. They will be moved under a version at release -->
5-
* `FIX` Plugin virtual comment style and behavior issues
5+
6+
## 3.16.0
7+
`2025-12-2`
68
* `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
712
* `FIX` Incorrect generation of function signatures with tuple-parameters
8-
* `NEW` Doc output now contains file paths for `@alias` and `@enum` types
913
* `FIX` Typos in a few error messages.
1014
* `FIX` Incorrect inject-field message for extra table field in exact class
11-
* `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.
1215
* `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.
1316
* `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)
1417
* `FIX` don't return empty hover doc when luals failed to find definition

lua-language-server-scm-1.rockspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
local git_ref = '3.15.1'
1+
local git_ref = '3.16.0'
22
local modrev = 'scm'
33
local specrev = '1'
44

make.bat

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
git submodule update --init --recursive
2+
cd 3rd\luamake
3+
call compile\build.bat
4+
cd ..\..
5+
IF "%~1"=="" (
6+
call 3rd\luamake\luamake.exe rebuild
7+
) ELSE (
8+
call 3rd\luamake\luamake.exe rebuild --platform %1
9+
)

make.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env bash
2+
3+
git submodule update --init --recursive
4+
pushd 3rd/luamake
5+
./compile/build.sh
6+
popd
7+
if [ -z "$1" ]; then
8+
3rd/luamake/luamake rebuild
9+
else
10+
3rd/luamake/luamake rebuild --platform "$1"
11+
fi

script/meta/bee/channel.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---@meta
1+
---@meta bee.channel
22

33
---@class bee.channel
44
local channelMod = {}

script/meta/bee/filesystem.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---@meta
1+
---@meta bee.filesystem
22

33
---@class fs.path
44
---@operator div: fs.path

script/meta/bee/filewatch.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---@meta
1+
---@meta bee.filewatch
22

33
---@class bee.filewatch.instance
44
local instance = {}

script/meta/bee/select.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---@meta
1+
---@meta bee.select
22

33
---@class bee.select
44
local select = {}

script/meta/bee/socket.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---@meta
1+
---@meta bee.socket
22

33
---@alias bee.socket.protocol
44
---| 'tcp'

0 commit comments

Comments
 (0)