mirror of
https://github.com/jwtk/jjwt.git
synced 2025-02-21 19:28:40 +00:00
* Ensured `aud` claim is an array by default, but allows a single string value on creation for recipients that do not understand array values: - ClaimsMutator#audience(String) now appends to the `aud` set, and may be called multiple times - Added new ClaimsMutator#audience(Collection) method for setting/full replacement - Added new ClaimsMutator#audienceSingle for setting/full replacement of single string value - Marked ClaimsMutator#audienceSingle as Deprecated (even though it's not!) to discourage its use when possible.