You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 9, 2025. It is now read-only.
Fixed RouterEvent.requestContext. This property was being called RouterEvent.context and copied from ProxyEvent.context which was undefined so this was never working outside test code.
Route.postProcess()'s handlingRoutes parameter is now populated with the route that threw an error in the case where an error was thrown; or the default route in the case that the default route is the handler.
Expose a list of Routes that have participated in handling the event to the postProcess function. (ie: the signature is now postProcess(evt: RouterEvent, resp: RouterResponse, handlingRoutes: Route[]);)