Merged
Conversation
added 16 commits
February 8, 2026 10:01
…ard compatibility
…ckward compatibility
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.
Description
This PR adds comprehensive authentication and authorization functionality by integrating with Zitadel, transforming the authkit from a simple JWT validation middleware into a full-featured auth management SDK. The implementation includes user management, organization management, role-based access control, invitation systems, session management, and IDP (Identity Provider) linking capabilities.
Type of Change
Related Issue
Changes Made
Core Authentication Enhancements
New Zitadel API Client
zitadel_client.goRBAC & Organization Features
Invitation System
Internal Models
Code Quality Improvements
Testing
Checklist
Screenshots (if applicable)
Additional Notes
Breaking Changes
While type aliases maintain backward compatibility for public APIs, the internal structure has been significantly refactored. Existing code using the middleware should continue to work without modification.
Dependencies
Requires Zitadel service token for full API functionality
Session validation requires additional ServiceToken configuration
Migration Guide
For projects using the basic middleware:
No changes required - existing
AuthN()middleware continues to workTo enable session token validation, add
ServiceTokento your configTo use new Zitadel API features, create a
ZitadelClientinstance withNewZitadelClient()