v0.1.0-preview.6
apollo-bot2
released this
21 Apr 10:47
·
4431 commits
to main
since this release
🐛 Fixes
Restore the health check route #883
Axum rework caused the healthckeck route /.well-known/apollo/server-health
to change. The route is now restored.
Correctly propagate incoming POST requests #865
A regression happened during our recent switch to Axum that would propagate incoming POST requests as GET requests. Fixed and added regression tests.
HTTP routing is stricter
Previously the router was more lenient than it should have been. This has been fixed.
Before:
/hello
-> Method not allowed (bug)/graphql/hello
-> Served graphql (bug)
After:
/hello
-> 404 (correct)/graphql/hello
-> 404 (correct)