Skip to content

Commit 6fa70d7

Browse files
committed
3.10.5
1 parent 61f6d3e commit 6fa70d7

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
## Unreleased
44
<!-- Add all new changes here. They will be moved under a version at release -->
55

6+
## 3.10.5
7+
`2024-8-19`
8+
* `NEW` using `enum (partial)`, it suggests all fields with the same `enum` type rather than just the fields from the current table.
9+
* `NEW` When using `enum["<key>" or <index>]`, undefined fields will raise an 'undefined' error.
10+
* `FIX` Renaming files in the directory leads to the auto-correction in "require" adding extra characters.
11+
* `FIX` Performance issue
12+
* `FIX` Fix incorrect indent fixing for `for`
13+
614
## 3.10.4
715
`2024-8-16`
816
* `NEW` Setting: `Lua.type.checkTableShape`: Add matching checks between the shape of tables and classes, during type checking. [#2768](https://github.com/LuaLS/lua-language-server/pull/2768)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3388,5 +3388,5 @@
33883388
"sponsor": {
33893389
"url": "https://github.com/LuaLS/lua-language-server/issues/484"
33903390
},
3391-
"version": "3.10.4"
3391+
"version": "3.10.5"
33923392
}

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.10.4"
3+
local VERSION = "3.10.5"
44

55
local package = require 'package.package'
66
local fsu = require 'fs-utility'

0 commit comments

Comments
 (0)