v8.3.2
Deprecated
This version includes too much breaking change due to security patch. Please upgrade to version 8.3.3 which includes the security patch with minimal breakages.
Security
path-to-regexp
is updated to 8.1.0 to prevent ReDOS attack, it is recommended to use the latest version of this package.
You may see some unexpected breaking due the security patch. Here is the workaround,
- when you are using wildcard
*
, you must to provides a param name.
// before
fastify.use('*.css')
// after
fastify.use('*filename{.css}')
What's Changed
- chore(8.x): bump path-to-regexp to 8.1.0 by @climba03003 in #213
Full Changelog: v8.3.1...v8.3.2