Bump version for 3.4.1

This commit is contained in:
Johannes Zellner 2021-06-03 11:14:15 +02:00
parent 54b84e623e
commit f5b3a51f93
4 changed files with 17 additions and 3 deletions

View file

@ -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)

View file

@ -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,

View file

@ -1,4 +1,4 @@
This app packages Mastodon <upstream>3.4.0</upstream>.
This app packages Mastodon <upstream>3.4.1</upstream>.
Your self-hosted, globally interconnected microblogging community.

View file

@ -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' && \