v3.4.10
Upgrade overview
ℹ️ Requires Mastodon restart
For more information, scroll down to the upgrade instructions section.
What's Changed
- Fix nodes order being sometimes mangled when rewriting emoji by @ClearlyClaire in f41583c 6ba8d78
- Add extended description for glitch-soc only “hide followers count" by @ClearlyClaire and @atsu1125 in 5ff31f0 31779be
- Fix: process_account_service by @atsu1125 in aa085e3
Full Changelog: v3.4.9...v3.4.10
Upgrade notes
Other additional steps are likely to apply, please carefully read the upgrade notes for the skipped releases.
As always, make sure you have backups of the database before performing any upgrades. If you are using docker-compose, this is how a backup command might look:
docker exec mastodon_db_1 pg_dump -Fc -U postgres postgres > name_of_the_backup.dump
Non-Docker
- Pull the code:
git fetch
&&git checkout v3.4.10
- Precompile the assets:
RAILS_ENV=production bundle exec rails assets:precompile
- Restart
mastodon-web
andmastodon-sidekiq
:
systemctl reload mastodon-web
systemctl restart mastodon-sidekiq
Docker
The exact steps depend on your setup, but they are likely to match the following:
- Pull the code:
git fetch && git checkout v3.4.10
- Pull the prebuilt images:
docker-compose pull
, or, alternatively, build them yourself:docker-compose build --pull
- Restart all Mastodon processes:
docker-compose up -d