Skip to content

Commit c42cdac

Browse files
Merge branch 'main' into samgst/ReauthOnLostClientRegistration
2 parents 72d57fe + 05d7054 commit c42cdac

File tree

53 files changed

+634
-172
lines changed

Some content is hidden

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

53 files changed

+634
-172
lines changed

.changes/3.46.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"date" : "2024-12-17",
3+
"version" : "3.46",
4+
"entries" : [ {
5+
"type" : "feature",
6+
"description" : "/review: Code fix automatically scrolls into view after generation."
7+
}, {
8+
"type" : "feature",
9+
"description" : "Chat: improve font size and line-height in footer (below prompt input field)"
10+
}, {
11+
"type" : "feature",
12+
"description" : "Adds capability to send new context commands to AB groups"
13+
}, {
14+
"type" : "bugfix",
15+
"description" : "Chat: When writing a prompt without sending it, navigating via up/down arrows sometimes deletes the unsent prompt."
16+
}, {
17+
"type" : "bugfix",
18+
"description" : "Fix chat not retaining history when interaction is through onboarding tab type (#5189)"
19+
}, {
20+
"type" : "bugfix",
21+
"description" : "Chat: When navigating to previous prompts, code attachments are sometimes displayed incorrectly"
22+
}, {
23+
"type" : "bugfix",
24+
"description" : "Reduce frequency of system information query"
25+
} ]
26+
}
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 Code Transformation: retry initial project upload on failure"
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" : "/transform: use correct doc link in SQL conversion help message"
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 /dev: Fix issue when files are deleted while preparing context"
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 Code Transformation: allow PostgreSQL as target DB for SQL conversions"
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" : "Align UX text of document generation flow with vs code version"
4+
}

.changes/next-release/bugfix-fef8426e-f36c-425f-af0e-a9811e01e2f5.json

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

.github/workflows/ssm-integ.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ on:
99
branches: [ main, feature/* ]
1010
# PRs only need to run this if the SSM plugin logic has changed
1111
paths:
12+
- '.github/workflows/ssm-integ.yml'
1213
- 'jetbrains-core/src/software/aws/toolkits/jetbrains/services/ssm/SsmPlugin.kt'
1314
- 'jetbrains-core/it/software/aws/toolkits/jetbrains/services/ssm/SsmPluginTest.kt'
1415

@@ -28,10 +29,10 @@ jobs:
2829
run: git config --system core.longpaths true
2930
if: ${{ matrix.os == 'windows-latest' }}
3031
- uses: actions/checkout@v2
31-
- name: Set up JDK 17
32-
uses: actions/setup-java@v1
32+
- uses: actions/setup-java@v4
3333
with:
34-
java-version: 17
34+
distribution: 'corretto'
35+
java-version: '21'
3536
- name: Grant execute permission for gradlew
3637
run: chmod +x gradlew
3738
- name: Build with Gradle

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# _3.46_ (2024-12-17)
2+
- **(Feature)** /review: Code fix automatically scrolls into view after generation.
3+
- **(Feature)** Chat: improve font size and line-height in footer (below prompt input field)
4+
- **(Feature)** Adds capability to send new context commands to AB groups
5+
- **(Bug Fix)** Chat: When writing a prompt without sending it, navigating via up/down arrows sometimes deletes the unsent prompt.
6+
- **(Bug Fix)** Fix chat not retaining history when interaction is through onboarding tab type ([#5189](https://github.com/aws/aws-toolkit-jetbrains/issues/5189))
7+
- **(Bug Fix)** Chat: When navigating to previous prompts, code attachments are sometimes displayed incorrectly
8+
- **(Bug Fix)** Reduce frequency of system information query
9+
110
# _3.45_ (2024-12-10)
211
- **(Feature)** Add acknowledgement button for Amazon Q Chat disclaimer
312
- **(Bug Fix)** Chosing cancel on sign out confirmation now cancels the sign out and does not delete profiles from ~/.aws/config ([#5167](https://github.com/aws/aws-toolkit-jetbrains/issues/5167))

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.46-SNAPSHOT
5+
toolkitVersion=3.47-SNAPSHOT
66

77
# Publish Settings
88
publishToken=

0 commit comments

Comments
 (0)