Skip to content

v0.82.0

Choose a tag to compare

@github-actions github-actions released this 08 May 11:28
· 125 commits to main since this release
d7f4439

0.82.0 (2025-05-08)

BREAKING CHANGES

Soft Delete Support for Users

  • A soft delete feature has been introduced in the User model.

  • This requires a new column deleted_at to be added to the users table (or your custom user table if overridden).

Required Migration

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

ALTER TABLE "users"
ADD "deleted_at" timestamp NULL;

Features