@aws/lsp-codewhisperer 0.0.102 → 0.0.103
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 +8 -0
- package/out/language-server/agenticChat/agenticChatController.js +2 -2
- package/out/language-server/agenticChat/agenticChatController.js.map +1 -1
- package/out/language-server/agenticChat/context/agenticChatTriggerContext.d.ts +2 -2
- package/out/language-server/agenticChat/context/agenticChatTriggerContext.js +4 -2
- package/out/language-server/agenticChat/context/agenticChatTriggerContext.js.map +1 -1
- package/out/language-server/inline-completion/handler/editCompletionHandler.js +2 -15
- package/out/language-server/inline-completion/handler/editCompletionHandler.js.map +1 -1
- package/out/language-server/inline-completion/handler/inlineCompletionHandler.js +1 -25
- package/out/language-server/inline-completion/handler/inlineCompletionHandler.js.map +1 -1
- package/out/language-server/inline-completion/utils/textDocumentUtils.d.ts +3 -0
- package/out/language-server/inline-completion/utils/textDocumentUtils.js +29 -1
- package/out/language-server/inline-completion/utils/textDocumentUtils.js.map +1 -1
- package/out/language-server/netTransform/artifactManager.js +1 -1
- package/out/language-server/netTransform/artifactManager.js.map +1 -1
- package/out/language-server/netTransform/atxTransformHandler.js +1 -0
- package/out/language-server/netTransform/atxTransformHandler.js.map +1 -1
- package/out/language-server/netTransform/metrics.js +1 -1
- package/out/language-server/netTransform/metrics.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.103](https://github.com/aws/language-servers/compare/lsp-codewhisperer/v0.0.102...lsp-codewhisperer/v0.0.103) (2026-01-26)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* include conversationId in generateAssistantResponse API request ([#2595](https://github.com/aws/language-servers/issues/2595)) ([a8ac33e](https://github.com/aws/language-servers/commit/a8ac33ea4e26f2ca898e5d4ed2625e11f53922aa))
|
|
9
|
+
* patch [#2589](https://github.com/aws/language-servers/issues/2589) and fix NEP invalidation error ([#2590](https://github.com/aws/language-servers/issues/2590)) ([07960d0](https://github.com/aws/language-servers/commit/07960d0fcd169bae0d632d05d953475fec98c05c))
|
|
10
|
+
|
|
3
11
|
## [0.0.102](https://github.com/aws/language-servers/compare/lsp-codewhisperer/v0.0.101...lsp-codewhisperer/v0.0.102) (2026-01-13)
|
|
4
12
|
|
|
5
13
|
|
|
@@ -798,7 +798,7 @@ class AgenticChatController {
|
|
|
798
798
|
this.#debug('Preparing request input');
|
|
799
799
|
// Get profileArn from the service manager if available
|
|
800
800
|
const profileArn = this.#serviceManager?.getActiveProfileArn();
|
|
801
|
-
const requestInput = await this.#triggerContext.getChatParamsFromTrigger(params, triggerContext, codewhisperer_streaming_1.ChatTriggerType.MANUAL, this.#customizationArn, chatResultStream, profileArn, this.#getTools(session), additionalContext, session.modelId, this.#origin, images);
|
|
801
|
+
const requestInput = await this.#triggerContext.getChatParamsFromTrigger(params, triggerContext, codewhisperer_streaming_1.ChatTriggerType.MANUAL, this.#customizationArn, chatResultStream, profileArn, this.#getTools(session), additionalContext, session.modelId, this.#origin, images, session.conversationId);
|
|
802
802
|
return requestInput;
|
|
803
803
|
}
|
|
804
804
|
/**
|
|
@@ -808,7 +808,7 @@ class AgenticChatController {
|
|
|
808
808
|
this.#debug('Preparing compaction request input');
|
|
809
809
|
// Get profileArn from the service manager if available
|
|
810
810
|
const profileArn = this.#serviceManager?.getActiveProfileArn();
|
|
811
|
-
const requestInput = this.#triggerContext.getCompactionChatCommandInput(profileArn, this.#getTools(session), session.modelId, this.#origin);
|
|
811
|
+
const requestInput = this.#triggerContext.getCompactionChatCommandInput(profileArn, this.#getTools(session), session.modelId, this.#origin, session.conversationId);
|
|
812
812
|
return requestInput;
|
|
813
813
|
}
|
|
814
814
|
/**
|