diff --git a/CHANGELOG b/CHANGELOG index b52e2e9..fb37712 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -102,3 +102,17 @@ * Add follow recommendations for onboarding * Update dependencies +[1.6.2] +* Update Mastodon to 3.4.1 +* Add new emoji assets from Twemoji 13.1.0 +* Fix some ActivityPub identifiers in server actor outbox (ClearlyClaire) +* Fix custom CSS path setting cookies and being uncacheable due to it (tribela) +* Fix unread notification count when polling in web UI (ClearlyClaire) +* Fix health check not being accessible through localhost (ClearlyClaire) +* Fix some redis locks auto-releasing too fast (ClearlyClaire, ClearlyClaire) +* Fix e-mail confirmations API not working correctly (Gargron) +* Fix migration script not being able to run if it fails midway (ClearlyClaire) +* Fix account deletion sometimes failing because of optimistic locks (ClearlyClaire) +* Fix deprecated slash as division in SASS files (ClearlyClaire) +* Fix tootctl search deploy compatibility error on Ruby 3 (ClearlyClaire) +* Fix mailer jobs for deleted notifications erroring out (ClearlyClaire) diff --git a/CloudronManifest.json b/CloudronManifest.json index e7eb649..2b086ed 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -5,7 +5,7 @@ "description": "file://DESCRIPTION.md", "changelog": "file://CHANGELOG", "tagline": "Federated social network", - "version": "1.6.1", + "version": "1.6.2", "healthCheckPath": "/about", "httpPort": 8000, "memoryLimit": 1610612736, diff --git a/DESCRIPTION.md b/DESCRIPTION.md index c3afa8a..8a39965 100644 --- a/DESCRIPTION.md +++ b/DESCRIPTION.md @@ -1,4 +1,4 @@ -This app packages Mastodon 3.4.0. +This app packages Mastodon 3.4.1. Your self-hosted, globally interconnected microblogging community. diff --git a/Dockerfile b/Dockerfile index 5327702..b2204a3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ RUN gem install --no-document bundler ENV RAILS_ENV production ENV NODE_ENV production -ARG VERSION=3.4.0 +ARG VERSION=3.4.1 RUN curl -L https://github.com/tootsuite/mastodon/archive/v${VERSION}.tar.gz | tar -xz --strip-components 1 -f - && \ bundle config set deployment 'true' && \