fastify / fastify-response-validation

A simple plugin that enables response validation for Fastify.
MIT License
51 stars 14 forks source link

feat!: Upgrade to fastify@v4 #71

Closed metcoder95 closed 2 years ago

metcoder95 commented 2 years ago

Checklist

Note:

As the routes are being registered sync, this is constantly causing Plugins who interfere with any of the lifecycle routes (e.g. onRoute for this case) to have race conditions where the plugin might not be fully loaded but the route is already registered and the preparation work is done.

I already started digging deep into how to try to control that, but not sure if it should be considered urgent or similar.