Skip to content

v0.87.0

Choose a tag to compare

@github-actions github-actions released this 21 Jul 12:42
· 78 commits to main since this release
30336d4

0.87.0 (2025-07-21)

Features

upload / remove user photo (#988) (f94e89d)

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

  • add s3.bucket config to upload user photo to desired bucket. if the bucket is not specified the photo won't get uploaded.

Required Migration

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

ALTER TABLE "users"
ADD "photo_id" INTEGER NULL,
ADD CONSTRAINT fk_users_photo
  FOREIGN KEY (photo_id)
  REFERENCES files(id);