Skip to content

Commit e73186e

Browse files
committed
Merge remote-tracking branch 'origin/main' into rli/delete-awscaps-provider
Conflicts: plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/AmazonQLspService.kt
2 parents ae6c87e + 08edb5d commit e73186e

File tree

116 files changed

+2235
-1212
lines changed

Some content is hidden

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

116 files changed

+2235
-1212
lines changed

.changes/3.77.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"date" : "2025-06-16",
3+
"version" : "3.77",
4+
"entries" : [ ]
5+
}

.changes/3.78.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"date" : "2025-06-18",
3+
"version" : "3.78",
4+
"entries" : [ {
5+
"type" : "feature",
6+
"description" : "Add model selection feature"
7+
} ]
8+
}

.changes/3.79.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"date" : "2025-06-25",
3+
"version" : "3.79",
4+
"entries" : [ {
5+
"type" : "feature",
6+
"description" : "/transform: run all builds client-side"
7+
}, {
8+
"type" : "feature",
9+
"description" : "Amazon Q Chat: Pin context items in chat and manage workspace rules"
10+
} ]
11+
}

.changes/3.80.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"date" : "2025-06-26",
3+
"version" : "3.80",
4+
"entries" : [ {
5+
"type" : "feature",
6+
"description" : "Amazon Q inline: now display completions much more consistently at the user's current caret position"
7+
}, {
8+
"type" : "feature",
9+
"description" : "Amazon Q inline: now Q completions can co-exist with JetBrains' native IntelliSense completions, when both are showing, press Tab or your customized key shortcuts to accept Q completions and press Enter to accept IntelliSense completions."
10+
}, {
11+
"type" : "feature",
12+
"description" : "Amazon Q inline: now shows in a JetBrains native UX of popup and inlay text style"
13+
}, {
14+
"type" : "feature",
15+
"description" : "Amazon Q inline: The new UX allows configurable shortcuts for accepting completions and navigating through completions. *Caveat: for users using the previous versions, if you have configured your custom key shortcuts for the Q inline before, you will have to re-configure them again in Amazon Q settings due to a change in the keymap actions."
16+
} ]
17+
}

.changes/3.81.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"date" : "2025-06-27",
3+
"version" : "3.81",
4+
"entries" : [ ]
5+
}

.changes/3.82.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"date" : "2025-07-03",
3+
"version" : "3.82",
4+
"entries" : [ {
5+
"type" : "bugfix",
6+
"description" : "Skip inline completion when deleting characters"
7+
} ]
8+
}

.changes/3.83.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"date" : "2025-07-07",
3+
"version" : "3.83",
4+
"entries" : [ {
5+
"type" : "bugfix",
6+
"description" : "Fix auto-suggestions being shown when suggestions are paused"
7+
} ]
8+
}

.github/workflows/generateUpdatesXml.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,10 @@
1515
buildRegex = r'.*(\d{3}).zip'
1616
# given plugin-amazonq-3.39-SNAPSHOT-1731096007-241.zip,
1717
# capture 3.39-SNAPSHOT-1731096007-241 in group 1
18-
versionRegex = r'.*?\-(\d.*-\d{3})\.zip'
18+
# or
19+
# given plugin-amazonq-3.39-SNAPSHOT-1731096007.241.zip,
20+
# capture 3.39-SNAPSHOT-1731096007.241 in group 1
21+
versionRegex = r'.*?\-(\d.*[.-]\d{3})\.zip$'
1922
for asset in data['assets']:
2023
name = asset['name']
2124
if ('plugin-amazonq' in name):

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# _3.83_ (2025-07-07)
2+
- **(Bug Fix)** Fix auto-suggestions being shown when suggestions are paused
3+
4+
# _3.82_ (2025-07-03)
5+
- **(Bug Fix)** Skip inline completion when deleting characters
6+
7+
# _3.81_ (2025-06-27)
8+
9+
# _3.80_ (2025-06-26)
10+
- **(Feature)** Amazon Q inline: now display completions much more consistently at the user's current caret position
11+
- **(Feature)** Amazon Q inline: now Q completions can co-exist with JetBrains' native IntelliSense completions, when both are showing, press Tab or your customized key shortcuts to accept Q completions and press Enter to accept IntelliSense completions.
12+
- **(Feature)** Amazon Q inline: now shows in a JetBrains native UX of popup and inlay text style
13+
- **(Feature)** Amazon Q inline: The new UX allows configurable shortcuts for accepting completions and navigating through completions. *Caveat: for users using the previous versions, if you have configured your custom key shortcuts for the Q inline before, you will have to re-configure them again in Amazon Q settings due to a change in the keymap actions.
14+
15+
# _3.79_ (2025-06-25)
16+
- **(Feature)** /transform: run all builds client-side
17+
- **(Feature)** Amazon Q Chat: Pin context items in chat and manage workspace rules
18+
19+
# _3.78_ (2025-06-18)
20+
- **(Feature)** Add model selection feature
21+
22+
# _3.77_ (2025-06-16)
23+
124
# _3.76_ (2025-06-12)
225
- **(Feature)** Add MCP support for Amazon Q chat
326

CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ reported the issue. Please try to include as much information as you can. Detail
2424

2525
* [Java 21](https://docs.aws.amazon.com/corretto/latest/corretto-21-ug/downloads-list.html)
2626
* [Git](https://git-scm.com/)
27+
* If you run into a build issue on first build, ensure Git is configured to handle longer paths (common with Windows - run command as Admin): `git config --system core.longpaths true`
2728
* .NET 6
2829
* In theory, you can use a higher version, however we build with .NET 6 in CI
2930
* macOS steps:

0 commit comments

Comments
 (0)