Skip to content
Merged

Rel #231

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# Changelog
## [2.6.1](https://github.com/DolphFlynn/jwt-editor/releases/tag/2.6.1) 2026-04-19
- Fix classloader issue with the BouncyCastle (Thanks to [@b0x-Protector](https://github.com/b0x-Protector) for reporting this).
- Small UI improvements.

## [2.6](https://github.com/DolphFlynn/jwt-editor/releases/tag/2.6) 2025-04-05
- Add Tokens view and ability to store interesting JWS within project file.
- Display JWS TimeClaims in default time zone (Thanks again to [@Nirusu](https://github.com/Nirusu)).
Expand Down
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,10 @@ Additionally it facilitates several well-known attacks against JWT implementatio


## Recent Changes
The last release was tagged [2.6](https://github.com/DolphFlynn/jwt-editor/releases/tag/2.6) on 2025-04-05 and included
The last release was tagged [2.6.1](https://github.com/DolphFlynn/jwt-editor/releases/tag/2.6.1) on 2026-04-19 and included
the following changes:
- Add Tokens view and ability to store interesting JWS within project file.
- Display JWS TimeClaims in default time zone (Thanks again to [@Nirusu](https://github.com/Nirusu)).
- Remember last used signing key within Attack dialogs.
- Fix classloader issue with the BouncyCastle (Thanks to [@b0x-Protector](https://github.com/b0x-Protector) for reporting this).
- Small UI improvements.

The complete changelog, which also includes prior versions, can be found [here](https://github.com/DolphFlynn/jwt-editor/blob/main/CHANGELOG.md).

Expand Down Expand Up @@ -123,7 +122,7 @@ This option is automatically enabled if it is detected that the original JWT did
*JWT Editor* can be built from source.
* Ensure that Java JDK 21 or newer is installed
* From root of project, run the command `./gradlew jar`
* This should place the JAR file `jwt-editor-2.6.jar` within the `build/libs` directory
* This should place the JAR file `jwt-editor-2.6.1.jar` within the `build/libs` directory
* This can be loaded into Burp Suite by navigating to the `Extensions` tab, `Installed` sub-tab, clicking `Add` and loading the JAR file
* This BApp is using the newer Montoya API so it's best to use the latest version of Burp Suite (try the earlier adopter channel if there are issues with the latest stable release)

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

group = "com.blackberry"
version = "2.6"
version = "2.6.1"
description = "jwt-editor"

repositories {
Expand Down