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" : "removal",
"description" : "Removed support for 2024.1.x IDEs"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"type" : "removal",
"description" : "Removed support for Gateway 2024.3"
}
2 changes: 1 addition & 1 deletion .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
matrix:
build_target: [ ':plugin-core:buildPlugin', ':plugin-toolkit:intellij-standalone:buildPlugin', ':plugin-amazonq:buildPlugin' ]
version: [ '2024.1', '2024.2', '2024.3', '2025.1' ]
version: [ '2024.2', '2024.3', '2025.1' ]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
25 changes: 0 additions & 25 deletions .run/Run AWS Toolkit - Community [2024.1].run.xml

This file was deleted.

25 changes: 0 additions & 25 deletions .run/Run AWS Toolkit - Gateway [2024.3].run.xml

This file was deleted.

25 changes: 0 additions & 25 deletions .run/Run AWS Toolkit - Rider [2024.1].run.xml

This file was deleted.

25 changes: 0 additions & 25 deletions .run/Run AWS Toolkit - Ultimate [2024.1].run.xml

This file was deleted.

25 changes: 0 additions & 25 deletions .run/Run All - Community [2024.1].run.xml

This file was deleted.

25 changes: 0 additions & 25 deletions .run/Run All - Rider [2024.1].run.xml

This file was deleted.

25 changes: 0 additions & 25 deletions .run/Run All - Ultimate [2024.1].run.xml

This file was deleted.

25 changes: 0 additions & 25 deletions .run/Run Amazon Q - Community [2024.1].run.xml

This file was deleted.

25 changes: 0 additions & 25 deletions .run/Run Amazon Q - Rider [2024.1].run.xml

This file was deleted.

25 changes: 0 additions & 25 deletions .run/Run Amazon Q - Ultimate [2024.1].run.xml

This file was deleted.

2 changes: 1 addition & 1 deletion .run/generateConfigs.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def write_config(mv: str, ide: IdeVariant, plugin: PluginVariant):
f.write(TEMPLATE.format(plugin = plugin, variant = ide, major_version = mv))

if __name__ == '__main__':
mvs = ["2024.1", "2024.2", "2024.3", "2025.1"]
mvs = ["2024.2", "2024.3", "2025.1"]
ides = [
IdeVariant("Community", "IC"),
IdeVariant("Rider", "RD"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,13 @@ fun Project.ciOnly(block: () -> Unit) {
fun Project.isCi() : Boolean = providers.environmentVariable("CI").isPresent

fun Project.jvmTarget(): Provider<JavaVersion> = withCurrentProfileName {
when (it) {
"2023.3", "2024.1" -> JavaVersion.VERSION_17
else -> JavaVersion.VERSION_21
}
JavaVersion.VERSION_21
}

// https://plugins.jetbrains.com/docs/intellij/using-kotlin.html#stdlib-miscellaneous
fun Project.kotlinTarget(): Provider<String> = withCurrentProfileName {
when (it) {
"2023.3", "2024.1", "2024.2" -> KotlinVersionEnum.KOTLIN_1_9
"2024.2" -> KotlinVersionEnum.KOTLIN_1_9
"2024.3" -> KotlinVersionEnum.KOTLIN_2_0
"2025.1" -> KotlinVersionEnum.KOTLIN_2_1
else -> error("not set")
Expand Down
Loading
Loading