File tree 2 files changed +3
-2
lines changed
src/main/java/org/hypertrace/core/grpcutils/context
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ dependencies {
13
13
api(platform(" io.grpc:grpc-bom:1.50.0" ))
14
14
implementation(" io.grpc:grpc-core" )
15
15
16
- implementation(" com.auth0:java-jwt:3.19.1 " )
17
- implementation(" com.auth0:jwks-rsa:0.21.1 " )
16
+ implementation(" com.auth0:java-jwt:4.4.0 " )
17
+ implementation(" com.auth0:jwks-rsa:0.22.0 " )
18
18
implementation(" com.google.guava:guava:31.1-jre" )
19
19
implementation(" org.slf4j:slf4j-api:1.7.36" )
20
20
Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ public Optional<String> getEmail() {
82
82
public Optional <JwtClaim > getClaim (String claimName ) {
83
83
return Optional .of (jwt .getClaim (claimName ))
84
84
.filter (Predicate .not (Claim ::isNull ))
85
+ .filter (Predicate .not (Claim ::isMissing ))
85
86
.map (DefaultJwtClaim ::new );
86
87
}
87
88
You can’t perform that action at this time.
0 commit comments