From df719f96aef722aab2aef0bb465c39f6c2340e27 Mon Sep 17 00:00:00 2001 From: "omer.roth" Date: Sun, 30 Aug 2026 11:36:42 +0300 Subject: [PATCH] CM-71772: increase required CLI version to 3.21.0 Concurrent CLI processes spawned by parallel scans corrupt ~/.cycode/credentials.yaml, which leaves the user in an auth loop. That is fixed in cycode-cli 3.21.0, but the plugin pinned 3.12.2, so no user could receive the fix. Co-Authored-By: Claude Opus 5 (1M context) --- CHANGELOG.md | 4 ++++ gradle.properties | 2 +- src/main/kotlin/com/cycode/plugin/Consts.kt | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dddb4bd..7872bd6 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ ## [Unreleased] +## [3.1.1] - 2026-08-30 + +- Increase required CLI version to 3.21.0 + ## [3.1.0] - 2026-04-07 - Add support for IntelliJ IDEA 2026.1 diff --git a/gradle.properties b/gradle.properties index 3a2e58b..02dcdb4 100755 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ pluginGroup = com.cycode.plugin pluginName = Cycode pluginRepositoryUrl = https://github.com/cycodehq/intellij-platform-plugin # SemVer format -> https://semver.org -pluginVersion = 3.1.0 +pluginVersion = 3.1.1 # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html pluginSinceBuild = 241 diff --git a/src/main/kotlin/com/cycode/plugin/Consts.kt b/src/main/kotlin/com/cycode/plugin/Consts.kt index cd6326c..03efcaa 100644 --- a/src/main/kotlin/com/cycode/plugin/Consts.kt +++ b/src/main/kotlin/com/cycode/plugin/Consts.kt @@ -20,7 +20,7 @@ class Consts { companion object { val PLUGIN_PATH = PathManager.getPluginsPath() + "/cycode-intellij-platform-plugin" val DEFAULT_CLI_PATH = getDefaultCliPath() - const val REQUIRED_CLI_VERSION = "3.12.2" + const val REQUIRED_CLI_VERSION = "3.21.0" const val CYCODE_DOMAIN = "cycode.com"