@aws/lsp-codewhisperer 0.0.104 → 0.0.105

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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.105](https://github.com/aws/language-servers/compare/lsp-codewhisperer/v0.0.104...lsp-codewhisperer/v0.0.105) (2026-02-10)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * amazon q chat history restoration to display rich ui elements and persisting model/agentic toggle preferences. ([#2610](https://github.com/aws/language-servers/issues/2610)) ([75135dd](https://github.com/aws/language-servers/commit/75135ddf2342a355a1fcba463dd6a42d040b75fa))
9
+ * extend SageMaker env detection to support both SMUS and SMAI ([#2598](https://github.com/aws/language-servers/issues/2598)) ([12fbc4c](https://github.com/aws/language-servers/commit/12fbc4c4f355ab0a8500de697a5fd7bd7950f661))
10
+
3
11
  ## [0.0.104](https://github.com/aws/language-servers/compare/lsp-codewhisperer/v0.0.103...lsp-codewhisperer/v0.0.104) (2026-02-05)
4
12
 
5
13
 
@@ -3574,8 +3574,8 @@ class AgenticChatController {
3574
3574
  session.setModel(newModelId, cachedData?.models);
3575
3575
  this.#log(`Model set for model switch: ${newModelId}, tokenLimits: ${JSON.stringify(session.tokenLimits)}`);
3576
3576
  }
3577
- this.#chatHistoryDb.setModelId(session.modelId);
3578
- this.#chatHistoryDb.setPairProgrammingMode(session.pairProgrammingMode);
3577
+ this.#chatHistoryDb.setTabModelId(params.tabId, session.modelId);
3578
+ this.#chatHistoryDb.setTabPairProgrammingMode(params.tabId, session.pairProgrammingMode);
3579
3579
  }
3580
3580
  updateConfiguration = (newConfig) => {
3581
3581
  this.#customizationArn = newConfig.customizationArn;