Skip to content

Commit c83829f

Browse files
jandro996tabgok
andauthored
fix(confluent): temporarily cap confluent and kafka muzzle version (#10780) (#10883)
fix(confluent): temporarily cap confluent muzzle version A recent update in the confluent schema registry introduced jetty-versions which do not exist (9.4.59). There's an upstream PR to fix the issue (confluentinc/kafka-connect-storage-common#468) but while the longer term solution is pursued we are unblocking muzzle tests/main. fix(kafka): temporarily cap confluent muzzle version A recent update in the confluent schema registry introduced jetty-versions which do not exist (9.4.59). There's an upstream PR to fix the issue (confluentinc/kafka-connect-storage-common#468) but while the longer term solution is pursued we are unblocking muzzle tests/main. Co-authored-by: Teague Bick <teague.bick@gmail.com> Co-authored-by: teague.bick <teague.bick@datadoghq.com>
1 parent 73893de commit c83829f

File tree

2 files changed

+17
-0
lines changed
  • dd-java-agent/instrumentation

2 files changed

+17
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ muzzle {
66
group = "io.confluent"
77
module = "kafka-schema-registry-client"
88
versions = "[4.1.0,)"
9+
// broken POMs: depend on non-existent org.eclipse.jetty:jetty-bom:9.4.59
10+
// 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']
912
excludeDependency "org.codehaus.jackson:jackson-mapper-asl" // missing on some releases
1013
assertInverse = true
1114
}

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

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ muzzle {
44
module = "connect-runtime"
55
versions = "[0.11.0.0,)"
66
javaVersion = "17"
7+
// broken POMs: depend on non-existent org.eclipse.jetty:jetty-server:9.4.59
8+
// can be fixed after https://github.com/confluentinc/kafka-connect-storage-common/issues/468 is resolved
9+
skipVersions += [
10+
'7.4.14-ce',
11+
'7.4.14-ccs',
12+
'7.5.13-ce',
13+
'7.5.13-ccs',
14+
'7.6.10-ce',
15+
'7.6.10-ccs',
16+
'7.7.8-ce',
17+
'7.7.8-ccs',
18+
'7.8.7-ce',
19+
'7.8.7-ccs'
20+
]
721
excludeDependency "io.confluent.cloud:*"
822
excludeDependency "io.confluent.observability:*"
923
excludeDependency "io.confluent.secure.compute:*"

0 commit comments

Comments
 (0)