github apollographql/router v0.1.0-preview.6

latest releases: v1.55.0-rc.1, v1.55.0-rc.0, v2.0.0-alpha.6...
2 years ago

🐛 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)

Don't miss a new router release

NewReleases is sending notifications on new releases.