Skip to content

Releases: fastify/fastify-vite

@fastify/[email protected]

12 Sep 06:41
Compare
Choose a tag to compare

This is a maintenance release making @fastify/vite ready for Fastify v5.

It'll move into the latest tag once Fastify v5 is released.

This release contains updated dependencies for the @fastify/vite package and all examples, also now using Fastify v5.

@fastify/[email protected]

07 Jul 03:01
0c3cb24
Compare
Choose a tag to compare

This is small patch release containing the following fix:

Many thanks to Wei Wang!

@fastify/[email protected]

04 Mar 08:35
Compare
Choose a tag to compare

This release removes the accidental inclusion of optionalDependencies in package.json.

They are only used in development for PNPM workspaces to work.

@fastify/[email protected]

04 Mar 06:49
Compare
Choose a tag to compare

This release introduces the config.prepareServer(server) and route.configure(server) hooks.

A link to a blog post covering this feature will be added shortly.

@fastify/[email protected]

04 Mar 07:33
Compare
Choose a tag to compare

This release includes an experimental implementation of server actions.

Read all about it here: https://hire.jonasgalvez.com.br/2024/mar/04/server-actions-in-fastify/

@fastify/[email protected]

03 Mar 06:38
Compare
Choose a tag to compare

This release contains a critical fix for Windows:

And a fix for a bug when attempting graceful shutdown:

Hat off to Shyam-Chen and matt-smarsh.

@fastify/[email protected]

26 Feb 01:23
Compare
Choose a tag to compare

This release removes peerDependencies from package.json as it was causing trouble for many users.

@fastify/[email protected]

26 Feb 02:57
Compare
Choose a tag to compare

This patch release contains a fix for a syntax error in the root.vue virtual module.

As both starter templates include their own root.vue with correct syntax, this bug went unnoticed for a bit.

You can now also export mount from root.vue to determine where to mount the Vue application:

<script>
export { default } from '/:router.vue'

// This is what's pased to Vue's mount() method
export const mount = '#root'

export function configure ({ app, router }) {
  // Use this to configure/extend your Vue app and router instance
}
</script>

@fastify/[email protected]

26 Feb 02:24
Compare
Choose a tag to compare

This contains a patch for a bug some users reported where not all CSS imports would be loaded client-side.

Also peerDependencies has been removed from package.json.

@fastify/[email protected]

25 Feb 23:50
Compare
Choose a tag to compare

This release fixes a bug previously preventing getData() and getMeta() to run in route query updates.

Also peerDependencies have been removed from package.json, once and for all.