|
3 | 3 | ## Unreleased
|
4 | 4 | <!-- Add all new changes here. They will be moved under a version at release -->
|
5 | 5 |
|
| 6 | +## 3.13.7 |
| 7 | +`2025-3-10` |
| 8 | +* `NEW` CLI: added `--help`. |
| 9 | +* `CHG` default path for `--doc_out_path` is the current directory |
| 10 | +* `FIX` incorrect argument skip pattern for `--check_out_path=`, which incorrectly skips the next argument |
| 11 | +* `FIX` incorrect error message for `--doc_update`. |
| 12 | +* `FIX` reimplement section `luals.config` in file doc.json |
| 13 | +* `FIX` incorrect file names in file doc.json |
| 14 | +* `FIX` remove extra `./` path prefix in the check report when using `--check=.` |
| 15 | +* `FIX` Narrowing of types with literal fields: [#3056](https://github.com/LuaLS/lua-language-server/issues/3056), [#3089](https://github.com/LuaLS/lua-language-server/issues/3089) |
| 16 | +* `FIX` correct lua version of `math.ult` and `math.type` |
| 17 | +* `FIX` incorrect links for `pattern` in `string` methods |
| 18 | +* `FIX` fix type annotations for bit module |
| 19 | +* `FIX` Another regression related to type narrow and generic param introduced since `v3.10.1` [#3087](https://github.com/LuaLS/lua-language-server/issues/3087) |
| 20 | + |
6 | 21 | ## 3.13.6
|
7 | 22 | `2025-2-6`
|
8 | 23 | * `NEW` `---@class` supports attribute `partial`, which will not check missing inherited fields [#3023](https://github.com/LuaLS/lua-language-server/issues/3023)
|
|
22 | 37 | * `NEW` Added variable substitution support for vscode's `${workspaceFolder:x}` when resolving path placeholders [#2987](https://github.com/LuaLS/lua-language-server/issues/2987)
|
23 | 38 | * `NEW` Added `--check_format=json|pretty` for use with `--check` to output diagnostics in a human readable format.
|
24 | 39 | * `NEW` Test CLI: `--name=<testname>` `-n=<testname>`: run specify unit test
|
25 |
| -* `CHG` [#3014] Generic pattern now supports definition after capture and optional, union, array |
| 40 | +* `CHG` Generic pattern now supports definition after capture and optional, union, array [#3014](https://github.com/LuaLS/lua-language-server/issues/3014) [#3031](https://github.com/LuaLS/lua-language-server/pull/3031) |
26 | 41 | ```lua
|
27 | 42 | ---@generic T
|
28 | 43 | ---@param t `T`.Cat?
|
|
34 | 49 | * `FIX` Fixed the error that the configuration file pointed to by the `--configpath` option was not read and loaded.
|
35 | 50 | * `FIX` Don't truncate any output when running in `--doc` mode [#3049](https://github.com/LuaLS/lua-language-server/issues/3049)
|
36 | 51 | * `FIX` Generic return can be optional.
|
37 |
| -* `FIX` Fixed the comment calculating in docs `---@param a string?Comment` - now its `Comment` instead of `omment`. |
| 52 | +* `FIX` Fixed the comment calculating in docs `---@param a string?Comment` - now its `Comment` instead of `omment` [#3028](https://github.com/LuaLS/lua-language-server/pull/3028) |
38 | 53 | * `FIX` Fixed cannot bind variables using tail comment `@class` [#2673](https://github.com/LuaLS/lua-language-server/issues/2673)
|
39 | 54 | * `FIX` Fixed missing field completion for generic class object [#2196](https://github.com/LuaLS/lua-language-server/issues/2196) [#2945](https://github.com/LuaLS/lua-language-server/issues/2945) [#3041](https://github.com/LuaLS/lua-language-server/issues/3041)
|
40 | 55 |
|
41 | 56 | ## 3.13.5
|
42 | 57 | `2024-12-20`
|
43 |
| -* `NEW` Setting: `Lua.hint.awaitPropagate`: When enabled, --@async propagates to the caller. |
44 |
| -* `CHG` Add server version information to `initialize` response #2996 |
| 58 | +* `NEW` Setting: `Lua.hint.awaitPropagate`: When enabled, `--@async` propagates to the caller. |
| 59 | +* `CHG` Add server version information to `initialize` response [#2996](https://github.com/LuaLS/lua-language-server/pull/2996) |
45 | 60 | * `CHG` If the `---@field` of the same name has a type of `fun`, the `duplicate-doc-field` check will not be performed.
|
46 | 61 | * `FIX` Incorrect infer for function array annotation on tables [#2367](https://github.com/LuaLS/lua-language-server/issues/2367)
|
47 | 62 |
|
|
0 commit comments