Skip to content

Commit 4acde6e

Browse files
authored
deps: deprecate IDE 241 / GW 243 (#5505)
1 parent a044d3e commit 4acde6e

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "deprecation",
3+
"description" : "An upcoming release will remove support for JetBrains Gateway version 2024.3 and for IDEs based on the 2024.1 platform"
4+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"type" : "feature",
3+
"description" : "Add support for 2025.1"
4+
}

plugins/toolkit/jetbrains-core/src/software/aws/toolkits/jetbrains/core/notification/MinimumVersionChange.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ class MinimumVersionChange @JvmOverloads constructor(isUnderTest: Boolean = fals
5555
}
5656

5757
companion object {
58-
const val MIN_VERSION = 241
59-
const val MIN_VERSION_HUMAN = "2024.1"
58+
const val MIN_VERSION = 242
59+
const val MIN_VERSION_HUMAN = "2024.2"
6060

6161
// Used by tests to make sure the prompt never shows up
6262
const val SKIP_PROMPT = "aws.suppress_deprecation_prompt"

plugins/toolkit/jetbrains-gateway/src/software/aws/toolkits/jetbrains/gateway/GatewayDeprecationNotice.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ class GatewayDeprecationNotice : AppLifecycleListener {
3030
}
3131

3232
companion object {
33-
const val MIN_VERSION = 243
34-
const val MIN_VERSION_HUMAN = "2024.3"
33+
const val MIN_VERSION = 251
34+
const val MIN_VERSION_HUMAN = "2025.1"
3535
}
3636
}

0 commit comments

Comments
 (0)