Commit Graph

1063 Commits

Author SHA1 Message Date
Jakub Chrzanowski
157a841828 Dependencies - upgrade org.jetbrains.intellij.platform to 2.16.0 2026-05-04 10:20:49 +02:00
Jakub Chrzanowski
e1ce759bf2 Remove changelog configuration from build.gradle.kts as it is preconfigured now in the IntelliJ Platform Gradle Plugin 2026-05-04 10:19:38 +02:00
Jakub Chrzanowski
0a76b1e2cd Remove settings.gradle.kts for cleanup of unused project configuration. 2026-04-27 12:42:55 +02:00
Karol Lewandowski
74c204dde6 Fix the log path in Run Tests.run.xml 2026-04-22 16:39:18 +02:00
Jakub Chrzanowski
1bb64acbc7 Update Run Plugin configuration to fix sandbox log file path 2026-04-22 16:39:18 +02:00
Jakub Chrzanowski
8ee489c76c Add "Unreleased" section to CHANGELOG.md 2026-04-20 10:33:52 +02:00
Jakub Chrzanowski
ce889c7140 Update README, changelog for 2.5.0 release and clean up template documentation and configuration. 2026-04-20 10:23:59 +02:00
Jakub Chrzanowski
97937b3488 2.5.0 2.5.0 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
0cb186e94b Remove codecov.yml configuration file to clean up unused CI settings. 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
1abc56e093 Remove runIdeForUiTests obsolete task from build.gradle.kts. 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
979fc454b7 Refactor changelog property usage to simplify version mapping logic. 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
c4a85898dc Remove libs.versions.toml and inline plugin versions in build scripts for simplified dependency management. 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
d8988053c6 Inline junit dependency version in build.gradle.kts and remove it from libs.versions.toml. 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
3924430b5d Remove platformVersion property and inline its value in build.gradle.kts for cleaner configuration. 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
e3d900af04 Remove (empty) plugin and module dependency configurations from build.gradle.kts and gradle.properties. 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
5b67753cd3 Remove intellijPlatform.publishing.channels configuration from build.gradle.kts. 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
d7e12a963c Remove Kover configuration, dependencies, and related workflow steps. 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
a82d9d01c6 Remove Qodana configuration, dependencies, and related workflow steps. 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
9c943a86bb Remove gradleVersion property and wrapper configuration as Gradle Wrapper should be updated with ./gradlew wrapper --gradle-version=9.4.1 && ./gradlew wrapper 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
c967983660 Simplify property configuration: replace pluginGroup and pluginName with group and version in gradle.properties, and update diff filtering in workflow. 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
751695bbbe Remove opentest4j dependency from build.gradle.kts and libs.versions.toml, redundant since IntelliJ Platform 251+ 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
d201397233 Suppress unstable API usage warning in settings.gradle.kts. 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
b336f6d360 Remove redundant comments and pluginVersion configuration from gradle.properties. 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
ade9797ef7 Remove redundant pluginName property from gradle.properties and build.gradle.kts as it is already set in the plugin.xml 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
e03e117085 Remove redundant pluginVersion configuration from build.gradle.kts. 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
48ee494d0a Remove redundant pluginSinceBuild property from gradle.properties. 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
d1c6d61cdf Update version property in gradle.properties and remove redundant pluginVersion configuration from build.gradle.kts 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
f3f8b981b0 Simplify property configuration by removing redundant pluginGroup reference from build.gradle.kts and updating gradle.properties. 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
da27f164ac Remove redundant java plugin declaration from build.gradle.kts 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
5418f45bbc Remove redundant intellijPlatform.pluginVerification configuration from build.gradle.kts 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
8ca671a0ad Remove redundant intellijPlatform.publishing.token configuration from build.gradle.kts 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
62abb48806 Remove redundant intellijPlatform.signing configuration from build.gradle.kts 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
8d9fceaac4 Remove redundant intellijPlatform.pluginConfiguration.ideaVersion configuration from build.gradle.kts 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
01a50d2635 Remove redundant Kotlin JVM toolchain configuration from build.gradle.kts 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
02aff2ae6a CHANGELOG update 2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
b4667f9284 Migrate IntelliJ Platform repository configuration to settings.gradle.kts 2026-04-17 14:37:11 +02:00
ilya
cbbad2beac fix: handle empty releases list in draft cleanup step (#578)
When a new project has no releases yet, `gh api repos/{owner}/{repo}/releases`
returns empty JSON, causing `xargs` to fail with exit code 123:
"unexpected end of JSON input". 
use xargs -r instead of explicit empty check for draft cleanup
2026-04-17 14:37:11 +02:00
Jakub Chrzanowski
e5cd90b3aa CHANGELOG update 2026-03-25 11:50:12 +01:00
Jakub Chrzanowski
97c77b4638 Upgrade platformVersion to 2025.2.6.1 and Gradle to 9.4.1. 2.4.1 2026-03-20 15:44:58 +01:00
Jakub Chrzanowski
e26e5ee1d0 Dependencies - upgrade Kotlin to 2.3.20, Kover to 0.9.7, Qodana to 2025.3.2, and platformVersion to 2025.2.6.1. 2026-03-20 15:44:58 +01:00
Jakub Chrzanowski
6ca3688f3b Upgrade Gradle Wrapper to 9.4.1 2026-03-20 15:44:58 +01:00
Jakub Chrzanowski
2404fa935c Dependencies - upgrade org.jetbrains.intellij.platform to 2.13.1 2026-03-20 15:44:57 +01:00
Jakub Chrzanowski
5c6cef48fe 2.4.1 2026-02-03 14:14:13 +01:00
Jakub Chrzanowski
fca913d51f Upgrade Gradle version to 9.3.1. 2026-02-03 14:14:13 +01:00
Jakub Chrzanowski
b2fb9a48a4 Dependencies - upgrade org.jetbrains.kotlin.jvm to 2.3.0 2026-02-03 14:14:13 +01:00
Jakub Chrzanowski
a53ee61258 Dependencies - upgrade org.jetbrains.kotlinx.kover to 0.9.5 2026-02-03 14:14:13 +01:00
Jakub Chrzanowski
fee3121230 Dependencies - upgrade org.jetbrains.qodana to 2025.3.1 2026-02-03 14:14:13 +01:00
Jakub Chrzanowski
3dee025bce Dependencies - upgrade org.jetbrains.intellij.platform to 2.11.0 2026-02-03 14:14:13 +01:00
Jakub Chrzanowski
49e90d9894 Upgrade Gradle Wrapper to 9.3.1 2026-02-03 14:14:13 +01:00
Jakub Chrzanowski
c1958c1372 CHANGELOG update 2026-02-03 14:14:13 +01:00