summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeOzay <colpaert.benoit@gmail.com>2024-07-08 17:03:12 +0200
committerNeOzay <colpaert.benoit@gmail.com>2024-07-08 17:03:12 +0200
commit67a55a4afd1e19f3f8bfec2464750fb0b52223f2 (patch)
tree15c1ef27fad28917ab5b7254016b3f335664b46f
parentaa0fbf5aede66b2c3f380d44f2a031d19fd2d975 (diff)
downloadlua-language-server-67a55a4afd1e19f3f8bfec2464750fb0b52223f2.zip
update changelog
-rw-r--r--.vscode/tasks.json9
-rw-r--r--changelog.md1
2 files changed, 8 insertions, 2 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 52105b59..db6008e1 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -29,7 +29,7 @@
},
"options": {
"cwd": "${workspaceFolder}/3rd/luamake"
- },
+ }
},
{
"type": "shell",
@@ -42,7 +42,12 @@
},
"osx": {
"command": "${workspaceFolder}/3rd/luamake/luamake rebuild"
+ },
+ "problemMatcher": [],
+ "group": {
+ "kind": "build",
+ "isDefault": true
}
- },
+ }
]
}
diff --git a/changelog.md b/changelog.md
index 87ef33ef..b7eec493 100644
--- a/changelog.md
+++ b/changelog.md
@@ -7,6 +7,7 @@
* `NEW` Add support for lambda style functions, `|paramList| expr` is syntactic sugar for `function(paramList) return expr end`
* `FIX` Respect `completion.showParams` config for local function completion
* `CHG` Improve performance of multithreaded `--check` and `undefined-field` diagnostic
+* `FIX` Bad triggering of the `inject-field` diagnostic, when the fields are declared at the creation of the object [#2746](https://github.com/LuaLS/lua-language-server/issues/2746)
## 3.9.3
`2024-6-11`