From 2938d2cc2f9e04dad9b6d5b45d6ea1fb6fba8bb1 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Mon, 4 Dec 2023 16:49:34 +0100 Subject: [PATCH] Bump version --- CHANGELOG | 23 +++++++++++++++++++++++ CloudronManifest.json | 4 ++-- Dockerfile | 2 +- 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 4c33be0..52caaf4 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -395,3 +395,26 @@ * Change some worker lock TTLs to be shorter-lived (ClearlyClaire) * Change user archive export allowed period from 7 days to 6 days (suddjian) +[1.12.2] +* Update Mastodon to 4.2.2 +* [Full changelog](https://github.com/mastodon/mastodon/releases/tag/v4.2.2) +* Change dismissed banners to be stored server-side (ClearlyClaire) +* Change GIF max matrix size error to explicitly mention GIF files (ClearlyClaire) +* Change Follow activities delivery to bypass availability check (ShadowJonathan) +* Change single-column navigation notice to be displayed outside of the logo container (renchap, renchap) +* Change Content-Security-Policy to be tighter on media paths (ClearlyClaire) +* Change post language code to include country code when relevant (gunchleoc, ClearlyClaire) +* Fix upper border radius of onboarding columns (ClearlyClaire) +* Fix incoming status creation date not being restricted to standard ISO8601 (ClearlyClaire, ClearlyClaire) +* Fix some posts from threads received out-of-order sometimes not being inserted into timelines (ClearlyClaire) +* Fix posts from force-sensitized accounts being able to trend (ClearlyClaire) +* Fix error when trying to delete already-deleted file with OpenStack Swift (ClearlyClaire) +* Fix batch attachment deletion when using OpenStack Swift (ClearlyClaire) +* Fix processing LDSigned activities from actors with unknown public keys (ClearlyClaire) +* Fix error and incorrect URLs in /api/v1/accounts/:id/featured_tags for remote accounts (ClearlyClaire) +* Fix report processing notice not mentioning the report number when performing a custom action (ClearlyClaire) +* Fix handling of inLanguage attribute in preview card processing (ClearlyClaire) +* Fix own posts being removed from home timeline when unfollowing a used hashtag (kmycode) +* Fix some link anchors being recognized as hashtags (ClearlyClaire, ClearlyClaire) +* Fix format-dependent redirects being cached regardless of requested format (ClearlyClaire) + diff --git a/CloudronManifest.json b/CloudronManifest.json index 71e1ce6..bac15f8 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -5,8 +5,8 @@ "description": "file://DESCRIPTION.md", "changelog": "file://CHANGELOG", "tagline": "Federated social network", - "version": "1.12.1", - "upstreamVersion": "4.2.1", + "version": "1.12.2", + "upstreamVersion": "4.2.2", "healthCheckPath": "/about", "httpPort": 8000, "memoryLimit": 1610612736, diff --git a/Dockerfile b/Dockerfile index 48b3812..b50979c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,7 +33,7 @@ RUN gem install --no-document bundler ENV RAILS_ENV production ENV NODE_ENV production -ARG VERSION=4.2.1 +ARG VERSION=4.2.2 RUN curl -L https://github.com/tootsuite/mastodon/archive/v${VERSION}.tar.gz | tar -xz --strip-components 1 -f - && \ bundle config --local set deployment 'true' && \