@aws/lsp-codewhisperer 0.0.98 → 0.0.100
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +24 -0
- package/out/language-server/agenticChat/agenticChatController.js +2 -0
- package/out/language-server/agenticChat/agenticChatController.js.map +1 -1
- package/out/language-server/agenticChat/context/contextCommandsProvider.d.ts +3 -0
- package/out/language-server/agenticChat/context/contextCommandsProvider.js +23 -7
- package/out/language-server/agenticChat/context/contextCommandsProvider.js.map +1 -1
- package/out/language-server/agenticChat/tools/mcp/mcpUtils.js +3 -6
- package/out/language-server/agenticChat/tools/mcp/mcpUtils.js.map +1 -1
- package/out/language-server/inline-completion/handler/inlineCompletionHandler.js +19 -0
- package/out/language-server/inline-completion/handler/inlineCompletionHandler.js.map +1 -1
- package/out/shared/amazonQServiceManager/AmazonQTokenServiceManager.js +7 -5
- package/out/shared/amazonQServiceManager/AmazonQTokenServiceManager.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.100](https://github.com/aws/language-servers/compare/lsp-codewhisperer/v0.0.99...lsp-codewhisperer/v0.0.100) (2026-01-07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **amazonq:** adding failed state for pin context features ([#2573](https://github.com/aws/language-servers/issues/2573)) ([981c6e1](https://github.com/aws/language-servers/commit/981c6e1c733d3bb8d171bd9697f443fab7a50c20))
|
|
9
|
+
* **amazonq:** reduce excessive logging from amazon q token service manager causing performance issues [#6111](https://github.com/aws/language-servers/issues/6111) ([#2578](https://github.com/aws/language-servers/issues/2578)) ([8cce456](https://github.com/aws/language-servers/commit/8cce4567729edea58ea9b20aeeaf7143bc494550))
|
|
10
|
+
* generateCompletion request is missing editorState metadata ([#2574](https://github.com/aws/language-servers/issues/2574)) ([aec6a90](https://github.com/aws/language-servers/commit/aec6a90893e1f4837b15d70972444bf751d460d0))
|
|
11
|
+
* let missing registry servers fail naturally during installation ([#2577](https://github.com/aws/language-servers/issues/2577)) ([ecde90a](https://github.com/aws/language-servers/commit/ecde90a9cbb424d4ab1a30fa1f68f05f4b0a8285))
|
|
12
|
+
|
|
13
|
+
## [0.0.99](https://github.com/aws/language-servers/compare/lsp-codewhisperer/v0.0.98...lsp-codewhisperer/v0.0.99) (2025-12-19)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* network connection error caused by server runtime dependency changes on windows machine ([#2568](https://github.com/aws/language-servers/issues/2568)) ([5d38b12](https://github.com/aws/language-servers/commit/5d38b1297a384e5c30d88b05bce075afbaa1a2fa))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Dependencies
|
|
22
|
+
|
|
23
|
+
* The following workspace dependencies were updated
|
|
24
|
+
* dependencies
|
|
25
|
+
* @aws/lsp-core bumped from ^0.0.19 to ^0.0.20
|
|
26
|
+
|
|
3
27
|
## [0.0.98](https://github.com/aws/language-servers/compare/lsp-codewhisperer/v0.0.97...lsp-codewhisperer/v0.0.98) (2025-12-17)
|
|
4
28
|
|
|
5
29
|
|
|
@@ -2920,6 +2920,8 @@ class AgenticChatController {
|
|
|
2920
2920
|
void this.#contextCommandsProvider.maybeUpdateCodeSymbols();
|
|
2921
2921
|
}
|
|
2922
2922
|
catch (error) {
|
|
2923
|
+
this.#contextCommandsProvider.setFilesAndFoldersFailed(true);
|
|
2924
|
+
await this.#contextCommandsProvider.processContextCommandUpdate([]);
|
|
2923
2925
|
this.#log('Error initializing context commands: ' + error);
|
|
2924
2926
|
}
|
|
2925
2927
|
}
|