Bump version for 4.2.2

This commit is contained in:
Johannes Zellner 2022-06-28 15:48:03 +02:00
parent ab8e5cfba8
commit fe514b48af
3 changed files with 15 additions and 3 deletions

View file

@ -177,3 +177,15 @@
* Relax views federation
* Fix peertube user in docker
* Fix playlist element federation with a deleted video
[2.7.2]
* Update PeerTube to 4.2.2
* [Full changelog](https://github.com/Chocobozzz/PeerTube/releases/tag/v4.2.2)
* Upgrade vulnerable server dependencies
* Fix fast restream in permanent live
* Fix latency mode setting when creating a live
* Fix unique constraint tag violation when importing videos
* Fix latest live sessions order
* Fix server crash feed when accessing feeds that contains a live
* Fix false boolean attribute (data-is-live etc) in custom markup

View file

@ -1,6 +1,6 @@
{
"version": "2.7.1",
"upstreamVersion": "4.2.1",
"version": "2.7.2",
"upstreamVersion": "4.2.2",
"id": "org.joinpeertube.cloudronapp",
"title": "PeerTube",
"author": "PeerTube developers",

View file

@ -10,7 +10,7 @@ RUN apt update && \
apt install -y ffmpeg prosody && \
rm -rf /var/cache/apt /var/lib/apt/lists
ARG VERSION=4.2.1
ARG VERSION=4.2.2
# install peertube. the chown is required for some reason for ffmpeg. it fails with EROFS without it when transcoding
RUN curl -sL https://github.com/Chocobozzz/PeerTube/releases/download/v${VERSION}/peertube-v${VERSION}.tar.xz | tar --strip-components 1 -Jxvf - && \