Skip to content

Commit 43f4a66

Browse files
Merge main into feature/disable-sspc
2 parents 49dafa7 + 22900af commit 43f4a66

File tree

8 files changed

+23
-12
lines changed

8 files changed

+23
-12
lines changed

.changes/3.87.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"date" : "2025-07-30",
3+
"version" : "3.87",
4+
"entries" : [ {
5+
"type" : "bugfix",
6+
"description" : "change to use promptStickyCard to for image verification notification"
7+
}, {
8+
"type" : "bugfix",
9+
"description" : "Suppress IDE error when current editor context is not valid for Amazon Q"
10+
} ]
11+
}

.changes/next-release/bugfix-7ceafecb-844d-46ce-a68d-b28360840ab6.json

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

.changes/next-release/bugfix-846e7004-5426-4f6b-970f-2b9437314b98.json

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

.github/workflows/qodana-check-duplicatedcode.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ jobs:
3434
tool-cache: false
3535
large-packages: false
3636
- name: 'Qodana Scan'
37-
uses: JetBrains/qodana-action@v2024.2.3
37+
uses: JetBrains/qodana-action@v2025.1.1
3838
env:
3939
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
4040
with:
4141
# --config points to the DuplicatedCode-only Qodana config
4242
args:
43-
--config,${{ github.workspace }}/qodana-configs/duplicated-code/qodana.yaml
43+
--config,qodana-configs/duplicated-code/qodana.yaml
4444
cache-default-branch-only: true
4545
# pr-mode off means that the whole repo should be checked for duplicate code, instead of just copy/pastes within the PR
4646
pr-mode: false

.github/workflows/qodana-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
tool-cache: false
3535
large-packages: false
3636
- name: 'Qodana Scan'
37-
uses: JetBrains/qodana-action@v2024.2.3
37+
uses: JetBrains/qodana-action@v2025.1.1
3838
env:
3939
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}
4040
with:

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# _3.87_ (2025-07-30)
2+
- **(Bug Fix)** change to use promptStickyCard to for image verification notification
3+
- **(Bug Fix)** Suppress IDE error when current editor context is not valid for Amazon Q
4+
15
# _3.86_ (2025-07-16)
26
- **(Bug Fix)** - Fixed "Insert to Cursor" button to correctly insert code blocks at the current cursor position in the active file
37

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.87-SNAPSHOT
5+
toolkitVersion=3.88-SNAPSHOT
66

77
# Publish Settings
88
publishToken=

plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/AmazonQLspService.kt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -463,6 +463,7 @@ private class AmazonQServerInstance(private val project: Project, private val cs
463463

464464
val node = if (SystemInfo.isWindows) "node.exe" else "node"
465465
val nodePath = getNodeRuntimePath(artifact.resolve(node))
466+
val emptyFile = Files.createTempFile("empty", null).toAbsolutePath().toString()
466467

467468
val cmd = NodeExePatcher.patch(nodePath)
468469
.withParameters(
@@ -476,6 +477,9 @@ private class AmazonQServerInstance(private val project: Project, private val cs
476477
put("NODE_EXTRA_CA_CERTS", it)
477478
}
478479

480+
put("AWS_CONFIG_FILE", emptyFile)
481+
put("AWS_SHARED_CREDENTIALS_FILE", emptyFile)
482+
479483
// assume default endpoint will pick correct proxy if needed
480484
val qUri = URI(QDefaultServiceConfig.ENDPOINT)
481485
val proxy = JdkProxyProvider.getInstance().proxySelector.select(qUri)

0 commit comments

Comments
 (0)