Skip to content

Commit b2af09b

Browse files
authored
Merge branch 'main' into keybinding
2 parents d2ab066 + b923351 commit b2af09b

File tree

42 files changed

+682
-91
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+682
-91
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "bugfix",
3+
"description" : "Fixed an issue where Amazon Q settings did not persist across IDE restarts"
4+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "bugfix",
3+
"description" : "Amazon Q: Fix context menu displaying when typing `@`, even though input is disallowed"
4+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "bugfix",
3+
"description" : "Amazon Q: Fix up/down history navigation only triggering on first/last line of prompt input"
4+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "bugfix",
3+
"description" : "Amazon Q /doc: Ask for user prompt if error occurs while updating documentation"
4+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "bugfix",
3+
"description" : "Amazon Q: cursor no longer jumps after navigating prompt history"
4+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "bugfix",
3+
"description" : "Amazon Q /doc: fix for user prompt to change folder in chat"
4+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "bugfix",
3+
"description" : "Amazon Q: word duplication when pressing tab on context selector fixed"
4+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "feature",
3+
"description" : "Amazon Q: Updated `/help` command to include re:invent 2024 features"
4+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "feature",
3+
"description" : "Amazon Q: UI improvements through more accurate code syntax highlighting"
4+
}

plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonqCodeScan/controller/CodeScanChatHelper.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ import software.aws.toolkits.jetbrains.services.amazonqCodeScan.messages.CodeSca
1111
import software.aws.toolkits.jetbrains.services.amazonqCodeScan.messages.CodeScanChatMessageContent
1212
import software.aws.toolkits.jetbrains.services.amazonqCodeScan.messages.UpdatePlaceholderMessage
1313
import software.aws.toolkits.jetbrains.services.amazonqCodeScan.storage.ChatSessionStorage
14+
import software.aws.toolkits.jetbrains.services.codewhisperer.telemetry.QFeatureEvent
15+
import software.aws.toolkits.jetbrains.services.codewhisperer.telemetry.broadcastQEvent
1416
import software.aws.toolkits.jetbrains.services.cwc.messages.ChatMessageType
1517
import java.util.UUID
1618

@@ -34,7 +36,7 @@ class CodeScanChatHelper(
3436
clearPreviousItemButtons: Boolean? = false,
3537
) {
3638
if (isInValidSession()) return
37-
39+
broadcastQEvent(QFeatureEvent.INVOCATION)
3840
messagePublisher.publish(
3941
CodeScanChatMessage(
4042
tabId = activeCodeScanTabId as String,

0 commit comments

Comments
 (0)