File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
src/main/kotlin/com/cycode/plugin
components/toolWindow/components/cycodeActionToolBar Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 44
55## [ Unreleased]
66
7- ## [ 1.6.0] - 2024-04-XX
7+ ## [ 1.6.0] - 2024-04-16
88
99- Add Infrastructure as Code (IaC) support
1010- Add Secrets Violation Card
1111- Add IaC Violation Card
1212- Add icons for file nodes in the tree view
1313- Add a full path of file nodes in the tree view
14+ - Fix filter by info severity
1415
1516## [ 1.5.0] - 2024-03-13
1617
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ class Consts {
2121 companion object {
2222 val PLUGIN_PATH = PathManager .getPluginsPath() + " /cycode-intellij-platform-plugin"
2323 val DEFAULT_CLI_PATH = getDefaultCliPath()
24- const val REQUIRED_CLI_VERSION = " 1.9.3 "
24+ const val REQUIRED_CLI_VERSION = " 1.9.4 "
2525
2626 const val CLI_GITHUB_ORG = " cycodehq"
2727 const val CLI_GITHUB_REPO = " cycode-cli"
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ class CycodeActionToolbar {
2121 add(FilterBySeverityAction .create(contentTab, " High" ))
2222 add(FilterBySeverityAction .create(contentTab, " Medium" ))
2323 add(FilterBySeverityAction .create(contentTab, " Low" ))
24+ add(FilterBySeverityAction .create(contentTab, " Info" ))
2425 addSeparator()
2526 add(ClearAction .create(contentTab))
2627 addSeparator()
You can’t perform that action at this time.
0 commit comments