diff --git a/packages/amazonq/.changes/next-release/Bug Fix-15ddd682-232b-4bcd-a6e5-969f5c1c40c9.json b/packages/amazonq/.changes/next-release/Bug Fix-15ddd682-232b-4bcd-a6e5-969f5c1c40c9.json new file mode 100644 index 00000000000..34138ca39eb --- /dev/null +++ b/packages/amazonq/.changes/next-release/Bug Fix-15ddd682-232b-4bcd-a6e5-969f5c1c40c9.json @@ -0,0 +1,4 @@ +{ + "type": "Bug Fix", + "description": "Fix suboptimal inline suggestions from Amazon Q caused by improperly formatted supplemental context" +} diff --git a/packages/core/src/amazonq/lsp/lspController.ts b/packages/core/src/amazonq/lsp/lspController.ts index 2ea37c84990..a80bcaac279 100644 --- a/packages/core/src/amazonq/lsp/lspController.ts +++ b/packages/core/src/amazonq/lsp/lspController.ts @@ -66,7 +66,7 @@ export interface Manifest { } const manifestUrl = 'https://aws-toolkit-language-servers.amazonaws.com/q-context/manifest.json' // this LSP client in Q extension is only going to work with these LSP server versions -const supportedLspServerVersions = ['0.1.25'] +const supportedLspServerVersions = ['0.1.27'] const nodeBinName = process.platform === 'win32' ? 'node.exe' : 'node'