jjwt
jjwt copied to clipboard
JWE support
This does not yet support JWKs. That'll be next.
Coverage remained the same at 100.0% when pulling 16d8866e2a146042eccf27f656cc4734520da205 on jwe into 1839ebf5e8004336b018c9923bd09ee7deebdf39 on master.
is the JWE support added yet? or will it be in future release
🛠 Lift Auto-fix
Some of the Lift findings in this PR can be automatically fixed. You can download and apply these changes in your local project directory of your branch to review the suggestions before committing.[^1]
# Download the patch
curl https://lift.sonatype.com/api/patch/github.com/jwtk/jjwt/279.diff -o lift-autofixes.diff
# Apply the patch with git
git apply lift-autofixes.diff
# Review the changes
git diff
Want it all in a single command? Open a terminal in your project's directory and copy and paste the following command:
curl https://lift.sonatype.com/api/patch/github.com/jwtk/jjwt/279.diff | git apply
Once you're satisfied, commit and push your changes in your project. [^1]: You can preview the patch by opening the patch URL in the browser.
Hello !
That's a great job ! Do you have a timeline or a target for a release containing this ?
@selliera not quiet yet, but we don't like things to be in the main branch long before we release them, as documentation doesn't match the currently-available release. There are 2 things remaining:
- Making
Claims
andHeader
instances immutable, and - Making
aud
aList<String>
per your submitted issue (thank you for that!)