mirror of
https://git.cloudron.io/cloudron/mastodon-app.git
synced 2024-11-25 09:11:00 +00:00
Bump version for 3.2.2
This commit is contained in:
parent
f93726f450
commit
71c51e0059
4 changed files with 15 additions and 3 deletions
12
CHANGELOG
12
CHANGELOG
|
@ -70,3 +70,15 @@
|
|||
[1.4.3]
|
||||
* Install ffmpeg. This was causing sidekiq jobs to fail
|
||||
|
||||
[1.4.4]
|
||||
* Update Mastodon to 3.2.2
|
||||
* Remove dependency on unused and unmaintained http_parser.rb gem (ThibG)
|
||||
* Fix Move handler not being triggered when failing to fetch target account (ThibG)
|
||||
* Fix downloading remote media files when server returns empty filename (ThibG)
|
||||
* Fix possible casing inconsistencies in hashtag search (ThibG)
|
||||
* Fix updating account counters when association is not yet created (Gargron)
|
||||
* Fix account processing failing because of large collections (ThibG)
|
||||
* Fix resolving an account through its non-canonical form (i.e. alternate domain) (ThibG)
|
||||
* Fix slow distinct queries where grouped queries are faster (Gargron)
|
||||
* Fix 2FA/sign-in token sessions being valid after password change (Gargron)
|
||||
* Fix resolving accounts sometimes creating duplicate records for a given ActivityPub identifier (ThibG)
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
"description": "file://DESCRIPTION.md",
|
||||
"changelog": "file://CHANGELOG",
|
||||
"tagline": "Federated social network",
|
||||
"version": "1.4.3",
|
||||
"version": "1.4.4",
|
||||
"healthCheckPath": "/about",
|
||||
"httpPort": 8000,
|
||||
"memoryLimit": 1610612736,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
This app packages Mastodon <upstream>3.2.0</upstream>.
|
||||
This app packages Mastodon <upstream>3.2.2</upstream>.
|
||||
|
||||
Your self-hosted, globally interconnected microblogging community.
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@ FROM cloudron/base:2.0.0@sha256:f9fea80513aa7c92fe2e7bf3978b54c8ac5222f47a9a32a7
|
|||
RUN mkdir -p /app/code /app/pkg
|
||||
WORKDIR /app/code
|
||||
|
||||
ARG VERSION=3.2.1
|
||||
ARG VERSION=3.2.2
|
||||
|
||||
RUN apt-get update && \
|
||||
apt install -y imagemagick ffmpeg libpq-dev libxml2-dev libxslt1-dev file git-core \
|
||||
|
|
Loading…
Reference in a new issue