Skip to content

Commit e14f31e

Browse files
authored
fix(amazonq): update lsp artifact to 0.1.42 (#6689)
## Problem In certain rare cases, when the changed file has no dot in filename, this file was misread as folders in the older LSP. Now this bug is fixed in 0.1.42 lsp. ## Solution update lsp artifact to 0.1.42 --- - Treat all work as PUBLIC. Private `feature/x` branches will not be squash-merged at release time. - Your code changes must meet the guidelines in [CONTRIBUTING.md](https://github.com/aws/aws-toolkit-vscode/blob/master/CONTRIBUTING.md#guidelines). - License: I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent 36caa76 commit e14f31e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/core/src/amazonq/lsp/lspController.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export interface Manifest {
6262
}
6363
const manifestUrl = 'https://aws-toolkit-language-servers.amazonaws.com/q-context/manifest.json'
6464
// this LSP client in Q extension is only going to work with these LSP server versions
65-
const supportedLspServerVersions = ['0.1.40']
65+
const supportedLspServerVersions = ['0.1.42']
6666

6767
const nodeBinName = process.platform === 'win32' ? 'node.exe' : 'node'
6868

0 commit comments

Comments
 (0)