Skip to content

Commit 3cedaee

Browse files
committed
Merge branch 'main' into bryceito/reroute-chat
2 parents 6470310 + 02e1e02 commit 3cedaee

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

.changes/3.81.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"date" : "2025-06-27",
3+
"version" : "3.81",
4+
"entries" : [ ]
5+
}

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# _3.81_ (2025-06-27)
2+
13
# _3.80_ (2025-06-26)
24
- **(Feature)** Amazon Q inline: now display completions much more consistently at the user's current caret position
35
- **(Feature)** Amazon Q inline: now Q completions can co-exist with JetBrains' native IntelliSense completions, when both are showing, press Tab or your customized key shortcuts to accept Q completions and press Enter to accept IntelliSense completions.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
# Toolkit Version
5-
toolkitVersion=3.81-SNAPSHOT
5+
toolkitVersion=3.82-SNAPSHOT
66

77
# Publish Settings
88
publishToken=

plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/AmazonQLanguageClientImpl.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ class AmazonQLanguageClientImpl(private val project: Project) : AmazonQLanguageC
149149
MessageType.Error -> Level.ERROR
150150
MessageType.Warning -> Level.WARN
151151
MessageType.Info, MessageType.Log -> Level.INFO
152+
else -> Level.WARN
152153
}
153154

154155
if (type == Level.ERROR &&

plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/AmazonQLspService.kt

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,6 @@ import software.aws.toolkits.core.utils.writeText
7373
import software.aws.toolkits.jetbrains.core.coroutines.ioDispatcher
7474
import software.aws.toolkits.jetbrains.services.amazonq.lsp.artifacts.ArtifactManager
7575
import software.aws.toolkits.jetbrains.services.amazonq.lsp.auth.DefaultAuthCredentialsService
76-
import software.aws.toolkits.jetbrains.services.amazonq.lsp.dependencies.DefaultModuleDependenciesService
7776
import software.aws.toolkits.jetbrains.services.amazonq.lsp.encryption.JwtEncryptionManager
7877
import software.aws.toolkits.jetbrains.services.amazonq.lsp.flareChat.AmazonQLspTypeAdapterFactory
7978
import software.aws.toolkits.jetbrains.services.amazonq.lsp.flareChat.AwsExtendedInitializeResult
@@ -120,10 +119,13 @@ internal class LSPProcessListener : ProcessListener {
120119
}
121120
} else if (ProcessOutputType.isStderr(outputType)) {
122121
LOG.warn { "LSP process stderr: ${event.text}" }
122+
} else if (outputType == ProcessOutputType.SYSTEM) {
123+
LOG.info { "LSP system events: ${event.text}" }
123124
}
124125
}
125126

126127
override fun processTerminated(event: ProcessEvent) {
128+
LOG.info { "LSP process terminated with exit code ${event.exitCode}" }
127129
try {
128130
this.outputStreamWriter.close()
129131
this.outputStream.close()
@@ -590,9 +592,9 @@ private class AmazonQServerInstance(private val project: Project, private val cs
590592
WorkspaceServiceHandler(project, cs, lspInitResult).also {
591593
Disposer.register(this, it)
592594
}
593-
DefaultModuleDependenciesService(project, cs).also {
594-
Disposer.register(this, it)
595-
}
595+
// DefaultModuleDependenciesService(project, cs).also {
596+
// Disposer.register(this, it)
597+
// }
596598
}
597599
}
598600
}

0 commit comments

Comments
 (0)