Skip to content

Commit 5728e17

Browse files
authored
Simplify muzzle config for protobuf instru
We were manually excluding all versions at the bottom f the range. Might as well start it from the actually supported version, it makes it more readable.
1 parent ec92bff commit 5728e17

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

dd-java-agent/instrumentation/protobuf/build.gradle

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ muzzle {
88
pass {
99
group = "com.google.protobuf"
1010
module = "protobuf-java"
11-
versions = "[2.0.0,)"
12-
skipVersions = ["2.0.1", "2.0.3", "2.1.0", "2.2.0", "2.3.0", "2.4.0a", "2.4.1"]
11+
versions = "[2.5.0,)"
1312
assertInverse = true
1413
}
1514
}

0 commit comments

Comments
 (0)