Update module github.com/golang-jwt/jwt/v4 to v5 - autoclosed #8327
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.
Note
Mend has cancelled the proposed renaming of the Renovate GitHub app being renamed to
mend[bot].This notice will be removed on 2025-10-07.
This PR contains the following updates:
v4.5.2->v5.3.0Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
golang-jwt/jwt (github.com/golang-jwt/jwt/v4)
v5.3.0Compare Source
This release is almost identical to to
v5.2.3but now correctly indicates Go 1.21 as minimum requirement.What's Changed
Full Changelog: golang-jwt/jwt@v5.2.3...v5.3.0
v5.2.3Compare Source
What's Changed
New Contributors
Full Changelog: golang-jwt/jwt@v5.2.2...v5.2.3
v5.2.2Compare Source
What's Changed
jwt.Parseexample to usejwt.WithValidMethodsby @mattt in #425New Contributors
Full Changelog: golang-jwt/jwt@v5.2.1...v5.2.2
v5.2.1Compare Source
What's Changed
New Contributors
Full Changelog: golang-jwt/jwt@v5.2.0...v5.2.1
v5.2.0Compare Source
What's Changed
NewValidatorby @oxisto in #349New Contributors
Full Changelog: golang-jwt/jwt@v5.1.0...v5.2.0
v5.1.0Compare Source
What's Changed
ErrInvalidTypeinstead ofjson.UnsupportedTypeErrorby @oxisto in #316New Contributors
Full Changelog: golang-jwt/jwt@v5.0.0...v5.1.0
v5.0.0Compare Source
🚀 New Major Version
v5🚀It's finally here, the release you have been waiting for! We don't take breaking changes lightly, but the changes outlined below were necessary to address some of the challenges of the previous API. A big thanks for @mfridman for all the reviews, all contributors for their commits and of course @dgrijalva for the original code. I hope we kept some of the spirit of your original
v4branch alive in the approach we have taken here.~@oxisto, on behalf of @golang-jwt/maintainers
Version
v5contains a major rework of core functionalities in thejwt-golibrary. This includes support for several validation options as well as a re-design of theClaimsinterface. Lastly, we reworked how errors work under the hood, which should provide a better overall developer experience.Starting from v5.0.0, the import path will be:
For most users, changing the import path should suffice. However, since we intentionally changed and cleaned some of the public API, existing programs might need to be updated. The following sections describe significant changes and corresponding updates for existing programs.
Parsing and Validation Options
Under the hood, a new
validatorstruct takes care of validating the claims. A long awaited feature has been the option to fine-tune the validation of tokens. This is now possible with severalParserOptionfunctions that can be appended to mostParsefunctions, such asParseWithClaims. The most important options and changes are:WithLeewayto support specifying the leeway that is allowed when validating time-based claims, such asexpornbf.iatclaim. Usage of this claim is OPTIONAL according to the JWT RFC. The claim itself is also purely informational according to the RFC, so a strict validation failure is not recommended. If you want to check for sensible values in these claims, please use theWithIssuedAtparser option.WithAudience,WithSubjectandWithIssuerto support checking for expectedaud,subandiss.WithStrictDecodingandWithPaddingAllowedoptions to allow previously global settings to enable base64 strict encoding and the parsing of base64 strings with padding. The latter is strictly speaking against the standard, but unfortunately some of the major identity providers issue some of these incorrect tokens. Both options are disabled by default.Changes to the
ClaimsinterfaceComplete Restructuring
Previously, the claims interface was satisfied with an implementation of a
Valid() errorfunction. This had several issues:Since all the validation functionality is now extracted into the validator, all
VerifyXXXandValidfunctions have been removed from theClaimsinterface. Instead, the interface now represents a list of getters to retrieve values with a specific meaning. This allows us to completely decouple the validation logic with the underlying storage representation of the claim, which could be a struct, a map or even something stored in a database.Supported Claim Types and Removal of
StandardClaimsThe two standard claim types supported by this library,
MapClaimsandRegisteredClaimsboth implement the necessary functions of this interface. The oldStandardClaimsstruct, which has already been deprecated inv4is now removed.Users using custom claims, in most cases, will not experience any changes in the behavior as long as they embedded
RegisteredClaims. If they created a new claim type from scratch, they now need to implemented the proper getter functions.Migrating Application Specific Logic of the old
ValidPreviously, users could override the
Validmethod in a custom claim, for example to extend the validation with application-specific claims. However, this was always very dangerous, since once could easily disable the standard validation and signature checking.In order to avoid that, while still supporting the use-case, a new
ClaimsValidatorinterface has been introduced. This interface consists of theValidate() errorfunction. If the validator sees, that aClaimsstruct implements this interface, the errors returned to theValidatefunction will be appended to the regular standard validation. It is not possible to disable the standard validation anymore (even only by accident).Usage examples can be found in example_test.go, to build claims structs like the following.
Changes to the
TokenandParserstructThe previously global functions
DecodeSegmentandEncodeSegmentwere moved to theParserandTokenstruct respectively. This will allow us in the future to configure the behavior of these two based on options supplied on the parser or the token (creation). This also removes two previously global variables and moves them to parser optionsWithStrictDecodingandWithPaddingAllowed.In order to do that, we had to adjust the way signing methods work. Previously they were given a base64 encoded signature in
Verifyand were expected to return a base64 encoded version of the signature inSign, both as astring. However, this made it necessary to haveDecodeSegmentandEncodeSegmentglobal and was a less than perfect design because we were repeating encoding/decoding steps for all signing methods. Now,SignandVerifyoperate on a decoded signature as a[]byte, which feels more natural for a cryptographic operation anyway. Lastly,ParseandSignedStringtake care of the final encoding/decoding part.In addition to that, we also changed the
Signaturefield onTokenfrom astringto[]byteand this is also now populated with the decoded form. This is also more consistent, because the other parts of the JWT, mainlyHeaderandClaimswere already stored in decoded form inToken. Only the signature was stored in base64 encoded form, which was redundant with the information in theRawfield, which contains the complete token as base64.Most (if not all) of these changes should not impact the normal usage of this library. Only users directly accessing the
Signaturefield as well as developers of custom signing methods should be affected.What's Changed
StandardClaimsin favor ofRegisteredClaimsby @oxisto in #235v5Pre-Release by @oxisto in #234DecodeSegementtoParserby @oxisto in #278Verify&Signto detail why string is not an advisable input for key by @dillonstreator in #249v5release by @oxisto in #291New Contributors
Full Changelog: golang-jwt/jwt@v4.5.0...v5.0.0
Configuration
📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM ( * 0-3 * * * ) in timezone Europe/Dublin, Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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 this update again.
This PR was generated by Mend Renovate. View the repository job log.