Skip to content

Commit b71b8ef

Browse files
authored
Deprecation notification for Gateway 231 & IDEs 222 (#3785)
1 parent 55bc321 commit b71b8ef

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed
Lines changed: 4 additions & 0 deletions
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 2023.1 and for for IDEs based on the 2022.2 platform"
4+
}

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

Lines changed: 2 additions & 2 deletions
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 = 222
59-
const val MIN_VERSION_HUMAN = "2022.2"
58+
const val MIN_VERSION = 223
59+
const val MIN_VERSION_HUMAN = "2022.3"
6060

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class GatewayDeprecationNotice : AppLifecycleListener {
2929
}
3030

3131
companion object {
32-
const val MIN_VERSION = 231
33-
const val MIN_VERSION_HUMAN = "2023.1"
32+
const val MIN_VERSION = 232
33+
const val MIN_VERSION_HUMAN = "2023.2"
3434
}
3535
}

0 commit comments

Comments
 (0)