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
Improved Error Messages – Enhanced error reporting when route handlers cannot be found. The router now
distinguishes between missing routes and HTTP method mismatches, providing clearer feedback.
Non-Public Method Detection – Added validation to detect Route attributes placed on protected or private methods.
The router now throws a descriptive RouterConfigurationException explaining that route handlers must be public
methods.
Better HTTP Method Errors – When a route exists but doesn't support the requested HTTP method, error messages now
clearly show which methods are allowed (e.g., "Allowed methods: POST, PUT" instead of the confusing "Allowed methods:
all methods").
AI Agent Guide - Added AGENTS.md to help developers and AI agents alike understand the router's behavior in an
effective way.