Skip to content

Commit a7aff92

Browse files
authored
feat(amazonq): point to flare production manifest (aws#7214)
## Problem We currently point to the alpha manifest and Flare deployment is ready for us to point to prod. ## Solution - switch the config to point to prod. - supported version `1.*.*` will force us to explicitly support new major versions, but automatically pull new minor versions. Following the LSP toolkit spec. --- - 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 457efa4 commit a7aff92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/amazonq/src/lsp/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ export function isValidConfigSection(section: unknown): section is ConfigSection
3131
}
3232

3333
export const defaultAmazonQLspConfig: ExtendedAmazonQLSPConfig = {
34-
manifestUrl: 'https://d3akiidp1wvqyg.cloudfront.net/qAgenticChatServer/0/manifest.json', // TODO swap this back
35-
supportedVersions: '*', // TODO swap this back
34+
manifestUrl: 'https://aws-toolkit-language-servers.amazonaws.com/qAgenticChatServer/0/manifest.json',
35+
supportedVersions: '1.*.*',
3636
id: 'AmazonQ', // used across IDEs for identifying global storage/local disk locations. Do not change.
3737
suppressPromptPrefix: 'amazonQ',
3838
path: undefined,

0 commit comments

Comments
 (0)