Skip to content

Commit

Permalink
Allow access to the JWT header from the JWT object.
Browse files Browse the repository at this point in the history
  • Loading branch information
robotdan committed Mar 23, 2022
1 parent 95371ff commit 9dca1a3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGES
@@ -1,5 +1,9 @@
FusionAuth JWT Changes

Changes in 5.1.0

* Added access to the JWT header in the JWT object.

Changes in 5.0.0

* Correct JWT header to be a String, Object map to support embedded JWK.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -41,23 +41,23 @@ We are very interested in compensating anyone that can identify a security relat
<dependency>
<groupId>io.fusionauth</groupId>
<artifactId>fusionauth-jwt</artifactId>
<version>5.0.0</version>
<version>5.1.0</version>
</dependency>
```

### Gradle
```groovy
implementation 'io.fusionauth:fusionauth-jwt:5.0.0'
implementation 'io.fusionauth:fusionauth-jwt:5.1.0'
```

### Gradle Kotlin
```kotlin
implementation("io.fusionauth:fusionauth-jwt:5.0.0")
implementation("io.fusionauth:fusionauth-jwt:5.1.0")
```

### Savant
```groovy
dependency(id: "io.fusionauth:fusionauth-jwt:5.0.0")
dependency(id: "io.fusionauth:fusionauth-jwt:5.1.0")
```

For others see [https://search.maven.org](https://search.maven.org/artifact/io.fusionauth/fusionauth-jwt/4.0.1/jar).
Expand Down

0 comments on commit 9dca1a3

Please sign in to comment.