Skip to content

Commit 6ab83bf

Browse files
Bump malcontent version to v1.17.4 (#1226)
Co-authored-by: Bump Version <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 3d4142a commit 6ab83bf

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

pkg/compile/compile_test.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,9 @@ func TestCacheFileSize(t *testing.T) {
254254
t.Fatalf("Failed to stat cache file: %v", err)
255255
}
256256

257-
if fi.Size() < 50000000 {
257+
// yara-x 1.10.0 reduced compiled ruleset sizes
258+
// originally 50000000
259+
if fi.Size() < 30000000 {
258260
t.Fatalf("Cache file seems too small: %d bytes", fi.Size())
259261
}
260262

pkg/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
)
77

88
const (
9-
ID string = "v1.17.3"
9+
ID string = "v1.17.4"
1010
)
1111

1212
// Check if the build info contains a version.

0 commit comments

Comments
 (0)