@aws/lsp-codewhisperer 0.0.106 → 0.0.107

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.
Files changed (30) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/out/language-server/agenticChat/agenticChatController.js +1 -1
  3. package/out/language-server/agenticChat/agenticChatController.js.map +1 -1
  4. package/out/language-server/agenticChat/tools/executeBash.d.ts +1 -1
  5. package/out/language-server/agenticChat/tools/executeBash.js +2 -11
  6. package/out/language-server/agenticChat/tools/executeBash.js.map +1 -1
  7. package/out/language-server/agenticChat/tools/fileSearch.d.ts +1 -1
  8. package/out/language-server/agenticChat/tools/fileSearch.js +1 -1
  9. package/out/language-server/agenticChat/tools/fileSearch.js.map +1 -1
  10. package/out/language-server/agenticChat/tools/fsRead.d.ts +1 -1
  11. package/out/language-server/agenticChat/tools/fsRead.js +1 -1
  12. package/out/language-server/agenticChat/tools/fsRead.js.map +1 -1
  13. package/out/language-server/agenticChat/tools/fsReplace.d.ts +1 -1
  14. package/out/language-server/agenticChat/tools/fsReplace.js +1 -1
  15. package/out/language-server/agenticChat/tools/fsReplace.js.map +1 -1
  16. package/out/language-server/agenticChat/tools/fsWrite.d.ts +1 -1
  17. package/out/language-server/agenticChat/tools/fsWrite.js +1 -1
  18. package/out/language-server/agenticChat/tools/fsWrite.js.map +1 -1
  19. package/out/language-server/agenticChat/tools/listDirectory.d.ts +1 -1
  20. package/out/language-server/agenticChat/tools/listDirectory.js +1 -1
  21. package/out/language-server/agenticChat/tools/listDirectory.js.map +1 -1
  22. package/out/language-server/agenticChat/tools/toolShared.d.ts +5 -18
  23. package/out/language-server/agenticChat/tools/toolShared.js +10 -27
  24. package/out/language-server/agenticChat/tools/toolShared.js.map +1 -1
  25. package/out/language-server/chat/chatSessionService.d.ts +3 -4
  26. package/out/language-server/chat/chatSessionService.js +5 -9
  27. package/out/language-server/chat/chatSessionService.js.map +1 -1
  28. package/out/language-server/configuration/transformConfigurationServer.js +3 -2
  29. package/out/language-server/configuration/transformConfigurationServer.js.map +1 -1
  30. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.107](https://github.com/aws/language-servers/compare/lsp-codewhisperer/v0.0.106...lsp-codewhisperer/v0.0.107) (2026-02-20)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * add proxy support for ATX Transform using sdkInitializator ([#2619](https://github.com/aws/language-servers/issues/2619)) ([83d3bc9](https://github.com/aws/language-servers/commit/83d3bc9dd8f2d58dc44ca59a4daa6176b569024f))
9
+
10
+
11
+ ### Reverts
12
+
13
+ * fix for tool permissions in allowed paths per tool ([#2601](https://github.com/aws/language-servers/issues/2601)) ([#2615](https://github.com/aws/language-servers/issues/2615)) ([7b62151](https://github.com/aws/language-servers/commit/7b62151acd4908073fe8b369f1a3e9ca1ba0be9e))
14
+
3
15
  ## [0.0.106](https://github.com/aws/language-servers/compare/lsp-codewhisperer/v0.0.105...lsp-codewhisperer/v0.0.106) (2026-02-17)
4
16
 
5
17
 
@@ -1471,7 +1471,7 @@ class AgenticChatController {
1471
1471
  // After approval, add the path to the approved paths in the session
1472
1472
  const inputPath = toolUse.input?.path || toolUse.input?.cwd;
1473
1473
  if (inputPath) {
1474
- session.addApprovedPath(inputPath, toolUse.name);
1474
+ session.addApprovedPath(inputPath);
1475
1475
  }
1476
1476
  const ws = this.#getWritableStream(chatResultStream, toolUse);
1477
1477
  const result = await this.#features.agent.runTool(toolUse.name, toolUse.input, token, ws);