Skip to content

Commit 363c8cd

Browse files
authored
CM-35104 - Release v1.6.0 (#60)
1 parent 1de18f6 commit 363c8cd

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@
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

src/main/kotlin/com/cycode/plugin/Consts.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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"

src/main/kotlin/com/cycode/plugin/components/toolWindow/components/cycodeActionToolBar/ActionToolBar.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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()

0 commit comments

Comments
 (0)