From f32ce44f5d73a1fbd68c451ed00b57516ec58693 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 07:15:38 +0000 Subject: [PATCH 1/2] Bump the quarkus group with 5 updates Bumps the quarkus group with 5 updates: | Package | From | To | | --- | --- | --- | | [io.quarkus:quarkus-bom](https://github.com/quarkusio/quarkus) | `3.15.1` | `3.16.0` | | [io.quarkus:quarkus-ide-config](https://github.com/quarkusio/quarkus) | `3.15.1` | `3.16.0` | | io.quarkus:quarkus-maven-plugin | `3.15.1` | `3.16.0` | | [io.quarkiverse.jgit:quarkus-jgit](https://github.com/quarkiverse/quarkus-jgit) | `3.3.0` | `3.3.1` | | [io.quarkiverse.playwright:quarkus-playwright](https://github.com/quarkiverse/quarkus-playwright) | `1.0.0` | `1.1.0` | Updates `io.quarkus:quarkus-bom` from 3.15.1 to 3.16.0 - [Release notes](https://github.com/quarkusio/quarkus/releases) - [Commits](https://github.com/quarkusio/quarkus/compare/3.15.1...3.16.0) Updates `io.quarkus:quarkus-ide-config` from 3.15.1 to 3.16.0 - [Release notes](https://github.com/quarkusio/quarkus/releases) - [Commits](https://github.com/quarkusio/quarkus/compare/3.15.1...3.16.0) Updates `io.quarkus:quarkus-maven-plugin` from 3.15.1 to 3.16.0 Updates `io.quarkiverse.jgit:quarkus-jgit` from 3.3.0 to 3.3.1 - [Release notes](https://github.com/quarkiverse/quarkus-jgit/releases) - [Commits](https://github.com/quarkiverse/quarkus-jgit/compare/3.3.0...3.3.1) Updates `io.quarkiverse.playwright:quarkus-playwright` from 1.0.0 to 1.1.0 - [Release notes](https://github.com/quarkiverse/quarkus-playwright/releases) - [Commits](https://github.com/quarkiverse/quarkus-playwright/compare/1.0.0...1.1.0) Updates `io.quarkus:quarkus-ide-config` from 3.15.1 to 3.16.0 - [Release notes](https://github.com/quarkusio/quarkus/releases) - [Commits](https://github.com/quarkusio/quarkus/compare/3.15.1...3.16.0) Updates `io.quarkus:quarkus-maven-plugin` from 3.15.1 to 3.16.0 --- updated-dependencies: - dependency-name: io.quarkus:quarkus-bom dependency-type: direct:production update-type: version-update:semver-minor dependency-group: quarkus - dependency-name: io.quarkus:quarkus-ide-config dependency-type: direct:production update-type: version-update:semver-minor dependency-group: quarkus - dependency-name: io.quarkus:quarkus-maven-plugin dependency-type: direct:production update-type: version-update:semver-minor dependency-group: quarkus - dependency-name: io.quarkiverse.jgit:quarkus-jgit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: quarkus - dependency-name: io.quarkiverse.playwright:quarkus-playwright dependency-type: direct:development update-type: version-update:semver-minor dependency-group: quarkus - dependency-name: io.quarkus:quarkus-ide-config dependency-type: direct:production update-type: version-update:semver-minor dependency-group: quarkus - dependency-name: io.quarkus:quarkus-maven-plugin dependency-type: direct:production update-type: version-update:semver-minor dependency-group: quarkus ... Signed-off-by: dependabot[bot] --- pom.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 3bcf13d..d6f875a 100644 --- a/pom.xml +++ b/pom.xml @@ -27,7 +27,7 @@ UTF-8 quarkus-bom io.quarkus - 3.15.1 + 3.16.0 999-SNAPSHOT true 3.5.1 @@ -58,7 +58,7 @@ io.quarkiverse.jgit quarkus-jgit - 3.3.0 + 3.3.1 io.quarkiverse.githubapi @@ -88,7 +88,7 @@ io.quarkiverse.playwright quarkus-playwright - 1.0.0 + 1.1.0 org.mvnpm @@ -239,7 +239,7 @@ io.quarkiverse.playwright quarkus-playwright - 1.0.0 + 1.1.0 test From 4124e46f61cb0f0e28cbe2be8e35f30d17aff0ac Mon Sep 17 00:00:00 2001 From: marko-bekhta Date: Mon, 28 Oct 2024 10:11:34 +0100 Subject: [PATCH 2/2] Change the test resource scope --- .../io/quarkus/search/app/testsupport/QuarkusIOSample.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/test/java/io/quarkus/search/app/testsupport/QuarkusIOSample.java b/src/test/java/io/quarkus/search/app/testsupport/QuarkusIOSample.java index 4602627..37f478d 100644 --- a/src/test/java/io/quarkus/search/app/testsupport/QuarkusIOSample.java +++ b/src/test/java/io/quarkus/search/app/testsupport/QuarkusIOSample.java @@ -35,6 +35,7 @@ import io.quarkus.runtime.configuration.ConfigUtils; import io.quarkus.test.common.QuarkusTestResourceConfigurableLifecycleManager; +import io.quarkus.test.common.TestResourceScope; import io.quarkus.test.common.WithTestResource; import org.hibernate.search.util.common.impl.Closer; @@ -500,7 +501,7 @@ private static void add(String branch, Map copyPathToOriginalPat @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) - @WithTestResource(Resource.class) + @WithTestResource(value = Resource.class, scope = TestResourceScope.RESTRICTED_TO_CLASS) public @interface Setup { Class filter() default AllFilterDefinition.class;