Update dependency io.jsonwebtoken:jjwt-jackson to v0.13.0 #23
Reference in New Issue
Block a user
Delete Branch "renovate/io.jsonwebtoken-jjwt-jackson-0.x"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
0.12.6->0.13.0Release Notes
jwtk/jjwt (io.jsonwebtoken:jjwt-jackson)
v0.13.0Compare Source
This is the last minor JJWT release branch that will support Java 7. Any necessary emergency bug fixes will be fixed in subsequent
0.13.xpatch releases, but all new development, including Java 8 compatible changes, will be in the next minor (0.14.0) release.All future JJWT major and minor versions (
0.14.0and later) will require Java 8 or later.This
0.13.0minor release has only one change:JacksonDeserializer(ObjectMapper objectMapper, Map<String, Class<?>> claimTypeMap)constructor is nowpublicfor those that want register a claimstype converter on their own specified
ObjectMapperinstance. See Issue 914.v0.12.7Compare Source
This patch release:
Adds a new Maven BOM, useful for multi-module projects. See Issue 967.
Allows the
JwtParserBuilderto 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
JwtParserBuildernested collection builders were not correctly replacing algorithms with the same id.Ensures a
JwkSet'skeyscollection is no longer entirely secret/redacted by default. This was an overzealous default that was unnecessarily restrictive; thekeyscollection 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-apiutility methods that create*Builderinstances (Jwts.builder(),Jwts.parserBuilder(),Jwks.builder(), etc) no longer use reflection.Instead,
staticfactories are created via reflection only once during initialjjwt-apiclassloading, and then*Builders are created via standard instantiation using thenewoperator thereafter. This also benefits certain environments that may not have idealClassLoaderimplementations (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.0Upgrades the BouncyCastle dependency to
1.78.1Configuration
📅 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 becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.