Skip to content

Commit 6aeff1f

Browse files
authored
CM-37466 - Remove forgotten "coming soon" from SAST (#72)
1 parent 65f107d commit 6aeff1f

File tree

5 files changed

+10
-8
lines changed

5 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44

55
## [Unreleased]
66

7+
## [1.9.1] - 2024-06-25
8+
9+
- Remove forgotten "coming soon" from SAST
10+
711
## [1.9.0] - 2024-06-24
812

913
- Add SAST support
@@ -89,6 +93,8 @@
8993

9094
The first public release of the plugin.
9195

96+
[1.9.1]: https://github.com/cycodehq/intellij-platform-plugin/releases/tag/v1.9.1
97+
9298
[1.9.0]: https://github.com/cycodehq/intellij-platform-plugin/releases/tag/v1.9.0
9399

94100
[1.8.0]: https://github.com/cycodehq/intellij-platform-plugin/releases/tag/v1.8.0

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ The extension provides functionalities such as:
1515
* Scanning your code for exposed secrets, passwords, tokens, keys, and other credentials.
1616
* Scanning your code for open-source package`s vulnerabilities.
1717
* Scanning your code for Infrastructure as Code (IaC).
18+
* Scanning your code for Code Security (SAST).
1819
* Company’s Custom Remediation Guidelines - If your company has set custom remediation guidelines via the Cycode portal, you'll see a field for "Company Guidelines" that contains those guidelines.
1920
* Running a new scan from your IDE even before committing the code.
2021
* Triggering a scan automatically whenever a file is saved.
@@ -23,8 +24,6 @@ The extension provides functionalities such as:
2324
* Removing a detected secret or ignoring it by secret value, rule (type) or by path.
2425
* Upgrading a detected vulnerable package or ignoring it by rule (type) or by path.
2526

26-
Coming soon: Code Security (SAST).
27-
2827
## Installation
2928

3029
To install the Cycode IntelliJ Platform Plugin, follow these steps:

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pluginGroup = com.cycode.plugin
44
pluginName = Cycode
55
pluginRepositoryUrl = https://github.com/cycodehq/intellij-platform-plugin
66
# SemVer format -> https://semver.org
7-
pluginVersion = 1.9.0
7+
pluginVersion = 1.9.1
88

99
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1010
pluginSinceBuild = 211.1

src/main/kotlin/com/cycode/plugin/components/toolWindow/components/treeView/nodes/RootNodes.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,8 @@ class RootNodes {
6565
// the order of adding nodes is important
6666
top.add(secretNode)
6767
top.add(scaNode)
68-
top.add(iacNode)
69-
70-
// temporary at the bottom because of "coming soon"
7168
top.add(sastNode)
69+
top.add(iacNode)
7270
}
7371

7472
fun getScanTypeNode(scanType: CliScanType): DefaultMutableTreeNode {

src/main/resources/messages/CycodeBundle.properties

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ settingsExperimentalSectionTitle=Experimental settings
7777
settingsCliAutoManagedCheckbox=Enable executable auto-management
7878
settingsScanOnSaveCheckbox=Enable Scan on Save
7979
settingsScaSyncFlowCheckbox=Enable SCA sync flow
80-
settingsSastSupportCheckbox=Enable SAST support
8180
settingsCliPathLabel=Path to executable:
8281
settingsCliApiUrlLabel=API URL:
8382
settingsCliAppUrlLabel=APP URL:
@@ -91,7 +90,7 @@ iacDisplayName=Infrastructure As Code
9190
fileNodeSummary={0} vulnerabilities
9291
secretNodeSummary=
9392
scaNodeSummary=
94-
sastNodeSummary=(coming soon)
93+
sastNodeSummary=
9594
iacNodeSummary=
9695
# tree view node context menu items
9796
runOption=Run

0 commit comments

Comments
 (0)