From 390a7544cecbb912641091b903e8fb7411060165 Mon Sep 17 00:00:00 2001 From: Martin Lowe <martin.lowe@eclipse-foundation.org> Date: Tue, 8 Apr 2025 14:55:38 -0400 Subject: [PATCH] feat: Update SDK version, add Ef User bypass to always get fresh users This should address the issue we have where the GH handle becomes out of date for long periods of time. --- pom.xml | 2 +- src/main/resources/application.properties | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 00d3d30..625f963 100644 --- a/pom.xml +++ b/pom.xml @@ -20,7 +20,7 @@ <surefire-plugin.version>3.3.1</surefire-plugin.version> <auto-value.version>1.10.4</auto-value.version> <hibernate.version>5.5.6.Final</hibernate.version> - <eclipse-api-version>1.2.3</eclipse-api-version> + <eclipse-api-version>1.2.4</eclipse-api-version> <org.mapstruct.version>1.5.5.Final</org.mapstruct.version> <fdndb-api-version>1.1.2</fdndb-api-version> <sonar.sources>src/main</sonar.sources> diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties index 742eede..04dc27f 100644 --- a/src/main/resources/application.properties +++ b/src/main/resources/application.properties @@ -6,6 +6,9 @@ quarkus.oidc.enabled=false fdndb-api/mp-rest/url=http://foundationdb:8095 %dev.fdndb-api/mp-rest/url=http://localhost:10112 +## Bypass the cache for user objects, as we want to always have latest +eclipse.cache.cache-bypass-classes=org.eclipsefoundation.efservices.api.models.EfUser + eclipse.security.oauth2.filter.enabled=true eclipse.security.oauth2.filter.always-on.enabled=true -- GitLab