:bug fix(auth-refresh): update supertokens-node and add refresh failure logging#1170
Merged
victor-enogwe merged 5 commits intomainfrom Oct 27, 2025
Merged
:bug fix(auth-refresh): update supertokens-node and add refresh failure logging#1170victor-enogwe merged 5 commits intomainfrom
victor-enogwe merged 5 commits intomainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR addresses session refresh handling by upgrading the supertokens-node package from v20.0.5 to v23.0.1 and implementing explicit error handling for failed refresh token attempts. The changes add logging when users attempt to refresh expired sessions and return a clear error response.
Key changes:
- Upgraded supertokens-node from v20.0.5 to v23.0.1
- Added
onTryRefreshTokenerror handler with logging and custom error response - Imported necessary dependencies (Status codes and Logger)
Reviewed Changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| packages/backend/src/common/middleware/supertokens.middleware.ts | Added error handler for refresh token failures with logging and explicit 401 response |
| packages/backend/package.json | Updated supertokens-node dependency to v23.0.1 |
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.
What does this PR do?
This PR updates the supertokens-node package from v20.1.7 to v23.0.1. It also adds logging for the supertokens refresh endpoint failure and prevents the websocket server's session verification from triggering the refresh endpoint.
Use Case
closes #1152