Skip to content

Commit 98e8b3c

Browse files
Merge branch 'main' into codeReview
2 parents 683944b + 7608ac0 commit 98e8b3c

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed
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 incompatible version warning for AWS Toolkit in 2025.2"
4+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "feature",
3+
"description" : "Amazon Q supports admin control for MCP servers to restrict MCP server usage"
4+
}

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ val patchPluginXml = tasks.named<PatchPluginXmlTask>("patchPluginXml")
5757
patchPluginXml.configure {
5858
val buildSuffix = if (!project.isCi()) "+${buildMetadata()}" else ""
5959
pluginVersion.set("$toolkitVersion.${ideProfile.shortName}$buildSuffix")
60+
sinceBuild.set(ideProfile.sinceVersion)
61+
untilBuild.set(ideProfile.untilVersion)
6062
}
6163

6264
tasks.jar {
@@ -79,6 +81,8 @@ tasks.integrationTest {
7981
val gatewayPluginXml = tasks.register<PatchPluginXmlTask>("pluginXmlForGateway") {
8082
val buildSuffix = if (!project.isCi()) "+${buildMetadata()}" else ""
8183
pluginVersion.set("GW-$toolkitVersion-${ideProfile.shortName}$buildSuffix")
84+
sinceBuild.set(ideProfile.sinceVersion)
85+
untilBuild.set(ideProfile.untilVersion)
8286
}
8387

8488
val patchGatewayPluginXml by tasks.registering {

0 commit comments

Comments
 (0)