@vertx/auth-jwt
Advanced tools
Comparing version 3.7.1 to 3.8.0
@@ -24,2 +24,7 @@ /* | ||
/** | ||
* Factory interface for creating JWT based {@link io.vertx.ext.auth.AuthProvider} instances. | ||
* @author Paulo Lopes | ||
* | ||
*/ | ||
export abstract class JWTAuth extends AuthProvider { | ||
@@ -26,0 +31,0 @@ /** |
@@ -22,2 +22,7 @@ /* | ||
/** | ||
* Options describing how an JWT Auth should behave. | ||
* @author <a href="mailto:plopes@redhat.com">Paulo Lopes</a> | ||
* | ||
*/ | ||
export class JWTAuthOptions { | ||
@@ -58,2 +63,8 @@ | ||
/** | ||
* Options describing how an JWT KeyStore should behave. | ||
* @deprecated Keystores are very opinionated and do not properly represent a correct key, please use PEM files or JWKs | ||
* @author <a href="mailto:plopes@redhat.com">Paulo Lopes</a> | ||
* | ||
*/ | ||
export class JWTKeyStoreOptions { | ||
@@ -76,2 +87,12 @@ | ||
/** | ||
* Options related to creation of new tokens. | ||
* | ||
* If any expiresInMinutes, audience, subject, issuer are not provided, there is no default. | ||
* The jwt generated won't include those properties in the payload. | ||
* | ||
* Generated JWTs will include an iat claim by default unless noTimestamp is specified. | ||
* @author Paulo Lopes | ||
* | ||
*/ | ||
export class JWTOptions { | ||
@@ -78,0 +99,0 @@ |
{ | ||
"name" : "@vertx/auth-jwt", | ||
"description" : "Generated Eclipse Vert.x bindings for 'vertx-auth-jwt'", | ||
"version" : "3.7.1", | ||
"version" : "3.8.0", | ||
"license" : "Apache License 2.0", | ||
@@ -10,7 +10,7 @@ "public" : true, | ||
"artifactId" : "vertx-auth-jwt", | ||
"version" : "3.7.1" | ||
"version" : "3.8.0" | ||
}, | ||
"dependencies" : { | ||
"@vertx/core" : "3.7.1", | ||
"@vertx/auth-common" : "3.7.1" | ||
"@vertx/core" : "3.8.0", | ||
"@vertx/auth-common" : "3.8.0" | ||
}, | ||
@@ -17,0 +17,0 @@ "main" : "index.js", |
10550
226
+ Added@vertx/auth-common@3.8.0(transitive)
+ Added@vertx/core@3.8.0(transitive)
- Removed@vertx/auth-common@3.7.1(transitive)
- Removed@vertx/core@3.7.1(transitive)
Updated@vertx/auth-common@3.8.0
Updated@vertx/core@3.8.0