Mastodon v2.8.3 Release Notes

Release Date: 2019-05-19 // almost 5 years ago
  • Mastodon

    ๐Ÿ”„ Changelog

    โž• Added

    • โž• Add og:image:alt OpenGraph tag (BenLubar)
    • โž• Add clickable area below avatar in statuses in web UI (Dar13)
    • โž• Add crossed-out eye icon on account gallery in web UI (Kjwon15)
    • โž• Add media description tooltip to thumbnails in web UI (ThibG)

    ๐Ÿ”„ Changed

    • ๐Ÿ”„ Change "mark as sensitive" button into a checkbox for clarity (ThibG)

    ๐Ÿ›  Fixed

    • ๐Ÿ›  Fix bug allowing users to publicly boost their private statuses (ThibG, ThibG)
    • ๐Ÿ›  Fix performance in formatter by a little (ThibG)
    • ๐Ÿ›  Fix some colors in the light theme (yuzulabo)
    • ๐Ÿ›  Fix some colors of the high contrast theme (yuzulabo)
    • ๐Ÿ›  Fix ambivalent active state of poll refresh button in web UI (MaciekBaron)
    • ๐Ÿ›  Fix duplicate posting being possible from web UI (hinaloe)
    • ๐Ÿ›  Fix "invited by" not showing up in admin UI (ThibG)

    โฌ†๏ธ Upgrade notes

    Because this is a backport, it is not available with git pull. Use git fetch && git checkout v2.8.3

    โฌ†๏ธ > 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

    ๐Ÿณ Both Docker and non-Docker:

    1. Run database migrations:
      • Non-Docker: RAILS_ENV=production bundle exec rails db:migrate
      • Docker: docker-compose run --rm web rails db:migrate ๐Ÿฑ 2. Precompile the assets:
      • Non-Docker: RAILS_ENV=production bundle exec rails assets:precompile
      • Docker: The assets are already precompiled during the build step
    2. Restart all Mastodon processes