Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
CHANGELOG
=========

5.5.7 (2025-11-11)
-------------------
- Re-raise HTTPUnauthorized instead of handling it as a generic exception

5.5.6 (2025-11-10)
-------------------
- Add TID conflict retry delay option
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.5.6
5.5.7
2 changes: 2 additions & 0 deletions guillotina/traversal.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,6 +435,8 @@ async def real_resolve(self, request: IRequest) -> Optional[MatchInfo]:
except (ConflictError, asyncio.CancelledError):
# can also happen from connection errors so we bubble this...
raise
except HTTPUnauthorized:
raise
except Exception as _exc:
logger.error("Unhandled exception occurred", exc_info=True)
request.resource = request.tail = None
Expand Down
Loading