Skip to content

Commit 1eba45f

Browse files
committed
Merge remote-tracking branch 'origin/main' into feature/refactor-telemetry
2 parents 969d28b + fdfc07c commit 1eba45f

File tree

82 files changed

+1167
-424
lines changed

Some content is hidden

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

82 files changed

+1167
-424
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 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+
}

.github/workflows/prerelease.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ on:
99
push:
1010
branches: [ main, feature/* ]
1111

12+
concurrency:
13+
group: ${{ github.workflow }}${{ github.event.pull_request.number || github.ref }}
14+
cancel-in-progress: true
1215

1316
jobs:
1417
generate_artifact_toolkit_standalone:

.github/workflows/q-mega-prerelease.yml

Lines changed: 0 additions & 164 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

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.gradle
22
.intellijPlatform
3+
.kotlin
34
out/
45
target/
56
.idea

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))

0 commit comments

Comments
 (0)