Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ muzzle {
group = 'io.vertx'
module = 'vertx-mysql-client'
versions = '[3.9.0,4)'
javaVersion = '11'
assertInverse = true
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,13 @@ muzzle {
// 4.1.1 is the first version where PgConnectionFactory is public
// see https://github.com/eclipse-vertx/vertx-sql-client/pull/986
versions = '[4.1.1,5)'
assertInverse = true
}
fail {
group = 'io.vertx'
module = 'vertx-pg-client'
// 4.1.1 is the first version where PgConnectionFactory is public
// see https://github.com/eclipse-vertx/vertx-sql-client/pull/986
versions = '(,4.1.1)'
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ muzzle {
pass {
group = 'io.vertx'
module = 'vertx-pg-client'
versions = '[4.4.2,4.6.0)'
versions = '[4.4.2,)'
assertInverse = true
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ muzzle {
group = 'io.vertx'
module = 'vertx-redis-client'
versions = '[3.9.0,)'
javaVersion = '11'
assertInverse = true
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ muzzle {
group = "io.vertx"
module = "vertx-sql-client"
versions = "[3.9.0,)"
javaVersion = "11"
}
}

Expand Down
3 changes: 2 additions & 1 deletion dd-java-agent/instrumentation/vertx-web-3.9/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ muzzle {
pass {
group = 'io.vertx'
module = "vertx-web"
versions = "[3.8.1,5)"
versions = "[3.8.1,)" // it won't fail on 5+ since won't apply
javaVersion = "11"
assertInverse = true
}
}
Expand Down
3 changes: 2 additions & 1 deletion dd-java-agent/instrumentation/vertx-web-4.0/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ muzzle {
pass {
group = 'io.vertx'
module = "vertx-web"
versions = "[4.0.0,5)"
versions = "[4.0.0,)"
javaVersion = "11"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@amarziali Made a similar change here. Let me know if this is incorrect 🙇‍♂️

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just changed since it seems that advices are not applying for >=5. It looks passing locally now

assertInverse = true
}
}
Expand Down
Loading