Skip to content

Commit 974fb40

Browse files
committed
Merge remote-tracking branch 'origin/main' into rli/certs-tweak
2 parents 3fee35a + 35f05f9 commit 974fb40

File tree

10 files changed

+23
-12
lines changed

10 files changed

+23
-12
lines changed

.changes/3.75.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"date" : "2025-06-11",
3+
"version" : "3.75",
4+
"entries" : [ {
5+
"type" : "feature",
6+
"description" : "Support for Amazon Q Builder ID paid tier"
7+
} ]
8+
}

.changes/next-release/feature-6de3f384-aa3b-47fe-b895-d41ef23ed6da.json

Lines changed: 0 additions & 4 deletions
This file was deleted.
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "feature",
3+
"description" : "Add MCP support for Amazon Q chat"
4+
}

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# _3.75_ (2025-06-11)
2+
- **(Feature)** Support for Amazon Q Builder ID paid tier
3+
14
# _3.74_ (2025-06-05)
25
- **(Feature)** Agentic coding experience: Amazon Q can now write code and run shell commands on your behalf
36
- **(Bug Fix)** Support full Unicode range in inline chat panel on Windows

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.75-SNAPSHOT
5+
toolkitVersion=3.76-SNAPSHOT
66

77
# Publish Settings
88
publishToken=

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class AwsServerCapabilitiesProvider {
3434
),
3535
history = true,
3636
export = true,
37-
mcpServers = false
37+
mcpServers = true
3838
)
3939
}
4040
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ fun createExtendedClientMetadata(project: Project): ExtendedClientMetadata {
6262
awsClientCapabilities = AwsClientCapabilities(
6363
q = DeveloperProfiles(
6464
developerProfiles = true,
65-
mcp = false
65+
mcp = true
6666
),
6767
window = WindowSettings(
6868
showSaveFileDialog = true

plugins/amazonq/shared/jetbrains-community/src/software/aws/toolkits/jetbrains/services/amazonq/lsp/model/aws/chat/Conversations.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ data class FilterOption(
2727
val options: List<Option>? = null,
2828
) {
2929
data class Option(
30-
val value: String? = null,
31-
val label: String? = null,
30+
val value: String,
31+
val label: String,
3232
)
3333
}
3434

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ class TextDocumentServiceHandler(
7171
realTimeEdit(event)
7272
}
7373
}
74-
file.putUserData(KEY_REAL_TIME_EDIT_LISTENER, listener)
7574
ApplicationManager.getApplication().runReadAction {
76-
FileDocumentManager.getInstance().getDocument(file)?.addDocumentListener(listener, this)
75+
FileDocumentManager.getInstance().getDocument(file)?.addDocumentListener(listener)
76+
file.putUserData(KEY_REAL_TIME_EDIT_LISTENER, listener)
7777
}
7878
}
7979
AmazonQLspService.executeIfRunning(project) { languageServer ->

plugins/toolkit/jetbrains-core/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ PatchPluginXmlTask.register(project)
5656
val patchPluginXml = tasks.named<PatchPluginXmlTask>("patchPluginXml")
5757
patchPluginXml.configure {
5858
val buildSuffix = if (!project.isCi()) "+${buildMetadata()}" else ""
59-
pluginVersion.set("$toolkitVersion-${ideProfile.shortName}$buildSuffix")
59+
pluginVersion.set("$toolkitVersion.${ideProfile.shortName}$buildSuffix")
6060
}
6161

6262
tasks.jar {

0 commit comments

Comments
 (0)