Closed lautarodragan closed 5 years ago
Actually can't be done, no more efficient way to store data in a JWT than a string :(
:tada: This issue has been resolved in version 1.31.6 :tada:
The release is available on GitHub release
Your semantic-release bot :package::rocket:
Note: JWTs are in base 64, UUIDs in base 16 (hex). Converting the bytes of the uuid to base 16 and then to base 64 is a waste of space, network and processor. Can we store the byte buffer directly in the JWT, so it's converted straight from raw bytes to base 64?
Example: