Skip to content

Releases: prefabs-tech/fastify

v0.93.5

11 Feb 08:51
d848102

Choose a tag to compare

0.93.5 (2026-02-11)

v0.93.4

15 Jan 09:45
f6ae3cc

Choose a tag to compare

0.93.4 (2026-01-15)

Bug Fixes

  • user: fix error handling on create invitation handler (#1048) (a915fca)

v0.93.3

06 Jan 15:22
92fa38b

Choose a tag to compare

0.93.3 (2026-01-06)

v0.93.2

18 Dec 10:46
5de976f

Choose a tag to compare

0.93.2 (2025-12-18)

v0.93.1

09 Dec 14:51
fa96797

Choose a tag to compare

0.93.1 (2025-12-09)

v0.93.0

05 Nov 12:09
6bdebd5

Choose a tag to compare

0.93.0 (2025-11-05)

Features

  • slonik: add support for insensitive (case and accent) filter and sort (#940) (c5ac3a2)

v0.92.2

30 Oct 11:38
583a5e4

Choose a tag to compare

0.92.2 (2025-10-30)

Bug Fixes

  • firebase: fix firebase-admin import style to support commonjs and ESM (#1033) (b024dee)

v0.92.1

27 Oct 09:52
2f3e555

Choose a tag to compare

0.92.1 (2025-10-27)

v0.92.0

26 Sep 05:29
8f7e43c

Choose a tag to compare

0.92.0 (2025-09-26)

BREAKING CHANGES

  • s3: update s3 config, AWS S3 client config (access key, secret key etc) are now should be passed into clientConfig

Example:

const config: ApiConfig = {
  // ... other configurations
  s3: {
    clientConfig: {
      credentials: {
        accessKeyId: "ASSESS_KEY",   // Replace with your AWS access key
        secretAccessKey: "SECRET_KEY",   // Replace with your AWS secret key
      },
      region: "REGION", // Replace with your AWS region
      endpoint: "ENDPOINT",
      forcePathStyle: false,
    },
  }
  • s3: UplaodedById is now optional in files model
Required Migration

If you're upgrading to this version, run the following SQL migration:

ALTER TABLE files
ALTER COLUMN "uploaded_by_id" DROP NOT NULL;

v0.91.1

23 Sep 11:26
c770907

Choose a tag to compare

0.91.1 (2025-09-23)

Bug Fixes

  • slonik: fix incorrect latitude-longitude order in dwithin filter (#1023) (4f403fb)