Skip to content

Commit 88fa983

Browse files
fix(deps): update dependency io.quarkus.platform:quarkus-bom to v3.9.1 (#248)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [io.quarkus.platform:quarkus-bom](https://togithub.com/quarkusio/quarkus-platform) | `3.8.3` -> `3.9.1` | [![age](https://developer.mend.io/api/mc/badges/age/maven/io.quarkus.platform:quarkus-bom/3.9.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/io.quarkus.platform:quarkus-bom/3.9.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/io.quarkus.platform:quarkus-bom/3.8.3/3.9.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/io.quarkus.platform:quarkus-bom/3.8.3/3.9.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>quarkusio/quarkus-platform (io.quarkus.platform:quarkus-bom)</summary> ### [`v3.9.1`](https://togithub.com/quarkusio/quarkus-platform/compare/3.8.3...3.9.1) [Compare Source](https://togithub.com/quarkusio/quarkus-platform/compare/3.8.3...3.9.1) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/agile-lab-dev/whitefox). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNjkuMiIsInVwZGF0ZWRJblZlciI6IjM3LjI2OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 40a30ad commit 88fa983

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ org.gradle.caching=true
44
org.gradle.parallel=true
55
quarkusPlatformArtifactId=quarkus-bom
66
quarkusPlatformGroupId=io.quarkus.platform
7-
quarkusPlatformVersion=3.8.3
7+
quarkusPlatformVersion=3.9.1
88
quarkusPluginId=io.quarkus
9-
quarkusPluginVersion=3.8.3
9+
quarkusPluginVersion=3.9.1
1010
org.gradle.jvmargs=-Xmx2g -XX:MaxMetaspaceSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8

server/app/src/main/java/io/whitefox/api/server/auth/WhitefoxHttpAuthenticator.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import io.quarkus.security.identity.request.AnonymousAuthenticationRequest;
88
import io.quarkus.security.spi.runtime.AuthenticationFailureEvent;
99
import io.quarkus.security.spi.runtime.AuthenticationSuccessEvent;
10+
import io.quarkus.vertx.http.runtime.HttpBuildTimeConfig;
1011
import io.quarkus.vertx.http.runtime.security.HttpAuthenticationMechanism;
1112
import io.quarkus.vertx.http.runtime.security.HttpAuthenticator;
1213
import io.smallrye.mutiny.Uni;
@@ -44,6 +45,7 @@ public WhitefoxHttpAuthenticator(
4445
Event<AuthenticationFailureEvent> authFailureEvent,
4546
Event<AuthenticationSuccessEvent> authSuccessEvent,
4647
BeanManager beanManager,
48+
HttpBuildTimeConfig httpBuildTimeConfig,
4749
Instance<HttpAuthenticationMechanism> httpAuthenticationMechanism,
4850
Instance<IdentityProvider<?>> providers,
4951
@ConfigProperty(name = "quarkus.security.events.enabled") boolean securityEventsEnabled) {
@@ -52,6 +54,7 @@ public WhitefoxHttpAuthenticator(
5254
authFailureEvent,
5355
authSuccessEvent,
5456
beanManager,
57+
httpBuildTimeConfig,
5558
httpAuthenticationMechanism,
5659
providers,
5760
securityEventsEnabled);

0 commit comments

Comments
 (0)