3.7 KiB
3.7 KiB
Unreleased
For all users
A new setting item has been added to control the log levels, so please consider updating your .config/default.yml
. (example settings)
v20240225
For Docker/Podman users
- The bug where
custom
directory was not working has (finally) been fixed. Please add thecustom
directory tovolumes
in yourdocker-compose.yml
:services: web: image: registry.firefish.dev/firefish/firefish:latest # and so on ... volumes: - ./custom:/firefish/custom:ro # <- Please add this line - ./files:/firefish/files - ./.config:/firefish/.config:ro
v20240222
For Docker/Podman users
- You only need to pull the new container image (
docker/podman pull
) to upgrade your server, so we assume that many of you don't update the code (git pull --ff
), but it's still worth noting here that we have renameddocker-compose.yml
todocker-compose.example.yml
in the repository, anddocker-compose.yml
is now set to be untracked by git.- Since
docker-compose.yml
may be edited by users (e.g., change port number, add reverse proxy), it shouldn't have been tracked by git in the first place. - If you want to update the repository (
git pull --ff
), please take the following steps to keep yourdocker-compose.yml
:- Backup (make a copy) your
docker-compose.yml
cp docker-compose.yml /tmp/my-docker-compose.yml # or somewhere else
- Restore the original
docker-compose.yml
so it doesn't conflict with the upstream changesgit checkout -- docker-compose.yml
- Pull the new code
git switch main git pull --ff
- Bring back your
docker-compose.yml
mv /tmp/my-docker-compose.yml docker-compose.yml
- Backup (make a copy) your
- If any modifications are needed to
docker-compose.yml
in the future, we will provide a notice. - Also, PostgreSQL v12.2 (
docker.io/postgres:12.2-alpine
) has been used in this compose file, but we highly recommend that you upgrade it to a newer version (e.g.,docker.io/postgres:16-alpine
).- Note: some manual (painful) operations are needed to upgrade the PostgreSQL major version, so please be careful when performing upgrades: https://github.com/docker-library/postgres/issues/37
- Since
v20240214
For systemd/pm2 users
- Required Rust version has been bumped from v1.70 to v1.74.
cargo --version # check version rustup update # update version
v20240213
For systemd/pm2 users
-
packages/backend/native-utils
can be removed.- This directory was removed in the repository, but it's not completely removed from your system by
git pull --ff
, because some folders likepackages/backend/native-utils/built
are not tracked by git.
rm --recursive --force packages/backend/native-utils
- This directory was removed in the repository, but it's not completely removed from your system by
v20240206
For all users
- The git repository has been moved, so please update the
git remote
url.git remote set-url origin https://firefish.dev/firefish/firefish.git
For systemd/pm2 users
- Required Rust version has been bumped from v1.68 to v1.70.
libvips
is no longer required (unless your server os is *BSD), so you may uninstall it from your system. Make sure to execute the following commands after that:pnpm clean-npm pnpm install
For Docker/Podman users
- The image tag has been changed to
registry.firefish.dev/firefish/firefish:latest
, so please updatedocker-compose.yml
.