Update jjwt.version to v0.12.7 #173
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.12.6
->0.12.7
0.12.6
->0.12.7
0.12.6
->0.12.7
Release Notes
jwtk/jjwt (io.jsonwebtoken:jjwt-jackson)
v0.12.7
Compare Source
This patch release:
Adds a new Maven BOM, useful for multi-module projects. See Issue 967.
Allows the
JwtParserBuilder
to have empty nested algorithm collections, effectively disabling the parser's associated feature:zip()
nested collection disables JWT decompression.sig()
nested collection disables JWS mac/signature verification (i.e. all JWSs will be unsupported/rejected).enc()
orkey()
nested collections disables JWE decryption (i.e. all JWEs will be unsupported/rejected)See Issue 996.
Fixes bug 961 where
JwtParserBuilder
nested collection builders were not correctly replacing algorithms with the same id.Ensures a
JwkSet
'skeys
collection is no longer entirely secret/redacted by default. This was an overzealous default that was unnecessarily restrictive; thekeys
collection itself should always be public, and each individual key within should determine which fields should be redacted when printed. See Issue 976.Improves performance slightly by ensuring all
jjwt-api
utility methods that create*Builder
instances (Jwts.builder()
,Jwts.parserBuilder()
,Jwks.builder()
, etc) no longer use reflection.Instead,
static
factories are created via reflection only once during initialjjwt-api
classloading, and then*Builder
s are created via standard instantiation using thenew
operator thereafter. This also benefits certain environments that may not have idealClassLoader
implementations (e.g. Tomcat in some cases).NOTE: because this changes which classes are loaded via reflection, any environments that must explicitly reference reflective class names (e.g. GraalVM applications) will need to be updated to reflect the new factory class names.
See Issue 988.
Upgrades the Gson dependency to
2.11.0
Upgrades the BouncyCastle dependency to
1.78.1
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR has been generated by Renovate Bot.