Skip to content

Commit bf46d22

Browse files
committed
Fix hibernate-reactive testLatestDeps
1 parent a260205 commit bf46d22

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/supported-libraries.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ These are the supported libraries and frameworks:
7575
| [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 |
7676
| [GWT](http://www.gwtproject.org/) | 2.0+ | N/A | [RPC Server Spans] |
7777
| [Hibernate](https://github.com/hibernate/hibernate-orm) | 3.3+ | N/A | none |
78-
| [Hibernate Reactive](https://hibernate.org/reactive) | 1.0+ | N/A | none |
78+
| [Hibernate Reactive](https://hibernate.org/reactive) | 1.0+ (not including 4.0+ yet) | N/A | none |
7979
| [HikariCP](https://github.com/brettwooldridge/HikariCP) | 3.0+ | [opentelemetry-hikaricp-3.0](../instrumentation/hikaricp-3.0/library) | [Database Pool Metrics] |
8080
| [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] |
8181
| [Hystrix](https://github.com/Netflix/Hystrix) | 1.4+ | N/A | none |

instrumentation/hibernate/hibernate-reactive-1.0/javaagent/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ muzzle {
66
pass {
77
group.set("org.hibernate.reactive")
88
module.set("hibernate-reactive-core")
9-
versions.set("(,)")
9+
versions.set("(,4)")
1010
assertInverse.set(true)
1111
}
1212
}
@@ -46,7 +46,7 @@ testing {
4646
dependencies {
4747
implementation("org.testcontainers:testcontainers")
4848
if (latestDepTest) {
49-
implementation("org.hibernate.reactive:hibernate-reactive-core:latest.release")
49+
implementation("org.hibernate.reactive:hibernate-reactive-core:3.+") // documented limitation
5050
implementation("io.vertx:vertx-pg-client:4.+")
5151
} else {
5252
implementation("org.hibernate.reactive:hibernate-reactive-core:2.0.0.Final")

0 commit comments

Comments
 (0)