Skip to content

Commit 03c667c

Browse files
committed
Merge remote-tracking branch 'upstream/main' into query-chat-timeout
2 parents 2e7ee12 + 1b6357a commit 03c667c

File tree

106 files changed

+4107
-494
lines changed

Some content is hidden

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

106 files changed

+4107
-494
lines changed

.changes/3.35.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"date" : "2024-10-29",
3+
"version" : "3.35",
4+
"entries" : [ {
5+
"type" : "feature",
6+
"description" : "Remove read-only mode on before diff of code changes generated by agent"
7+
}, {
8+
"type" : "feature",
9+
"description" : "Provide more frequent updates about code changes made by agent"
10+
}, {
11+
"type" : "feature",
12+
"description" : "Amazon Q /dev: Add stop generation action"
13+
}, {
14+
"type" : "feature",
15+
"description" : "Added inline chat support. Select some code and hit ⌘+I on Mac or Ctrl+I on Windows to start"
16+
}, {
17+
"type" : "bugfix",
18+
"description" : "Fix pointless busy loop in Amazon Q wasting CPU cycles (#5000)"
19+
}, {
20+
"type" : "bugfix",
21+
"description" : "Update `@workspace` index when adding or deleting a file"
22+
}, {
23+
"type" : "deprecation",
24+
"description" : "An upcoming release will remove support for JetBrains Gateway version 2024.2 and for IDEs based on the 2023.3 platform"
25+
} ]
26+
}

.changes/3.36.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"date" : "2024-10-30",
3+
"version" : "3.36",
4+
"entries" : [ {
5+
"type" : "bugfix",
6+
"description" : "Fix inline chat default key binding not working on windows and linux"
7+
} ]
8+
}

.changes/3.37.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"date" : "2024-10-31",
3+
"version" : "3.37",
4+
"entries" : [ {
5+
"type" : "bugfix",
6+
"description" : "Amazon Q /dev: Fix the issue resulting in the first request per conversation to /dev failing"
7+
}, {
8+
"type" : "bugfix",
9+
"description" : "Fix inline chat shortcut hint breaking text selection on remote editors"
10+
} ]
11+
}

.changes/3.38.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"date" : "2024-11-07",
3+
"version" : "3.38",
4+
"entries" : [ {
5+
"type" : "bugfix",
6+
"description" : "Improve the position that inline chat shortcut hint is shown in editor"
7+
}, {
8+
"type" : "bugfix",
9+
"description" : "Improve `@workspace` index start stop strategy"
10+
}, {
11+
"type" : "bugfix",
12+
"description" : "Fixed an issue where Q inline won't appear in JetBrains remote 2024.2+"
13+
} ]
14+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "bugfix",
3+
"description" : "Fix poor inline suggestions from Amazon Q caused by improperly formatted supplemental context"
4+
}

.changes/next-release/bugfix-e0e23b25-959c-46ef-a9f9-13283cff5568.json

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

.changes/next-release/deprecation-a09c7f8f-fb8c-4f71-8039-f86faf4c7273.json

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

.changes/next-release/feature-c5c4cc47-126a-4236-82af-70743a805ca8.json

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

.github/workflows/prerelease.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ jobs:
2020
- uses: actions/checkout@v4
2121
with:
2222
fetch-depth: 0
23-
- name: remove unwanted dependencies
24-
run: |
25-
sudo rm -rf /usr/share/dotnet
26-
sudo rm -rf /opt/ghc
27-
sudo rm -rf "/usr/local/share/boost"
28-
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
23+
- name: Maximize Build Space
24+
if: runner.os == 'Linux'
25+
uses: jlumbroso/free-disk-space@main
26+
with:
27+
tool-cache: false
28+
large-packages: false
2929
- uses: actions/setup-java@v4
3030
with:
3131
distribution: 'corretto'

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# _3.38_ (2024-11-07)
2+
- **(Bug Fix)** Improve the position that inline chat shortcut hint is shown in editor
3+
- **(Bug Fix)** Improve `@workspace` index start stop strategy
4+
- **(Bug Fix)** Fixed an issue where Q inline won't appear in JetBrains remote 2024.2+
5+
6+
# _3.37_ (2024-10-31)
7+
- **(Bug Fix)** Amazon Q /dev: Fix the issue resulting in the first request per conversation to /dev failing
8+
- **(Bug Fix)** Fix inline chat shortcut hint breaking text selection on remote editors
9+
10+
# _3.36_ (2024-10-30)
11+
- **(Bug Fix)** Fix inline chat default key binding not working on windows and linux
12+
13+
# _3.35_ (2024-10-29)
14+
- **(Feature)** Remove read-only mode on before diff of code changes generated by agent
15+
- **(Feature)** Provide more frequent updates about code changes made by agent
16+
- **(Feature)** Amazon Q /dev: Add stop generation action
17+
- **(Feature)** Added inline chat support. Select some code and hit ⌘+I on Mac or Ctrl+I on Windows to start
18+
- **(Bug Fix)** Fix pointless busy loop in Amazon Q wasting CPU cycles ([#5000](https://github.com/aws/aws-toolkit-jetbrains/issues/5000))
19+
- **(Bug Fix)** Update `@workspace` index when adding or deleting a file
20+
- **(Deprecation)** An upcoming release will remove support for JetBrains Gateway version 2024.2 and for IDEs based on the 2023.3 platform
21+
122
# _3.34_ (2024-10-22)
223
- **(Bug Fix)** Fix issue where the plugin can't read SSO tokens from disk / always returns 'Unable to load client registration'
324

0 commit comments

Comments
 (0)