Skip to content

Commit 1a98ffe

Browse files
committed
Merge remote-tracking branch 'origin/feature/q-lsp-chat' into manodnyb/addChatOptions
2 parents d90e230 + 3116734 commit 1a98ffe

File tree

16 files changed

+120
-42
lines changed

16 files changed

+120
-42
lines changed

.changes/3.69.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"date" : "2025-04-28",
3+
"version" : "3.69",
4+
"entries" : [ {
5+
"type" : "bugfix",
6+
"description" : "Amazon Q: Fix issue where context menu items are not available after re-opening projects or restarting the IDE"
7+
}, {
8+
"type" : "bugfix",
9+
"description" : "Fix LinkageError while attempting to do Amazon Q inline suggestions in certain environments"
10+
}, {
11+
"type" : "bugfix",
12+
"description" : "Fix issue where user can become stuck because Amazon Q Chat does not show authentication prompt"
13+
}, {
14+
"type" : "removal",
15+
"description" : "Removed support for 2024.1.x IDEs"
16+
}, {
17+
"type" : "removal",
18+
"description" : "Removed support for Gateway 2024.3"
19+
} ]
20+
}

.changes/next-release/bugfix-31222d0f-5ff2-4495-9bf2-e354eabc82c7.json

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

.changes/next-release/bugfix-7c7e1720-545f-4b5e-8d21-511f40fabf38.json

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

.changes/next-release/bugfix-a7fedb6e-13ab-4d6a-a9ea-293b3f533bad.json

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

.changes/next-release/removal-5979b9e4-898d-405a-9fc4-5919bb972a0e.json

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

.changes/next-release/removal-6b54ddb0-1385-4788-a225-ddae6ac958d2.json

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

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# _3.69_ (2025-04-28)
2+
- **(Bug Fix)** Amazon Q: Fix issue where context menu items are not available after re-opening projects or restarting the IDE
3+
- **(Bug Fix)** Fix LinkageError while attempting to do Amazon Q inline suggestions in certain environments
4+
- **(Bug Fix)** Fix issue where user can become stuck because Amazon Q Chat does not show authentication prompt
5+
- **(Removal)** Removed support for 2024.1.x IDEs
6+
- **(Removal)** Removed support for Gateway 2024.3
7+
18
# _3.68_ (2025-04-23)
29
- **(Feature)** Amazon Q: Show visual indicator in status bar if profile selection is needed to continue with Q Inline / Q Chat
310
- **(Feature)** Amazon Q /test: Remove unsupported message for non-java python languages

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.69-SNAPSHOT
5+
toolkitVersion=3.70-SNAPSHOT
66

77
# Publish Settings
88
publishToken=

plugins/amazonq/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ dependencies {
3636
implementation(project(":plugin-amazonq:codewhisperer"))
3737
implementation(project(":plugin-amazonq:mynah-ui"))
3838
implementation(project(":plugin-amazonq:shared"))
39+
implementation(libs.bundles.jackson)
3940
implementation(libs.lsp4j)
4041

4142
testImplementation(project(":plugin-core"))

plugins/amazonq/codewhisperer/jetbrains-community/src/software/aws/toolkits/jetbrains/services/codewhisperer/util/CodeWhispererEndpointCustomizer.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ import software.amazon.awssdk.services.codewhispererruntime.CodeWhispererRuntime
2222
import software.amazon.awssdk.services.codewhispererstreaming.CodeWhispererStreamingAsyncClientBuilder
2323
import software.aws.toolkits.core.ToolkitClientCustomizer
2424
import software.aws.toolkits.core.utils.tryOrNull
25+
import software.aws.toolkits.jetbrains.services.amazonq.profile.QDefaultServiceConfig
2526
import software.aws.toolkits.jetbrains.services.amazonq.profile.QEndpoints
2627
import software.aws.toolkits.jetbrains.settings.CodeWhispererSettings
2728
import java.net.Proxy
@@ -42,7 +43,7 @@ class CodeWhispererEndpointCustomizer : ToolkitClientCustomizer {
4243
if (builder is CodeWhispererRuntimeClientBuilder || builder is CodeWhispererStreamingAsyncClientBuilder) {
4344
val endpoint = tryOrNull { QEndpoints.getQEndpointWithRegion(regionId) }
4445
?.let { URI.create(it) }
45-
?: URI.create(QEndpoints.Q_DEFAULT_SERVICE_CONFIG.ENDPOINT)
46+
?: URI.create(QDefaultServiceConfig.ENDPOINT)
4647
builder
4748
.endpointOverride(endpoint)
4849
.region(Region.of(regionId))

0 commit comments

Comments
 (0)