Skip to content

Commit bdb7bd7

Browse files
authored
Merge branch 'main' into riv
2 parents ba62f8c + f39209c commit bdb7bd7

File tree

9 files changed

+34
-20
lines changed

9 files changed

+34
-20
lines changed

.changes/3.44.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"date" : "2024-12-04",
3+
"version" : "3.44",
4+
"entries" : [ {
5+
"type" : "feature",
6+
"description" : "Amazon Q: UI improvements to chat: New splash loader animation, initial streaming card animation, improved button colours"
7+
}, {
8+
"type" : "feature",
9+
"description" : "Amazon Q: Navigate through prompt history by using the up/down arrows"
10+
}, {
11+
"type" : "bugfix",
12+
"description" : "Fix issue where Amazon Q Code Transform is unable to start"
13+
}, {
14+
"type" : "bugfix",
15+
"description" : "Fix DynamoDB viewer throwing 'ActionGroup should be registered using <group> tag' on IDE start (#5012) (#5120)"
16+
}, {
17+
"type" : "bugfix",
18+
"description" : "Amazon Q: Fix chat syntax highlighting when using several different themes"
19+
} ]
20+
}

.changes/next-release/bugfix-73718954-d059-46a6-a4e1-c5132da073b1.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

.changes/next-release/bugfix-7391344e-e006-4fc0-bea0-0c5ee2db3be0.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

.changes/next-release/feature-3171e147-0136-449d-b5d7-25c176447b86.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

.changes/next-release/feature-f74db7ad-9389-44af-8acb-2d64e9b99427.json

Lines changed: 0 additions & 4 deletions
This file was deleted.

.github/CODEOWNERS

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ codemodernizer/ @aws/elastic-gumby
55
codetransform/ @aws/elastic-gumby
66
codewhisperer/ @aws/codewhisperer-team
77

8-
mynah-ui/ @aws/dexp
9-
mynah-ui/package.json @aws/dexp @aws/elastic-gumby @aws/earlybird @aws/codewhisperer-team
10-
mynah-ui/package-lock.json @aws/dexp @aws/elastic-gumby @aws/earlybird @aws/codewhisperer-team
8+
mynah-ui/ @aws/flare
9+
mynah-ui/package.json @aws/flare @aws/elastic-gumby @aws/earlybird @aws/codewhisperer-team
10+
mynah-ui/package-lock.json @aws/flare @aws/elastic-gumby @aws/earlybird @aws/codewhisperer-team
1111

1212
# nested within chat/, so needs to be after to take precedence
1313
amazonqFeatureDev/ @aws/earlybird

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# _3.44_ (2024-12-04)
2+
- **(Feature)** Amazon Q: UI improvements to chat: New splash loader animation, initial streaming card animation, improved button colours
3+
- **(Feature)** Amazon Q: Navigate through prompt history by using the up/down arrows
4+
- **(Bug Fix)** Fix issue where Amazon Q Code Transform is unable to start
5+
- **(Bug Fix)** Fix DynamoDB viewer throwing 'ActionGroup should be registered using <group> tag' on IDE start ([#5012](https://github.com/aws/aws-toolkit-jetbrains/issues/5012)) ([#5120](https://github.com/aws/aws-toolkit-jetbrains/issues/5120))
6+
- **(Bug Fix)** Amazon Q: Fix chat syntax highlighting when using several different themes
7+
18
# _3.43_ (2024-12-03)
29
- **(Feature)** `/review` in Q chat to scan your code for vulnerabilities and quality issues, and generate fixes
310
- **(Feature)** `/test` in Q chat to generate unit tests for java and python

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.44-SNAPSHOT
5+
toolkitVersion=3.45-SNAPSHOT
66

77
# Publish Settings
88
publishToken=

plugins/amazonq/mynah-ui/src/mynah-ui/ui/connector.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -542,6 +542,9 @@ export class Connector {
542542
case 'codetest':
543543
this.codeTestChatConnector.onFormButtonClick(tabId, messageId ?? '', action)
544544
break
545+
case 'codetransform':
546+
this.codeTransformChatConnector.onFormButtonClick(tabId, action)
547+
break
545548
case 'doc':
546549
this.docChatConnector.onFormButtonClick(tabId, action)
547550
break

0 commit comments

Comments
 (0)