mirror of
https://git.cloudron.io/cloudron/mastodon-app.git
synced 2024-11-25 17:21:00 +00:00
Bump version
This commit is contained in:
parent
1814d12d23
commit
2938d2cc2f
3 changed files with 26 additions and 3 deletions
23
CHANGELOG
23
CHANGELOG
|
@ -395,3 +395,26 @@
|
||||||
* Change some worker lock TTLs to be shorter-lived (ClearlyClaire)
|
* Change some worker lock TTLs to be shorter-lived (ClearlyClaire)
|
||||||
* Change user archive export allowed period from 7 days to 6 days (suddjian)
|
* 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)
|
||||||
|
|
||||||
|
|
|
@ -5,8 +5,8 @@
|
||||||
"description": "file://DESCRIPTION.md",
|
"description": "file://DESCRIPTION.md",
|
||||||
"changelog": "file://CHANGELOG",
|
"changelog": "file://CHANGELOG",
|
||||||
"tagline": "Federated social network",
|
"tagline": "Federated social network",
|
||||||
"version": "1.12.1",
|
"version": "1.12.2",
|
||||||
"upstreamVersion": "4.2.1",
|
"upstreamVersion": "4.2.2",
|
||||||
"healthCheckPath": "/about",
|
"healthCheckPath": "/about",
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
"memoryLimit": 1610612736,
|
"memoryLimit": 1610612736,
|
||||||
|
|
|
@ -33,7 +33,7 @@ RUN gem install --no-document bundler
|
||||||
ENV RAILS_ENV production
|
ENV RAILS_ENV production
|
||||||
ENV NODE_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 - && \
|
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' && \
|
bundle config --local set deployment 'true' && \
|
||||||
|
|
Loading…
Reference in a new issue