Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
41d7971
Enhance authentication strategies with improved type safety, and add …
sergiodxa Oct 9, 2025
ae5816e
Remove unnecessary error handling for unknown strategies
sergiodxa Oct 9, 2025
5e9d736
Merge branch 'main' into type-safety
sergiodxa Oct 9, 2025
10912fa
Improve code formatting and consistency in Authenticator class
sergiodxa Oct 9, 2025
b3f73fa
Merge branch 'main' into type-safety
sergiodxa Oct 10, 2025
6fa2421
Merge branch 'main' into type-safety
sergiodxa Oct 10, 2025
51fe1b8
Merge branch 'main' into type-safety
sergiodxa Nov 12, 2025
59f619f
Update dependencies
sergiodxa Nov 12, 2025
ab9ab0d
Implement OAuth2 strategy with state management and redirect handling
sergiodxa Nov 12, 2025
c4831aa
Add FormStrategy for form-based authentication
sergiodxa Nov 12, 2025
186f404
Add exports for oauth2 and form strategies
sergiodxa Nov 12, 2025
297c56f
Fix typo
sergiodxa Nov 12, 2025
acd1e7e
Correct error type in authentication test and update comments for cla…
sergiodxa Nov 12, 2025
33410b4
Document StateStore instance property design to clarify race conditio…
Copilot Nov 12, 2025
8ad03ba
Update import paths for SetCookie and Cookie to use @remix-run/headers
sergiodxa Nov 20, 2025
f6429a5
Improve documentation for OAuth2Strategy methods
sergiodxa Nov 20, 2025
a73004c
Improve type safety for authenticate method return type
sergiodxa Nov 20, 2025
dc82011
Include username in successful authentication response
sergiodxa Nov 20, 2025
436bd52
Enhance type safety for StateStore and OAuth2Strategy
sergiodxa Nov 20, 2025
c797874
Remove unused AuthenticateOptions interface from LoginStrategy namespace
sergiodxa Nov 20, 2025
56b7c09
Enhance type safety for strategies getter in Authenticator class
sergiodxa Nov 20, 2025
0314a26
Pass options to authorizationParams for improved flexibility
sergiodxa Nov 20, 2025
0b72af1
Enhance type safety for state management in OAuth2Strategy tests
sergiodxa Nov 20, 2025
2d23908
Add type-fest dependency for improved type safety
sergiodxa Nov 20, 2025
d744754
Add arrayify internal utility function for array conversion
sergiodxa Nov 20, 2025
e5e01a7
Add support for additional OIDC parameters in OAuth2Strategy
sergiodxa Nov 20, 2025
44ab2e0
Use @remix-run/response instead of custom redirect helper
sergiodxa Dec 4, 2025
7315f73
Apply suggestions from code review
sergiodxa Jan 26, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/build
/coverage
/node_modules
/docs
/docs
package-lock.json
Loading