From 246c44e1c3e0951f3997b0dca6b30d474553c192 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Tue, 5 Dec 2023 15:54:03 +0100 Subject: [PATCH] Bump version --- CHANGELOG | 5 +++++ CloudronManifest.json | 4 ++-- Dockerfile | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 52caaf4..b65e476 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -418,3 +418,8 @@ * Fix some link anchors being recognized as hashtags (ClearlyClaire, ClearlyClaire) * Fix format-dependent redirects being cached regardless of requested format (ClearlyClaire) +[1.12.3] +* Update Mastodon to 4.2.3 +* [Full changelog](https://github.com/mastodon/mastodon/releases/tag/v4.2.3) +* Fix dependency on json-canonicalization version that has been made unavailable since last release + diff --git a/CloudronManifest.json b/CloudronManifest.json index bac15f8..cc24fc1 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.2", - "upstreamVersion": "4.2.2", + "version": "1.12.3", + "upstreamVersion": "4.2.3", "healthCheckPath": "/about", "httpPort": 8000, "memoryLimit": 1610612736, diff --git a/Dockerfile b/Dockerfile index b50979c..7b7a0c4 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.2 +ARG VERSION=4.2.3 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' && \