Skip to content

Releases: atsu1125/mastodon

v3.4.8-f5

31 Oct 11:14
cfaaf0c
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.4.8-d4...v3.4.8-f5

v3.4.8-d4

15 Oct 01:39
088274a
Compare
Choose a tag to compare

Upgrade overview

ℹ️ Requires Mastodon restart

For more information, scroll down to the upgrade instructions section.

What's Changed

Full Changelog: v3.4.8-c3...v3.4.8-d4

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

  1. Pull the code: git fetch && git checkout v3.4.8-d4
  2. Precompile the assets: RAILS_ENV=production bundle exec rails assets:precompile
  3. Restart mastodon-web and mastodon-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:

  1. Pull the code: git fetch && git checkout v3.4.8-d4
  2. Pull the prebuilt images: docker-compose pull, or, alternatively, build them yourself: docker-compose build --pull
  3. Restart all Mastodon processes: docker-compose up -d

Dependencies

External dependencies have not changed compared to v3.4.8-c3, the compatible Ruby, PostgreSQL, Node, Elasticsearch and Redis versions are the same, that is:

  • Ruby: 2.6 to 3.1
  • PostgreSQL: 9.5 or newer
  • Redis: 4 or newer
  • Node: 12 or higher

v3.4.8-c3

11 Oct 11:48
45a385a
Compare
Choose a tag to compare

Upgrade overview

This release contains upgrade notes that deviate from the norm:

ℹ️ Requires database migration process for zero-downtime deployment
ℹ️ Requires Mastodon restart

For more information, scroll down to the upgrade instructions section.

What's Changed

Full Changelog: v3.4.8-b2...v3.4.8-c3

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

  1. Pull the code: git fetch && git checkout v3.4.8-c3
  2. Precompile the assets: RAILS_ENV=production bundle exec rails assets:precompile
  3. Run the database migrations: RAILS_ENV=production bundle exec rails db:migrate
  4. Restart mastodon-web and mastodon-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:

  1. Pull the code: git fetch && git checkout v3.4.8-c3
  2. Pull the prebuilt images: docker-compose pull, or, alternatively, build them yourself: docker-compose build --pull
  3. Run the database migrations: docker-compose run --rm web rails db:migrate
  4. Restart all Mastodon processes: docker-compose up -d

Dependencies

External dependencies have not changed compared to v3.4.8-b2, the compatible Ruby, PostgreSQL, Node, Elasticsearch and Redis versions are the same, that is:

  • Ruby: 2.6 to 3.1
  • PostgreSQL: 9.5 or newer
  • Redis: 4 or newer
  • Node: 12 or higher

v3.4.8-b2

20 Sep 14:53
34bf1ae
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.4.8-a1...v3.4.8-b2

Dependencies

External dependencies have not changed compared to v3.4.8-a1, the compatible Ruby, PostgreSQL, Node, Elasticsearch and Redis versions are the same, that is:

  • Ruby: 2.6 to 3.1
  • PostgreSQL: 9.5 or newer
  • Redis: 4 or newer
  • Node: 12 or higher

Upgrade notes

Other additional steps are likely to apply, please carefully read the upgrade notes for the skipped releases.

Non-Docker

  1. Pull the code: git fetch && git checkout v3.4.8-b2
  2. Precompile the assets: RAILS_ENV=production bundle exec rails assets:precompile
  3. Restart all Mastodon processes

Docker

The exact steps depend on your setup, but they are likely to match the following:

  1. Pull the code: git fetch && git checkout v3.4.8-b2
  2. Pull the prebuilt images: docker-compose pull, or, alternatively, build them yourself: docker-compose build --pull
  3. Restart all Mastodon processes: docker-compose up -d

v3.4.8-a1

30 Aug 07:16
be577c2
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.4.8...v3.4.8-a1

Dependencies

External dependencies have not changed compared to v3.4.8, the compatible Ruby, PostgreSQL, Node, Elasticsearch and Redis versions are the same, that is:

  • Ruby: 2.6 to 3.1
  • PostgreSQL: 9.5 or newer
  • Redis: 4 or newer
  • Node: 12 or higher

Upgrade notes

Other additional steps are likely to apply, please carefully read the upgrade notes for the skipped releases.

Non-Docker

  1. Pull the code: git fetch && git checkout v3.4.8-a1
  2. Precompile the assets: RAILS_ENV=production bundle exec rails assets:precompile
  3. Restart mastodon-web and mastodon-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:

  1. Pull the code: git fetch && git checkout v3.4.8-a1
  2. Pull the prebuilt images: docker-compose pull, or, alternatively, build them yourself: docker-compose build --pull
  3. Restart all Mastodon processes: docker-compose up -d

v3.4.8

28 Aug 04:39
b44a3a2
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.4.3-20220505...v3.4.8

Dependencies

External dependencies have not changed compared to v3.4.3, the compatible Ruby, PostgreSQL, Node, Elasticsearch and Redis versions are the same, that is:

  • Ruby: 2.6 to 3.1
  • PostgreSQL: 9.5 or newer
  • Redis: 4 or newer
  • Node: 12 or higher

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

  1. Pull the code: git fetch && git checkout v3.4.8
  2. Install Ruby dependencies: bundle install
  3. Precompile the assets: RAILS_ENV=production bundle exec rails assets:precompile
  4. Run the database migrations: RAILS_ENV=production bundle exec rails db:migrate
  5. Restart mastodon-web and mastodon-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:

  1. Pull the code: git fetch && git checkout v3.4.8
  2. Pull the prebuilt images: docker-compose pull, or, alternatively, build them yourself: docker-compose build --pull
  3. Run the database migrations: docker-compose run --rm web rails db:migrate
  4. Restart all Mastodon processes: docker-compose up -d

v3.4.3-20220505

05 May 02:57
733c7b6
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.4.3-20220412...v3.4.3-20220505

v3.4.3-20220412

12 Apr 03:39
2088d6a
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3.4.3-20220130...v3.4.3-20220412

v3.4.3-20220130

30 Jan 09:52
c2d46c4
Compare
Choose a tag to compare
Merge pull request #25 from atsu1125/bug-fix

Fix NameError on ActivityPub::FetchFeaturedCollectionService (#17326)

v3.4.3-20220119

18 Jan 17:14
Compare
Choose a tag to compare
Merge branch 'develop'