diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8a458fe7cf..a3ca40ec3a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,9 +1,9 @@ { - "chat-client": "0.1.19", + "chat-client": "0.1.20", "core/aws-lsp-core": "0.0.10", - "server/aws-lsp-antlr4": "0.1.13", - "server/aws-lsp-codewhisperer": "0.0.58", - "server/aws-lsp-json": "0.1.13", - "server/aws-lsp-partiql": "0.0.13", - "server/aws-lsp-yaml": "0.1.13" + "server/aws-lsp-antlr4": "0.1.14", + "server/aws-lsp-codewhisperer": "0.0.59", + "server/aws-lsp-json": "0.1.14", + "server/aws-lsp-partiql": "0.0.14", + "server/aws-lsp-yaml": "0.1.14" } diff --git a/chat-client/CHANGELOG.md b/chat-client/CHANGELOG.md index 469382b93e..74b3572b3c 100644 --- a/chat-client/CHANGELOG.md +++ b/chat-client/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [0.1.20](https://github.com/aws/language-servers/compare/chat-client/v0.1.19...chat-client/v0.1.20) (2025-06-26) + + +### Features + +* add client side ide diagnostics to telemetry event ([#1768](https://github.com/aws/language-servers/issues/1768)) ([d08fc6c](https://github.com/aws/language-servers/commit/d08fc6cccb9238cef9c2ba485e116c0516839537)) +* Implement dynamic model selection based on extension capabilities and improve error handling ([#1737](https://github.com/aws/language-servers/issues/1737)) ([97db5d8](https://github.com/aws/language-servers/commit/97db5d8dd0a2c8214d37429375ec57aa68a462ee)) + + +### Bug Fixes + +* Add persistent pair programming mode setting with database storage and UI synchronization([#1757](https://github.com/aws/language-servers/issues/1757)) ([ba683cc](https://github.com/aws/language-servers/commit/ba683cc6dc120863350025a4a082ecf3a95b5905)) +* **amazonq:** fix the order of publishing the chat stop ack message ([#1761](https://github.com/aws/language-servers/issues/1761)) ([20c2263](https://github.com/aws/language-servers/commit/20c22638a34d557fc755e33aed798abc1ce3a6d9)) +* **amazonq:** updated stopping message to a better string for new chat ([#1765](https://github.com/aws/language-servers/issues/1765)) ([814bff8](https://github.com/aws/language-servers/commit/814bff848b970ec0192e36b8764c9cb08508f6ce)) + ## [0.1.19](https://github.com/aws/language-servers/compare/chat-client/v0.1.18...chat-client/v0.1.19) (2025-06-23) diff --git a/chat-client/package.json b/chat-client/package.json index 7649b4fea2..2d7e110b91 100644 --- a/chat-client/package.json +++ b/chat-client/package.json @@ -1,6 +1,6 @@ { "name": "@aws/chat-client", - "version": "0.1.19", + "version": "0.1.20", "description": "AWS Chat Client", "main": "out/index.js", "repository": { diff --git a/package-lock.json b/package-lock.json index 3d21cb2786..d6f6446407 100644 --- a/package-lock.json +++ b/package-lock.json @@ -243,7 +243,7 @@ }, "chat-client": { "name": "@aws/chat-client", - "version": "0.1.19", + "version": "0.1.20", "license": "Apache-2.0", "dependencies": { "@aws/chat-client-ui-types": "^0.1.40", @@ -24134,7 +24134,7 @@ }, "server/aws-lsp-antlr4": { "name": "@aws/lsp-antlr4", - "version": "0.1.13", + "version": "0.1.14", "license": "Apache-2.0", "dependencies": { "@aws/language-server-runtimes": "^0.2.101", @@ -24196,7 +24196,7 @@ }, "server/aws-lsp-codewhisperer": { "name": "@aws/lsp-codewhisperer", - "version": "0.0.58", + "version": "0.0.59", "bundleDependencies": [ "@amzn/codewhisperer-streaming", "@amzn/amazon-q-developer-streaming-client" @@ -24383,7 +24383,7 @@ }, "server/aws-lsp-json": { "name": "@aws/lsp-json", - "version": "0.1.13", + "version": "0.1.14", "license": "Apache-2.0", "dependencies": { "@aws/language-server-runtimes": "^0.2.101", @@ -24441,7 +24441,7 @@ }, "server/aws-lsp-partiql": { "name": "@aws/lsp-partiql", - "version": "0.0.13", + "version": "0.0.14", "license": "Apache-2.0", "dependencies": { "@aws/language-server-runtimes": "^0.2.101", @@ -24473,7 +24473,7 @@ }, "server/aws-lsp-yaml": { "name": "@aws/lsp-yaml", - "version": "0.1.13", + "version": "0.1.14", "hasInstallScript": true, "license": "Apache-2.0", "dependencies": { diff --git a/server/aws-lsp-antlr4/CHANGELOG.md b/server/aws-lsp-antlr4/CHANGELOG.md index 8718f58d2e..f859cd93ab 100644 --- a/server/aws-lsp-antlr4/CHANGELOG.md +++ b/server/aws-lsp-antlr4/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.14](https://github.com/aws/language-servers/compare/lsp-antlr4/v0.1.13...lsp-antlr4/v0.1.14) (2025-06-26) + + +### Features + +* add client side ide diagnostics to telemetry event ([#1768](https://github.com/aws/language-servers/issues/1768)) ([d08fc6c](https://github.com/aws/language-servers/commit/d08fc6cccb9238cef9c2ba485e116c0516839537)) + ## [0.1.13](https://github.com/aws/language-servers/compare/lsp-antlr4/v0.1.12...lsp-antlr4/v0.1.13) (2025-06-23) diff --git a/server/aws-lsp-antlr4/package.json b/server/aws-lsp-antlr4/package.json index 62a4064056..64e8c55c85 100644 --- a/server/aws-lsp-antlr4/package.json +++ b/server/aws-lsp-antlr4/package.json @@ -1,6 +1,6 @@ { "name": "@aws/lsp-antlr4", - "version": "0.1.13", + "version": "0.1.14", "description": "ANTLR4 language server", "main": "out/index.js", "repository": { diff --git a/server/aws-lsp-codewhisperer/CHANGELOG.md b/server/aws-lsp-codewhisperer/CHANGELOG.md index 31e3f5ac78..a710bbef26 100644 --- a/server/aws-lsp-codewhisperer/CHANGELOG.md +++ b/server/aws-lsp-codewhisperer/CHANGELOG.md @@ -1,5 +1,45 @@ # Changelog +## [0.0.59](https://github.com/aws/language-servers/compare/lsp-codewhisperer/v0.0.58...lsp-codewhisperer/v0.0.59) (2025-06-26) + + +### Features + +* add client side ide diagnostics to telemetry event ([#1768](https://github.com/aws/language-servers/issues/1768)) ([d08fc6c](https://github.com/aws/language-servers/commit/d08fc6cccb9238cef9c2ba485e116c0516839537)) +* enable iam auth for agentic chat ([#1736](https://github.com/aws/language-servers/issues/1736)) ([16b287b](https://github.com/aws/language-servers/commit/16b287b9edb3cb3a99b2b3f74c61df216641c5a6)) +* Implement dynamic model selection based on extension capabilities and improve error handling ([#1737](https://github.com/aws/language-servers/issues/1737)) ([97db5d8](https://github.com/aws/language-servers/commit/97db5d8dd0a2c8214d37429375ec57aa68a462ee)) +* make origin a configurable parameter and pass it to downstream calls ([#1773](https://github.com/aws/language-servers/issues/1773)) ([a1c33d1](https://github.com/aws/language-servers/commit/a1c33d1d7e2bbea693a6d8a9885491c1815f7f62)) + + +### Bug Fixes + +* add missing tools from the list ([#1756](https://github.com/aws/language-servers/issues/1756)) ([4b965d2](https://github.com/aws/language-servers/commit/4b965d279716bb17be3c9402610835d33887adf6)) +* Add persistent pair programming mode setting with database storage and UI synchronization([#1757](https://github.com/aws/language-servers/issues/1757)) ([ba683cc](https://github.com/aws/language-servers/commit/ba683cc6dc120863350025a4a082ecf3a95b5905)) +* add workspace folder to the relativePath ([#1764](https://github.com/aws/language-servers/issues/1764)) ([48a7769](https://github.com/aws/language-servers/commit/48a77697b26590e599a13e731f2cc5c62a893eae)) +* adding files on windows properly triggers reindexing ([#1743](https://github.com/aws/language-servers/issues/1743)) ([a9d4c39](https://github.com/aws/language-servers/commit/a9d4c39afac6112294c9f486a834153a89656966)) +* adding files on windows properly triggers reindexing ([#1755](https://github.com/aws/language-servers/issues/1755)) ([d0abaad](https://github.com/aws/language-servers/commit/d0abaade0e302b7d932254a95f47fa50906963d8)) +* adjust overall limit per request to 570K characters ([#1771](https://github.com/aws/language-servers/issues/1771)) ([07cf383](https://github.com/aws/language-servers/commit/07cf38325847b586190aed6864ffb86782af743a)) +* **amazonq:** add jitter for websocket client re-connections ([#1752](https://github.com/aws/language-servers/issues/1752)) ([0542858](https://github.com/aws/language-servers/commit/0542858891ec982bd22369ed42318ff93537f600)) +* **amazonq:** fix the order of publishing the chat stop ack message ([#1761](https://github.com/aws/language-servers/issues/1761)) ([20c2263](https://github.com/aws/language-servers/commit/20c22638a34d557fc755e33aed798abc1ce3a6d9)) +* **amazonq:** fix to include explanation field in mcp tools schema but remove it for tool execution ([#1759](https://github.com/aws/language-servers/issues/1759)) ([b66c772](https://github.com/aws/language-servers/commit/b66c77218d3cc5476cec32922dc22fccd9ca1861)) +* **amazonq:** init mcp servers in batch of 5 ([#1758](https://github.com/aws/language-servers/issues/1758)) ([43018a6](https://github.com/aws/language-servers/commit/43018a6bb9d782a5e46d2d60f5a07fffd73cc613)) +* **amazonq:** init mcp servers in parallel ([#1754](https://github.com/aws/language-servers/issues/1754)) ([92527c6](https://github.com/aws/language-servers/commit/92527c6b0cee41634c3bce74173f1c2ced08a985)) +* **amazonq:** nep auto trigger should use file uri but filename is used ([#1753](https://github.com/aws/language-servers/issues/1753)) ([d010c66](https://github.com/aws/language-servers/commit/d010c6610e457fab1a5982e1c677f699150fefe0)) +* **amazonq:** remove the unnecessary new line after the chat shell command output ([#1750](https://github.com/aws/language-servers/issues/1750)) ([c9f8989](https://github.com/aws/language-servers/commit/c9f8989c7e66e2f594e8c56ad55ce586fb9f6b34)) +* **amazonq:** return empty if nep auto trigger is not triggered ([#1766](https://github.com/aws/language-servers/issues/1766)) ([e5c1708](https://github.com/aws/language-servers/commit/e5c17085d43747e8fc852f47182a458ca6e81abb)) +* **amazonq:** save one unnecessary listWorkspaceMetadata call ([#1742](https://github.com/aws/language-servers/issues/1742)) ([a9eb908](https://github.com/aws/language-servers/commit/a9eb908b183a85257958c511e47faf2bc29410df)) +* emit latency as an int for creating visualizations ([#1763](https://github.com/aws/language-servers/issues/1763)) ([34bf564](https://github.com/aws/language-servers/commit/34bf5644444bf66dc5d6b87fc70bd3561d48728a)) +* include toolSpec count for history trimming ([#1778](https://github.com/aws/language-servers/issues/1778)) ([8a5322a](https://github.com/aws/language-servers/commit/8a5322a1f2e2452d5535d5cfcacd6c2bfd595b0e)) +* move ignore walk from app/package.json to server/package.json ([#1748](https://github.com/aws/language-servers/issues/1748)) ([6f88dad](https://github.com/aws/language-servers/commit/6f88dad8423aeccc7668e644d33323037fc7a90c)) +* remove hardcoding of builtIn and builtInWrite tools ([#1774](https://github.com/aws/language-servers/issues/1774)) ([fc8cc10](https://github.com/aws/language-servers/commit/fc8cc106617249c81a5c48601418b5f31451865c)) +* update fsReplace toolSpec to emphasize JSON array syntax ([#1751](https://github.com/aws/language-servers/issues/1751)) ([31f6994](https://github.com/aws/language-servers/commit/31f6994c25d2a24709fd7119463d1be269cd68b1)) + + +### Reverts + +* fix adding files on windows properly triggers reindexing ([#1743](https://github.com/aws/language-servers/issues/1743)) ([08d15e6](https://github.com/aws/language-servers/commit/08d15e67e1ff690dab8bf2dca5c0cf977afc0ba9)) +* use cw streaming client from npm ([#1552](https://github.com/aws/language-servers/issues/1552)) ([788d8ed](https://github.com/aws/language-servers/commit/788d8ed58f828b16ddce9029b8d640ed1fe885bc)) + ## [0.0.58](https://github.com/aws/language-servers/compare/lsp-codewhisperer/v0.0.57...lsp-codewhisperer/v0.0.58) (2025-06-23) diff --git a/server/aws-lsp-codewhisperer/package.json b/server/aws-lsp-codewhisperer/package.json index d74bf5cf5e..cd4406ad83 100644 --- a/server/aws-lsp-codewhisperer/package.json +++ b/server/aws-lsp-codewhisperer/package.json @@ -1,6 +1,6 @@ { "name": "@aws/lsp-codewhisperer", - "version": "0.0.58", + "version": "0.0.59", "description": "CodeWhisperer Language Server", "main": "out/index.js", "repository": { diff --git a/server/aws-lsp-json/CHANGELOG.md b/server/aws-lsp-json/CHANGELOG.md index 699046d775..94130422a7 100644 --- a/server/aws-lsp-json/CHANGELOG.md +++ b/server/aws-lsp-json/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.14](https://github.com/aws/language-servers/compare/lsp-json/v0.1.13...lsp-json/v0.1.14) (2025-06-26) + + +### Features + +* add client side ide diagnostics to telemetry event ([#1768](https://github.com/aws/language-servers/issues/1768)) ([d08fc6c](https://github.com/aws/language-servers/commit/d08fc6cccb9238cef9c2ba485e116c0516839537)) + ## [0.1.13](https://github.com/aws/language-servers/compare/lsp-json/v0.1.12...lsp-json/v0.1.13) (2025-06-23) diff --git a/server/aws-lsp-json/package.json b/server/aws-lsp-json/package.json index 7d6b6ad9b5..8624f8d106 100644 --- a/server/aws-lsp-json/package.json +++ b/server/aws-lsp-json/package.json @@ -1,6 +1,6 @@ { "name": "@aws/lsp-json", - "version": "0.1.13", + "version": "0.1.14", "description": "JSON Language Server", "main": "out/index.js", "repository": { diff --git a/server/aws-lsp-partiql/CHANGELOG.md b/server/aws-lsp-partiql/CHANGELOG.md index b08deb34dc..d3de47d50a 100644 --- a/server/aws-lsp-partiql/CHANGELOG.md +++ b/server/aws-lsp-partiql/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.0.14](https://github.com/aws/language-servers/compare/lsp-partiql/v0.0.13...lsp-partiql/v0.0.14) (2025-06-26) + + +### Features + +* add client side ide diagnostics to telemetry event ([#1768](https://github.com/aws/language-servers/issues/1768)) ([d08fc6c](https://github.com/aws/language-servers/commit/d08fc6cccb9238cef9c2ba485e116c0516839537)) + ## [0.0.13](https://github.com/aws/language-servers/compare/lsp-partiql/v0.0.12...lsp-partiql/v0.0.13) (2025-06-16) diff --git a/server/aws-lsp-partiql/package.json b/server/aws-lsp-partiql/package.json index e35c3f74a9..f3dd67ce82 100644 --- a/server/aws-lsp-partiql/package.json +++ b/server/aws-lsp-partiql/package.json @@ -3,7 +3,7 @@ "author": "Amazon Web Services", "license": "Apache-2.0", "description": "PartiQL language server", - "version": "0.0.13", + "version": "0.0.14", "repository": { "type": "git", "url": "https://github.com/aws/language-servers" diff --git a/server/aws-lsp-yaml/CHANGELOG.md b/server/aws-lsp-yaml/CHANGELOG.md index b9a596b65c..4cde450522 100644 --- a/server/aws-lsp-yaml/CHANGELOG.md +++ b/server/aws-lsp-yaml/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.14](https://github.com/aws/language-servers/compare/lsp-yaml/v0.1.13...lsp-yaml/v0.1.14) (2025-06-26) + + +### Features + +* add client side ide diagnostics to telemetry event ([#1768](https://github.com/aws/language-servers/issues/1768)) ([d08fc6c](https://github.com/aws/language-servers/commit/d08fc6cccb9238cef9c2ba485e116c0516839537)) + ## [0.1.13](https://github.com/aws/language-servers/compare/lsp-yaml/v0.1.12...lsp-yaml/v0.1.13) (2025-06-23) diff --git a/server/aws-lsp-yaml/package.json b/server/aws-lsp-yaml/package.json index acfb00130c..178c3e2503 100644 --- a/server/aws-lsp-yaml/package.json +++ b/server/aws-lsp-yaml/package.json @@ -1,6 +1,6 @@ { "name": "@aws/lsp-yaml", - "version": "0.1.13", + "version": "0.1.14", "description": "YAML Language Server", "main": "out/index.js", "repository": {