V3 Migration Guide

    Before beginning please ensure that any deprecation warnings from v2 are fixed. All v2 deprecations have been removed and they will no longer work after upgrading. (#1750)

    From Fastify v3, middleware support does not come out-of-the-box with the framework itself.

    If you use Express middleware in your application, please install and register the or middie plugin before doing so.

    v2:

    v3:

    1. await fastify.register(require('fastify-express'));
    2. fastify.use(require('cors')());

    Changed logging serialization (#2017)

    The logging have been updated to now Fastify Request and objects instead of native ones.

    Any custom serializers must be updated if they rely upon request or reply properties that are present on the native objects but not the Fastify objects.

    v2:

    1. const fastify = require('fastify')({
    2. logger: {
    3. serializers: {
    4. res(res) {
    5. return {
    6. statusCode: res.statusCode,
    7. customProp: res.customProp
    8. };
    9. }
    10. }
    11. }
    12. });

    v3:

    1. const fastify = require('fastify')({
    2. logger: {
    3. serializers: {
    4. res(reply) {
    5. return {
    6. customProp: reply.raw.customProp // Log custom property from res object
    7. };
    8. }
    9. }
    10. }
    11. });

    Changed schema substitution ()

    v2:

    v3:

    1. const schema = {
    2. body: {
    3. $ref: 'schemaId#'
    4. }
    5. };

    The setSchemaCompiler and setSchemaResolver options have been replaced with the setValidatorCompiler to enable future tooling improvements. To help understand this change read Validation and Serialization in Fastify v3.

    v2:

    1. const fastify = Fastify();
    2. const ajv = new AJV();
    3. ajv.addSchema(schemaA);
    4. ajv.addSchema(schemaB);
    5. fastify.setSchemaCompiler(schema => ajv.compile(schema));
    6. fastify.setSchemaResolver(ref => ajv.getSchema(ref).schema);

    v3:

    1. const fastify = Fastify();
    2. const ajv = new AJV();
    3. ajv.addSchema(schemaA);
    4. ajv.addSchema(schemaB);
    5. fastify.setValidatorCompiler(({ schema, method, url, httpPart }) =>
    6. ajv.compile(schema)
    7. );

    Changed preParsing hook behavior (#2286)

    From Fastify v3, the behavior of the preParsing hook will change slightly in order to support request payload manipulation.

    The hook now takes an additional argument, payload, and therefore the new hook signature is fn(request, reply, payload, done) or async fn(request, reply, payload).

    The hook can optionally return a new stream via done(null, stream) or returning the stream in case of async functions.

    If the hook returns a new stream, it will be used instead of the original one in subsequent hooks. A sample use case for this is handling compressed requests.

    The old syntax of Fastify v2 without payload is supported but it is deprecated.

    Changed hooks behavior (#2004)

    From Fastify v3, the behavior of onRoute and onRegister hooks will change slightly in order to support hook encapsulation.

    • onRoute - The hook will be called asynchronously. The hook is now inherited when registering a new plugin within the same encapsulation scope. Thus, this hook should be registered before registering any plugins.
    • onRegister - Same as the onRoute hook. The only difference is that now the very first call will no longer be the framework itself, but the first registered plugin.

    In Fastify v3 the content type parsers now have a single signature for parsers.

    The new signatures are fn(request, payload, done) or async fn(request, payload). Note that request is now a Fastify request, not an IncomingMessage. The payload is by default a stream. If the parseAs option is used in addContentTypeParser, then reflects the option value (string or buffer).

    The old signatures fn(req, [done]) or fn(req, payload, [done]) (where req is IncomingMessage) are still supported but are deprecated.

    Changed TypeScript support

    The type system was changed in Fastify version 3. The new type system introduces generic constraining and defaulting, plus a new way to define schema types such as a request body, querystring, and more!

    v2:

    v3:

    1. server.get<{
    2. Querystring: PingQuerystring;
    3. Headers: PingHeaders;
    4. Body: PingBody;
    5. }>('/ping/:bar', opts, async (request, reply) => {
    6. console.log(request.query); // This is of type `PingQuerystring`
    7. console.log(request.params); // This is of type `PingParams`
    8. console.log(request.headers); // This is of type `PingHeaders`
    9. console.log(request.body); // This is of type `PingBody`
    10. });

    Manage uncaught exception ()

    In sync route handlers, if an error was thrown the server crashed by design without calling the configured .setErrorHandler(). This has changed and now all unexpected errors in sync and async routes are managed.

    1. fastify.setErrorHandler((error, request, reply) => {
    2. // this is NOT called
    3. reply.send(error)
    4. })
    5. fastify.get('/', (request, reply) => {
    6. const maybeAnArray = request.body.something ? [] : 'I am a string'
    7. maybeAnArray.substr() // Thrown: [].substr is not a function and crash the server
    8. })

    v3:

    1. fastify.setErrorHandler((error, request, reply) => {
    2. // this IS called
    3. reply.send(error)
    4. })
    5. fastify.get('/', (request, reply) => {
    6. const maybeAnArray = request.body.something ? [] : 'I am a string'
    7. maybeAnArray.substr() // Thrown: [].substr is not a function, but it is handled
    8. })

    Further additions and improvements

    • Hooks now have consistent context regardless of how they are registered ()
    • Deprecated request.req and reply.res for request.raw and (#2008)
    • Removed modifyCoreObjects option ()
    • Added connectionTimeout option ()
    • Added keepAliveTimeout option ()
    • Added async-await support for plugins ()
    • Added the feature to throw object as error (#2134)