We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d4142a commit 6ab83bfCopy full SHA for 6ab83bf
pkg/compile/compile_test.go
@@ -254,7 +254,9 @@ func TestCacheFileSize(t *testing.T) {
254
t.Fatalf("Failed to stat cache file: %v", err)
255
}
256
257
- if fi.Size() < 50000000 {
+ // yara-x 1.10.0 reduced compiled ruleset sizes
258
+ // originally 50000000
259
+ if fi.Size() < 30000000 {
260
t.Fatalf("Cache file seems too small: %d bytes", fi.Size())
261
262
pkg/version/version.go
@@ -6,7 +6,7 @@ import (
6
)
7
8
const (
9
- ID string = "v1.17.3"
+ ID string = "v1.17.4"
10
11
12
// Check if the build info contains a version.
0 commit comments