Bump version

This commit is contained in:
Johannes Zellner 2023-04-04 14:06:00 +02:00
parent c10fe95802
commit cae51adfbb
3 changed files with 13 additions and 3 deletions

View file

@ -294,3 +294,13 @@
[1.11.2]
* Update nginx config
[1.11.3]
* Update Mastodon to 4.1.2
* [Full changelog](https://github.com/mastodon/mastodon/releases/tag/v4.1.2)
* Fix crash in tootctl commands making use of parallelization when Elasticsearch is enabled (ClearlyClaire, ClearlyClaire)
* Fix crash in db:setup when Elasticsearch is enabled (rrgeorge)
* Fix user archive takeout when using OpenStack Swift or S3 providers with no ACL support (ClearlyClaire)
* Fix invalid/expired invites being processed on sign-up (ClearlyClaire)
* Update Ruby to 3.0.6 due to ReDoS vulnerabilities (saizai)
* Fix unescaped user input in LDAP query (ClearlyClaire)

View file

@ -5,8 +5,8 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG",
"tagline": "Federated social network",
"version": "1.11.2",
"upstreamVersion": "4.1.1",
"version": "1.11.3",
"upstreamVersion": "4.1.2",
"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.1
ARG VERSION=4.1.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' && \