feat(auth): add a generic HS256 JWT issuer - #256
Merged
Conversation
ChiragAgg5k
requested review from
eldadfux,
lohanidamodar and
loks0n
as code owners
September 10, 2026 17:18
Contributor
|
Member
Author
|
@greptile review |
loks0n
approved these changes
Sep 10, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Add
Utopia\Auth\Issuers\Symmetric\Jwtfor application-defined HS256 tokens, such as login state and session cookies, without requiring consumers to subclass the abstract issuer or misuse an OAuth refresh-token issuer.issue(string|array $audience, int $duration, array $claims = [])setsiss,aud,iat, andexp; custom claims cannot override them.JWTtype, optional key ID, and secret-generation support.Motivated by appwrite-labs/edge#1397. This PR only adds the library API; downstream Edge adoption follows after release. Branched from current
main, with no unrelated DNS/domains changes.Verification
bin/monorepo test auth— 274 tests, 561 assertions passed on PHP 8.5.10.bin/monorepo check auth— Pint, PHPStan, and Rector passed.bin/monorepo validate— passed.vale packages/auth/README.md packages/auth/docs/jwt.md— 0 errors, one pre-existing README exclamation warning.git diff --check— passed.Added a small unit test covering signing/verification with string and array audiences, protected and custom claims, and rejection of zero/negative durations and empty/malformed audiences. Browser/Edge end-to-end verification was not run; this is a nonvisual library change, so screenshots are not applicable.