From 67ce99f1ba802a1beec4f07a6c196b75366932b0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 18 Feb 2024 14:19:55 +0000 Subject: [PATCH 1/2] chore(deps): bump vaadin.version from 23.3.32 to 23.3.33 Bumps `vaadin.version` from 23.3.32 to 23.3.33. Updates `com.vaadin:vaadin-bom` from 23.3.32 to 23.3.33 Updates `com.vaadin:vaadin-quarkus-extension` from 23.3.32 to 23.3.33 --- updated-dependencies: - dependency-name: com.vaadin:vaadin-bom dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.vaadin:vaadin-quarkus-extension dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ba249ab6..d025f875 100644 --- a/pom.xml +++ b/pom.xml @@ -43,7 +43,7 @@ UTF-8 2.16.12.Final - 23.3.32 + 23.3.33 1.1.4 1.3.33 From 732cef5bcfea71a09d589c92d8fe44fe4fc67f74 Mon Sep 17 00:00:00 2001 From: Marco Collovati Date: Tue, 20 Feb 2024 19:20:22 +0100 Subject: [PATCH 2/2] test: adapt test assertion to Hilla changes --- .../com/github/mcollovati/quarkus/testing/AbstractTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-tests/smoke-tests/src/test/java/com/github/mcollovati/quarkus/testing/AbstractTest.java b/integration-tests/smoke-tests/src/test/java/com/github/mcollovati/quarkus/testing/AbstractTest.java index 0f9e25a7..d02f4ac7 100644 --- a/integration-tests/smoke-tests/src/test/java/com/github/mcollovati/quarkus/testing/AbstractTest.java +++ b/integration-tests/smoke-tests/src/test/java/com/github/mcollovati/quarkus/testing/AbstractTest.java @@ -73,7 +73,7 @@ protected void openAndWait(String url, Supplier selector) { Selenide.open(url); selector.get().shouldBe(Condition.visible, Duration.ofSeconds(10)); // There should not be typescript errors - $("vite-plugin-checker-error-overlay").shouldNot(Condition.exist); + $("vite-plugin-checker-error-overlay").shouldNotBe(Condition.visible); } protected boolean runHeadless() {