Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"chat-client": "0.1.40",
"chat-client": "0.1.41",
"core/aws-lsp-core": "0.0.16",
"server/aws-lsp-antlr4": "0.1.20",
"server/aws-lsp-codewhisperer": "0.0.88",
Expand Down
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Git LFS file not shown
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"//": [
"https://nodejs.org/api/packages.html#determining-module-system",
"This file is included with the Flare distribution to serve as the 'nearest parent package.json file' to force Node.js to treat Flare as CommonJS.",
"Otherwise, startup may fail when Node.js incorrectly decides to use the ES module loader instead of CJS due to user's home directory structure"
],
"type": "commonjs"
}
1 change: 1 addition & 0 deletions app/aws-lsp-codewhisperer-runtimes/scripts/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@ done
cd ./build/private/bundle
for config in "${configs[@]}"; do
cd ${config}
cp -r ../../../../scripts/dummy-package.json ./package.json
zip -r ../../../../$ARCHIVES_DIR/${config}/win-x64/servers.zip .
zip -r ../../../../$ARCHIVES_DIR/${config}/linux-x64/servers.zip .
zip -r ../../../../$ARCHIVES_DIR/${config}/mac-x64/servers.zip .
Expand Down
2 changes: 1 addition & 1 deletion app/aws-lsp-codewhisperer-runtimes/src/version.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"agenticChat": "1.42.0"
"agenticChat": "1.43.0"
}
7 changes: 7 additions & 0 deletions chat-client/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.1.41](https://github.com/aws/language-servers/compare/chat-client/v0.1.40...chat-client/v0.1.41) (2025-11-04)


### Bug Fixes

* **amazonq:** mcp tool panel blocks amazon q chat interface when using right-click context menu ([#2442](https://github.com/aws/language-servers/issues/2442)) ([11900ca](https://github.com/aws/language-servers/commit/11900ca371adee2611698427dbec7c9323ef8e01))

## [0.1.40](https://github.com/aws/language-servers/compare/chat-client/v0.1.39...chat-client/v0.1.40) (2025-10-21)


Expand Down
10 changes: 5 additions & 5 deletions chat-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@aws/chat-client",
"version": "0.1.40",
"version": "0.1.41",
"description": "AWS Chat Client",
"main": "out/index.js",
"repository": {
Expand All @@ -24,10 +24,10 @@
"package": "webpack"
},
"dependencies": {
"@aws/chat-client-ui-types": "^0.1.63",
"@aws/language-server-runtimes": "^0.3.1",
"@aws/language-server-runtimes-types": "^0.1.57",
"@aws/mynah-ui": "^4.36.8"
"@aws/chat-client-ui-types": "^0.1.65",
"@aws/language-server-runtimes": "^0.3.3",
"@aws/language-server-runtimes-types": "^0.1.59",
"@aws/mynah-ui": "4.36.9-beta.3"
},
"devDependencies": {
"@types/jsdom": "^21.1.6",
Expand Down
1 change: 1 addition & 0 deletions chat-client/src/client/mynahUi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1411,6 +1411,7 @@ export const createMynahUi = (
? { 'insert-to-cursor': null }
: undefined,
...(shouldMute ? { muted: true } : {}),
modifiedFilesTracker: message.modifiedFilesTracker,
}
}

Expand Down
Binary file not shown.
70 changes: 46 additions & 24 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"ci:generate:agentic:attribution": "ts-node ./script/prepare-agentic-attribution-dependencies.ts && ./script/generate-agentic-attribution.sh && git restore package.json"
},
"dependencies": {
"@aws/language-server-runtimes": "^0.3.1",
"@aws/language-server-runtimes": "^0.3.5",
"@smithy/types": "4.2.0",
"clean": "^4.0.2",
"typescript": "^5.8.2"
Expand Down
4 changes: 2 additions & 2 deletions server/aws-lsp-codewhisperer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
"@aws-sdk/types": "^3.734.0",
"@aws-sdk/util-arn-parser": "^3.723.0",
"@aws-sdk/util-retry": "^3.374.0",
"@aws/chat-client-ui-types": "^0.1.63",
"@aws/language-server-runtimes": "^0.3.1",
"@aws/chat-client-ui-types": "^0.1.65",
"@aws/language-server-runtimes": "^0.3.5",
"@aws/lsp-core": "^0.0.16",
"@modelcontextprotocol/sdk": "^1.15.0",
"@smithy/node-http-handler": "^2.5.0",
Expand Down
Loading
Loading