Skip to content

Commit 0eb8894

Browse files
fix(muzzle): temporarily excluded broken versions. (#11377)
fix(muzzle): temporarily excluded broken versions. Co-authored-by: alexey.kuznetsov <alexey.kuznetsov@datadoghq.com>
1 parent 86eece6 commit 0eb8894

2 files changed

Lines changed: 27 additions & 2 deletions

File tree

  • dd-java-agent/instrumentation

dd-java-agent/instrumentation/confluent-schema-registry/confluent-schema-registry-4.1/build.gradle

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,20 @@ muzzle {
88
versions = "[4.1.0,)"
99
// broken POMs: depend on non-existent org.eclipse.jetty:jetty-bom:9.4.59
1010
// can be fixed after https://github.com/confluentinc/kafka-connect-storage-common/issues/468 is resolved
11-
skipVersions += ['7.4.14', '7.5.13', '7.6.10', '7.7.8', '7.8.7', '7.9.6']
11+
skipVersions += [
12+
'7.4.14',
13+
'7.4.15',
14+
'7.5.13',
15+
'7.5.14',
16+
'7.6.10',
17+
'7.6.11',
18+
'7.7.8',
19+
'7.7.9',
20+
'7.8.7',
21+
'7.8.8',
22+
'7.9.6',
23+
'7.9.7'
24+
]
1225
excludeDependency "org.codehaus.jackson:jackson-mapper-asl" // missing on some releases
1326
assertInverse = true
1427
}

dd-java-agent/instrumentation/kafka/kafka-connect-0.11/build.gradle

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,28 @@ muzzle {
99
skipVersions += [
1010
'7.4.14-ce',
1111
'7.4.14-ccs',
12+
'7.4.15-ce',
13+
'7.4.15-ccs',
1214
'7.5.13-ce',
1315
'7.5.13-ccs',
16+
'7.5.14-ce',
17+
'7.5.14-ccs',
1418
'7.6.10-ce',
1519
'7.6.10-ccs',
20+
'7.6.11-ce',
21+
'7.6.11-ccs',
1622
'7.7.8-ce',
1723
'7.7.8-ccs',
24+
'7.7.9-ce',
25+
'7.7.9-ccs',
1826
'7.8.7-ce',
1927
'7.8.7-ccs',
28+
'7.8.8-ce',
29+
'7.8.8-ccs',
2030
'7.9.6-ce',
21-
'7.9.6-ccs'
31+
'7.9.6-ccs',
32+
'7.9.7-ce',
33+
'7.9.7-ccs'
2234
]
2335
excludeDependency "io.confluent.cloud:*"
2436
excludeDependency "io.confluent.observability:*"

0 commit comments

Comments
 (0)