From bf46d22d4f0f2a285a8d25715399f6258c2486a8 Mon Sep 17 00:00:00 2001 From: Jay DeLuca Date: Tue, 12 Aug 2025 13:14:21 -0400 Subject: [PATCH] Fix hibernate-reactive testLatestDeps --- docs/supported-libraries.md | 2 +- .../hibernate-reactive-1.0/javaagent/build.gradle.kts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/supported-libraries.md b/docs/supported-libraries.md index cc87ac34c04e..2f3d829cf519 100644 --- a/docs/supported-libraries.md +++ b/docs/supported-libraries.md @@ -75,7 +75,7 @@ These are the supported libraries and frameworks: | [Guava ListenableFuture](https://guava.dev/releases/snapshot/api/docs/com/google/common/util/concurrent/ListenableFuture.html) | 10.0+ | [opentelemetry-guava-10.0](../instrumentation/guava-10.0/library) | Context propagation | | [GWT](http://www.gwtproject.org/) | 2.0+ | N/A | [RPC Server Spans] | | [Hibernate](https://github.com/hibernate/hibernate-orm) | 3.3+ | N/A | none | -| [Hibernate Reactive](https://hibernate.org/reactive) | 1.0+ | N/A | none | +| [Hibernate Reactive](https://hibernate.org/reactive) | 1.0+ (not including 4.0+ yet) | N/A | none | | [HikariCP](https://github.com/brettwooldridge/HikariCP) | 3.0+ | [opentelemetry-hikaricp-3.0](../instrumentation/hikaricp-3.0/library) | [Database Pool Metrics] | | [HttpURLConnection](https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/net/HttpURLConnection.html) | Java 8+ | N/A | [HTTP Client Spans], [HTTP Client Metrics] | | [Hystrix](https://github.com/Netflix/Hystrix) | 1.4+ | N/A | none | diff --git a/instrumentation/hibernate/hibernate-reactive-1.0/javaagent/build.gradle.kts b/instrumentation/hibernate/hibernate-reactive-1.0/javaagent/build.gradle.kts index 21d9621fb450..0d6d2f1a0efb 100644 --- a/instrumentation/hibernate/hibernate-reactive-1.0/javaagent/build.gradle.kts +++ b/instrumentation/hibernate/hibernate-reactive-1.0/javaagent/build.gradle.kts @@ -6,7 +6,7 @@ muzzle { pass { group.set("org.hibernate.reactive") module.set("hibernate-reactive-core") - versions.set("(,)") + versions.set("(,4)") assertInverse.set(true) } } @@ -46,7 +46,7 @@ testing { dependencies { implementation("org.testcontainers:testcontainers") if (latestDepTest) { - implementation("org.hibernate.reactive:hibernate-reactive-core:latest.release") + implementation("org.hibernate.reactive:hibernate-reactive-core:3.+") // documented limitation implementation("io.vertx:vertx-pg-client:4.+") } else { implementation("org.hibernate.reactive:hibernate-reactive-core:2.0.0.Final")