You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: changelog.md
+16Lines changed: 16 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,23 @@
2
2
3
3
## Unreleased
4
4
<!-- Add all new changes here. They will be moved under a version at release -->
5
+
6
+
## 3.12.0
7
+
`2024-10-30`
8
+
*`NEW` Support importing `enum` through class name suffix matching in quick fixes, allowing the import of `enum` from `table.table.enum; return table`.
9
+
*`NEW` Support limited multiline annotations
10
+
```lua
11
+
---@type{
12
+
--- x: number,
13
+
--- y: number,
14
+
--- z: number,
15
+
---}
16
+
localpoint--> local point: { x: number, y: number, z: number }
17
+
```
5
18
*`FIX` A regression related to type narrow and generic param introduced since `v3.10.1`
19
+
*`FIX` Parse storagePath to improve reliability of resolving ${addons} placeholder
20
+
*`FIX` Reference should also look in tablefield
21
+
*`FIX` Determine that the index of `{...}` is an integer when iterating
0 commit comments