From a76be14b0062fefa36ccba87fd48720d6cf000c6 Mon Sep 17 00:00:00 2001 From: Dolph Flynn <96876199+DolphFlynn@users.noreply.github.com> Date: Sun, 19 Apr 2026 12:56:20 +0100 Subject: [PATCH 1/2] Release 2.6.1. --- CHANGELOG.md | 4 ++++ README.md | 9 ++++----- build.gradle.kts | 2 +- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ec4295..73cacca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)). diff --git a/README.md b/README.md index b93a9e2..6782381 100644 --- a/README.md +++ b/README.md @@ -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) 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). @@ -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) diff --git a/build.gradle.kts b/build.gradle.kts index f87f0e8..b732e79 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -4,7 +4,7 @@ plugins { } group = "com.blackberry" -version = "2.6" +version = "2.6.1" description = "jwt-editor" repositories { From 8d8035bd543890c9a2f2922dddcc012030c7a3d5 Mon Sep 17 00:00:00 2001 From: Dolph Flynn <96876199+DolphFlynn@users.noreply.github.com> Date: Sun, 19 Apr 2026 12:57:46 +0100 Subject: [PATCH 2/2] Fix link pointing to release. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6782381..eead6dd 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Additionally it facilitates several well-known attacks against JWT implementatio ## Recent Changes -The last release was tagged [2.6.1](https://github.com/DolphFlynn/jwt-editor/releases/tag/2.6) on 2026-04-19 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: - Fix classloader issue with the BouncyCastle (Thanks to [@b0x-Protector](https://github.com/b0x-Protector) for reporting this). - Small UI improvements.