Skip to content

Releases: PavloPoliakov/fastify-blipp

4.0.0

Choose a tag to compare

@PavloPoliakov PavloPoliakov released this 14 Mar 12:38
  • ESM support
  • All dependencies were updated, now fastify v4 is considered as a default host framework

supporting multiple methods routes

Choose a tag to compare

@PavloPoliakov PavloPoliakov released this 26 Jun 13:36
  • Supporting the routes like:
fastify.route({
  method: ["GET", "HEAD"],
  url: "/hello/complex-route",
  handler: async (req, reply) => ({
    greeting: "Hello from the complex route"
  })
});
  • updating the dependencies

fastify 0.40.0 API

Choose a tag to compare

@PavloPoliakov PavloPoliakov released this 24 Jan 13:33
  • Adjustments needed to support fastify v0.40.0
  • Routes are sorted alphabetically

initial release

Choose a tag to compare

@PavloPoliakov PavloPoliakov released this 19 Jan 17:18
1.0.2

better route highlighting