Skip to content

Commit fed762c

Browse files
Merge branch 'main' into samgst/fixNotifBaseCacheAccess
2 parents a1993d7 + 2eb3c14 commit fed762c

File tree

12 files changed

+37
-17
lines changed

12 files changed

+37
-17
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" : "Amazon Q: Fix chat syntax highlighting when using several different themes"
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 to chat: New splash loader animation, initial streaming card animation, improved button colours"
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: Navigate through prompt history by using the up/down arrows"
4+
}

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ ij_kotlin_allow_trailing_comma = true
4242
ij_kotlin_code_style_defaults = KOTLIN_OFFICIAL
4343
ij_kotlin_name_count_to_use_star_import = 2147483647
4444
ij_kotlin_name_count_to_use_star_import_for_members = 2147483647
45-
ij_kotlin_packages_to_use_import_on_demand = unset
45+
ij_kotlin_packages_to_use_import_on_demand = ""
4646

4747
[{*.markdown,*.md}]
4848
ij_markdown_force_one_space_after_blockquote_symbol = true

detekt-rules/detekt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ formatting:
7272
maxLineLength: 160
7373
ignoreBackTickedIdentifier: true
7474
NoWildcardImports:
75-
# no `packagesToUseImportOnDemandProperty` because we don't want to allow any star imports
75+
packagesToUseImportOnDemandProperty: ""
7676
active: true
7777
ParameterListWrapping:
7878
active: true

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@ fun buildClearPromptProgressMessage(tabId: String) = PromptProgressMessage(
128128
tabId = tabId
129129
)
130130

131-
val runCodeScanMessage = CodeScanChatMessage(messageType = ChatMessageType.Prompt, command = "review", tabId = UUID.randomUUID().toString())
131+
val runCodeScanMessage
132+
get() = CodeScanChatMessage(messageType = ChatMessageType.Prompt, command = "review", tabId = UUID.randomUUID().toString())
132133

133134
val cancelFileScanButton = Button(
134135
id = CodeScanButtonId.StopFileScan.id,

plugins/amazonq/chat/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonqCodeTest/CodeWhispererCodeTestSession.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import software.aws.toolkits.jetbrains.utils.assertIsNonDispatchThread
2323
import java.nio.file.Path
2424
import java.time.Duration
2525
import java.time.Instant
26-
import java.util.*
26+
import java.util.UUID
2727
import kotlin.coroutines.coroutineContext
2828

2929
// TODO: Refactor with CodeWhispererCodeScanSession code since both are about zip CreateUploadUrl logic

plugins/amazonq/codewhisperer/jetbrains-community/src/software/aws/toolkits/jetbrains/services/codewhisperer/codescan/AmazonQCodeFixSession.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ class AmazonQCodeFixSession(val project: Project) {
9696
val createCodeFixResponse = createCodeFixJob(
9797
sourceZipUploadResponse.uploadId(),
9898
issueRange,
99-
issue.description.toString(),
99+
issue.recommendation.text,
100100
codeFixName,
101101
issue.ruleId
102102
)

plugins/amazonq/mynah-ui/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

plugins/amazonq/mynah-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"lintfix": "eslint -c .eslintrc.js --fix --ext .ts ."
1313
},
1414
"dependencies": {
15-
"@aws/mynah-ui-chat": "npm:@aws/mynah-ui@4.18.1",
15+
"@aws/mynah-ui-chat": "npm:@aws/mynah-ui@4.21.0",
1616
"@types/node": "^14.18.5",
1717
"fs-extra": "^10.0.1",
1818
"sanitize-html": "^2.12.1",

0 commit comments

Comments
 (0)