diff --git a/bom/application/pom.xml b/bom/application/pom.xml index 0dc8d6e539d00..14f3580111fdf 100644 --- a/bom/application/pom.xml +++ b/bom/application/pom.xml @@ -89,7 +89,7 @@ 3.9 1.14 1.3.4 - 5.4.23.Final + 5.4.24.Final 1.0.0.Alpha11 6.1.6.Final 6.0.0.CR1 diff --git a/integration-tests/hibernate-orm-panache-kotlin/src/main/kotlin/io/quarkus/it/panache/kotlin/TestEndpoint.kt b/integration-tests/hibernate-orm-panache-kotlin/src/main/kotlin/io/quarkus/it/panache/kotlin/TestEndpoint.kt index 85873df6b4d6e..4032f199a1a89 100644 --- a/integration-tests/hibernate-orm-panache-kotlin/src/main/kotlin/io/quarkus/it/panache/kotlin/TestEndpoint.kt +++ b/integration-tests/hibernate-orm-panache-kotlin/src/main/kotlin/io/quarkus/it/panache/kotlin/TestEndpoint.kt @@ -876,7 +876,7 @@ class TestEndpoint { Person.deleteAll() Assertions.assertEquals(0, Person.count()) - val person: Person = makeSavedPerson() + val person: Person = makeSavedPerson("") val trackingPerson = person as SelfDirtinessTracker var dirtyAttributes = trackingPerson.`$$_hibernate_getDirtyAttributes`() diff --git a/integration-tests/hibernate-orm-panache/src/main/java/io/quarkus/it/panache/TestEndpoint.java b/integration-tests/hibernate-orm-panache/src/main/java/io/quarkus/it/panache/TestEndpoint.java index 19e98d2b6dd6e..d82211a080a4e 100644 --- a/integration-tests/hibernate-orm-panache/src/main/java/io/quarkus/it/panache/TestEndpoint.java +++ b/integration-tests/hibernate-orm-panache/src/main/java/io/quarkus/it/panache/TestEndpoint.java @@ -1054,7 +1054,7 @@ private void checkMethod(Class klass, String name, Class returnType, Class public String testModel1() { Assertions.assertEquals(0, Person.count()); - Person person = makeSavedPerson(); + Person person = makeSavedPerson(""); SelfDirtinessTracker trackingPerson = (SelfDirtinessTracker) person; String[] dirtyAttributes = trackingPerson.$$_hibernate_getDirtyAttributes(); diff --git a/integration-tests/hibernate-reactive-panache/src/main/java/io/quarkus/it/panache/reactive/TestEndpoint.java b/integration-tests/hibernate-reactive-panache/src/main/java/io/quarkus/it/panache/reactive/TestEndpoint.java index 22961fa20f0b3..0845080491614 100644 --- a/integration-tests/hibernate-reactive-panache/src/main/java/io/quarkus/it/panache/reactive/TestEndpoint.java +++ b/integration-tests/hibernate-reactive-panache/src/main/java/io/quarkus/it/panache/reactive/TestEndpoint.java @@ -1365,7 +1365,7 @@ public Uni testModel1() { .flatMap(count -> { Assertions.assertEquals(0, count); - return makeSavedPerson(); + return makeSavedPerson(""); }).flatMap(person -> { SelfDirtinessTracker trackingPerson = (SelfDirtinessTracker) person;