Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type" : "deprecation",
"description" : "An upcoming release will remove support for JetBrains Gateway version 2025.1 and for IDEs based on the 2024.2 platform"
}
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ class MinimumVersionChange @JvmOverloads constructor(isUnderTest: Boolean = fals
}

companion object {
const val MIN_VERSION = 242
const val MIN_VERSION_HUMAN = "2024.2"
const val MIN_VERSION = 243
const val MIN_VERSION_HUMAN = "2024.3"

// Used by tests to make sure the prompt never shows up
const val SKIP_PROMPT = "aws.suppress_deprecation_prompt"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class GatewayDeprecationNotice : AppLifecycleListener {
}

companion object {
const val MIN_VERSION = 251
const val MIN_VERSION_HUMAN = "2025.1"
const val MIN_VERSION = 252
const val MIN_VERSION_HUMAN = "2025.2"
}
}
Loading