Skip to content

Commit 427c209

Browse files
authored
Merge branch 'main' into tele_diagnostics
2 parents 75feee0 + 98254a2 commit 427c209

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
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" : "increase /review timeout"
4+
}

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

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -103,40 +103,40 @@ object IdeVersions {
103103
Profile(
104104
name = "2025.1",
105105
gateway = ProductProfile(
106-
sdkVersion = "251.23774-EAP-CANDIDATE-SNAPSHOT",
106+
sdkVersion = "251.23774.441-CUSTOM-SNAPSHOT",
107107
bundledPlugins = listOf("org.jetbrains.plugins.terminal")
108108
),
109109
community = ProductProfile(
110-
sdkVersion = "251.23774.109-EAP-SNAPSHOT",
110+
sdkVersion = "2025.1",
111111
bundledPlugins = commonPlugins + listOf(
112112
"com.intellij.java",
113113
"com.intellij.gradle",
114114
"org.jetbrains.idea.maven",
115115
),
116116
marketplacePlugins = listOf(
117-
"PythonCore:251.23774.109",
118-
"Docker:251.23774.109"
117+
"PythonCore:251.23774.460",
118+
"Docker:251.23774.466"
119119
)
120120
),
121121
ultimate = ProductProfile(
122-
sdkVersion = "251.23774.109-EAP-SNAPSHOT",
122+
sdkVersion = "2025.1",
123123
bundledPlugins = commonPlugins + listOf(
124124
"JavaScript",
125125
"JavaScriptDebugger",
126126
"com.intellij.database",
127127
"com.jetbrains.codeWithMe",
128128
),
129129
marketplacePlugins = listOf(
130-
"Pythonid:251.23774.109",
131-
"org.jetbrains.plugins.go:251.23774.109",
130+
"Pythonid:251.23774.460",
131+
"org.jetbrains.plugins.go:251.23774.435",
132132
)
133133
),
134134
rider = RiderProfile(
135-
sdkVersion = "2025.1-EAP8-SNAPSHOT",
135+
sdkVersion = "2025.1",
136136
bundledPlugins = commonPlugins,
137137
netFrameworkTarget = "net472",
138138
rdGenVersion = "2025.1.1",
139-
nugetVersion = " 2025.1.0-eap08"
139+
nugetVersion = " 2025.1.0"
140140
)
141141
),
142142
).associateBy { it.name }

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ object CodeWhispererConstants {
7070
// Code scan feature constants
7171
val ISSUE_HIGHLIGHT_TEXT_ATTRIBUTES = TextAttributes(null, null, JBColor.YELLOW, EffectType.WAVE_UNDERSCORE, Font.PLAIN)
7272
const val CODE_SCAN_ISSUE_TITLE_MAX_LENGTH = 60
73-
const val DEFAULT_CODE_SCAN_TIMEOUT_IN_SECONDS: Long = 60 * 10 // 10 minutes
73+
const val DEFAULT_CODE_SCAN_TIMEOUT_IN_SECONDS: Long = 60 * 15 // 15 minutes
7474
const val DEFAULT_PAYLOAD_LIMIT_IN_BYTES: Long = 1 * 1024 * 1024 * 1024 // 1GB
7575
const val CODE_SCAN_POLLING_INTERVAL_IN_SECONDS: Long = 1
7676
const val FILE_SCAN_INITIAL_POLLING_INTERVAL_IN_SECONDS: Long = 10

0 commit comments

Comments
 (0)