Skip to content

Commit e8cdb2d

Browse files
authored
Merge branch 'main' into plaintextfix
2 parents 824fc07 + 10eb92c commit e8cdb2d

File tree

26 files changed

+3743
-2784
lines changed

26 files changed

+3743
-2784
lines changed

.changes/3.61.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"date" : "2025-03-27",
3+
"version" : "3.61",
4+
"entries" : [ {
5+
"type" : "feature",
6+
"description" : "Amazon Q: Moved \"Include suggestions with code references\" setting to General"
7+
}, {
8+
"type" : "feature",
9+
"description" : "Add support for 2025.1"
10+
}, {
11+
"type" : "bugfix",
12+
"description" : "Amazon Q: Attempt to reduce thread pool contention locking IDE caused by `@workspace` making a large number of requests"
13+
}, {
14+
"type" : "deprecation",
15+
"description" : "An upcoming release will remove support for JetBrains Gateway version 2024.3 and for IDEs based on the 2024.1 platform"
16+
} ]
17+
}

.changes/next-release/bugfix-e06391bd-f5ae-4c2a-a102-580d30f3be8d.json

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

.changes/next-release/deprecation-90102050-86a4-4c19-9ecc-70c6e033b949.json

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

.changes/next-release/feature-45f6e6a7-fc5b-4b14-89e2-0d9a2b138c65.json

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

.changes/next-release/feature-c88b1af5-2318-4ca3-903c-a289e5494b1d.json

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

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# _3.61_ (2025-03-27)
2+
- **(Feature)** Amazon Q: Moved "Include suggestions with code references" setting to General
3+
- **(Feature)** Add support for 2025.1
4+
- **(Bug Fix)** Amazon Q: Attempt to reduce thread pool contention locking IDE caused by `@workspace` making a large number of requests
5+
- **(Deprecation)** An upcoming release will remove support for JetBrains Gateway version 2024.3 and for IDEs based on the 2024.1 platform
6+
17
# _3.60_ (2025-03-20)
28
- **(Feature)** AmazonQ /test now displays a concise test plan summary to users.
39
- **(Bug Fix)** Fix inline completion failure due to context length exceeding the threshold

buildSrc/src/main/kotlin/software/aws/toolkits/gradle/intellij/IdeVersions.kt

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,6 @@ object IdeVersions {
100100
),
101101
Profile(
102102
name = "2024.2",
103-
gateway = ProductProfile(
104-
sdkVersion = "242.23726-EAP-CANDIDATE-SNAPSHOT",
105-
bundledPlugins = listOf("org.jetbrains.plugins.terminal")
106-
),
107103
community = ProductProfile(
108104
sdkVersion = "2024.2",
109105
bundledPlugins = commonPlugins + listOf(

buildSrc/src/main/kotlin/toolkit-integration-testing.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,11 @@ extensions.findByType<IntelliJPlatformTestingExtension>()?.let {
7979
task {
8080
integrationTestConfiguration(this)
8181
}
82+
83+
// https://github.com/JetBrains/intellij-platform-gradle-plugin/issues/1844
84+
prepareSandboxTask {
85+
disabledPlugins.add("com.intellij.swagger")
86+
}
8287
}
8388
} ?: run {
8489
val integrationTest by tasks.registering(Test::class, integrationTestConfiguration)

buildSrc/src/main/kotlin/toolkit-intellij-subplugin.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
import org.jetbrains.intellij.platform.gradle.IntelliJPlatformType
55
import org.jetbrains.intellij.platform.gradle.TestFrameworkType
6+
import org.jetbrains.intellij.platform.gradle.tasks.PrepareSandboxTask
67
import software.aws.toolkits.gradle.findFolders
78
import software.aws.toolkits.gradle.intellij.IdeVersions
89
import software.aws.toolkits.gradle.intellij.toolkitIntelliJ
@@ -103,7 +104,8 @@ dependencies {
103104
}
104105
}
105106

106-
tasks.prepareTestSandbox {
107+
// https://github.com/JetBrains/intellij-platform-gradle-plugin/issues/1844
108+
tasks.withType<PrepareSandboxTask>().configureEach {
107109
disabledPlugins.addAll(
108110
"com.intellij.swagger",
109111
"org.jetbrains.plugins.kotlin.jupyter",

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.61-SNAPSHOT
5+
toolkitVersion=3.62-SNAPSHOT
66

77
# Publish Settings
88
publishToken=

0 commit comments

Comments
 (0)