From 0f94eafa74e7910c5af13e9fc50a0d4046e9383c Mon Sep 17 00:00:00 2001 From: Otso Nuortimo Date: Fri, 13 Feb 2026 10:48:36 +0900 Subject: [PATCH 1/3] Add USE_INTROSPECTION access right and update USE_SERVICE --- src/main/java/com/authlete/common/api/AccessRight.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/com/authlete/common/api/AccessRight.java b/src/main/java/com/authlete/common/api/AccessRight.java index 589738723..59a595ed7 100644 --- a/src/main/java/com/authlete/common/api/AccessRight.java +++ b/src/main/java/com/authlete/common/api/AccessRight.java @@ -49,8 +49,10 @@ public enum AccessRight MODIFY_CLIENT(true, true, VIEW_CLIENT), /** can view the details of this service */ VIEW_SERVICE(false, true, VIEW_CLIENT), + /** can use the introspection endpoint */ + USE_INTROSPECTION(false, true), /** can use the non-destructive service API calls (auth endpoint, token endpoint, etc.) */ - USE_SERVICE(false, true, VIEW_SERVICE, VIEW_CLIENT), + USE_SERVICE(false, true, USE_INTROSPECTION, VIEW_SERVICE, VIEW_CLIENT), /** can create new clients on this service */ CREATE_CLIENT(false, true, USE_SERVICE, VIEW_SERVICE, MODIFY_CLIENT, VIEW_CLIENT), /** can modify this service */ From 10cfa5d5c57df7de7666d65209d50c29ba46fb1e Mon Sep 17 00:00:00 2001 From: Otso Nuortimo Date: Fri, 27 Mar 2026 19:53:49 +0900 Subject: [PATCH 2/3] feat: add VIEW_AUDIT_LOG access right --- src/main/java/com/authlete/common/api/AccessRight.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/com/authlete/common/api/AccessRight.java b/src/main/java/com/authlete/common/api/AccessRight.java index 59a595ed7..46f23b54d 100644 --- a/src/main/java/com/authlete/common/api/AccessRight.java +++ b/src/main/java/com/authlete/common/api/AccessRight.java @@ -61,6 +61,8 @@ public enum AccessRight VIEW_DEFAULT_SERVICE(false, false), /** can create additional services */ CREATE_SERVICE(false, false, VIEW_DEFAULT_SERVICE), + /** can view audit logs */ + VIEW_AUDIT_LOG(false, false), /** can delete a specific service */ DELETE_SERVICE(false, true), /** can call administrative functions on the Authlete server */ From 3c5b7fc5baf03bbeaca4a6a5fcec7eeb8030c8c1 Mon Sep 17 00:00:00 2001 From: Otso Nuortimo Date: Fri, 27 Mar 2026 19:53:50 +0900 Subject: [PATCH 3/3] chore: bump version to 4.42-SNAPSHOT-INTERNAL --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7fc1d8799..87cf3cdf4 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.authlete authlete-java-common - 4.42-SNAPSHOT + 4.42-SNAPSHOT-INTERNAL jar ${project.groupId}:${project.artifactId}