From 71c51e0059dfc5b423b1020b8200fad6392d8f60 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Sat, 19 Dec 2020 13:57:10 +0100 Subject: [PATCH] Bump version for 3.2.2 --- CHANGELOG | 12 ++++++++++++ CloudronManifest.json | 2 +- DESCRIPTION.md | 2 +- Dockerfile | 2 +- 4 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 34ef6e8..e4d402a 100644 --- a/CHANGELOG +++ b/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) diff --git a/CloudronManifest.json b/CloudronManifest.json index 84fec46..e39b4e3 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -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, diff --git a/DESCRIPTION.md b/DESCRIPTION.md index cbf2669..16c3857 100644 --- a/DESCRIPTION.md +++ b/DESCRIPTION.md @@ -1,4 +1,4 @@ -This app packages Mastodon 3.2.0. +This app packages Mastodon 3.2.2. Your self-hosted, globally interconnected microblogging community. diff --git a/Dockerfile b/Dockerfile index 975dd54..86670b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \