mirror of
https://git.cloudron.io/cloudron/mastodon-app.git
synced 2024-11-21 23:31:00 +00:00
Bump version for 3.4.1
This commit is contained in:
parent
54b84e623e
commit
f5b3a51f93
4 changed files with 17 additions and 3 deletions
14
CHANGELOG
14
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)
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
|
|
@ -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' && \
|
||||
|
|
Loading…
Reference in a new issue