Eomm / fastify-raw-body

Request raw body
MIT License
44 stars 10 forks source link

Fix FastifyDeprecation warning of request.context usage #37

Closed duki994 closed 1 year ago

duki994 commented 1 year ago

Since version 4.1.1 following error appeared in my projects: [FSTDEP012] FastifyDeprecation: Request#context property access is deprecated. Please use "Request#routeConfig" or "Request#routeSchema" instead for accessing Route settings. The "Request#context" will be removed in fastify@5

It's connected to route body limit PR. Request#context field is deprecated. Direct usage of routeConfig works better.