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
We fixed a critical bug in handling empty POST requests. Previously, when no body was sent in a POST request, the server would crash with a 500 error because we tried to parse an empty body without proper error handling.
Now, we properly catch these parsing errors and:
Allow empty POST bodies to pass through when no schema is defined
Return a clear 400 error when a schema is defined but body is missing
This makes the library much more robust for real-world usage where clients might send empty request bodies.