Bump version

This commit is contained in:
Johannes Zellner 2023-09-20 18:29:48 +02:00
parent 0ccd723d02
commit 5cdb738996
3 changed files with 17 additions and 3 deletions

View file

@ -357,3 +357,17 @@
* Fix moderator rights inconsistencies (ClearlyClaire)
* Fix crash when encountering invalid URL (ClearlyClaire)
* Fix cached posts including stale stats (ClearlyClaire)
[1.11.11]
* Update Mastodon to 4.1.9
* [Full changelog](https://github.com/mastodon/mastodon/releases/tag/v4.1.9)
* Fix post translation erroring out (ClearlyClaire)
* Fix post edits not being forwarded as expected (ClearlyClaire)
* Fix moderator rights inconsistencies (ClearlyClaire)
* Fix crash when encountering invalid URL (ClearlyClaire)
* Fix cached posts including stale stats (ClearlyClaire)
* Fix uploading of video files for which ffprobe reports 0/0 average framerate (NicolaiSoeborg)
* Fix unexpected audio stream transcoding when uploaded video is eligible to passthrough (yufushiro)
* Fix missing HTML sanitization in translation API (CVE-2023-42452, GHSA-2693-xr3m-jhqr)
* Fix incorrect domain name normalization (CVE-2023-42451, GHSA-v3xf-c9qf-j667)

View file

@ -5,8 +5,8 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG",
"tagline": "Federated social network",
"version": "1.11.10",
"upstreamVersion": "4.1.8",
"version": "1.11.11",
"upstreamVersion": "4.1.9",
"healthCheckPath": "/about",
"httpPort": 8000,
"memoryLimit": 1610612736,

View file

@ -34,7 +34,7 @@ RUN gem install --no-document bundler
ENV RAILS_ENV production
ENV NODE_ENV production
ARG VERSION=4.1.8
ARG VERSION=4.1.9
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' && \