From fe514b48afc06f898a93d77fd858aa6a1e3e75f9 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Tue, 28 Jun 2022 15:48:03 +0200 Subject: [PATCH] Bump version for 4.2.2 --- CHANGELOG | 12 ++++++++++++ CloudronManifest.json | 4 ++-- Dockerfile | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 399f501..b520126 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 + diff --git a/CloudronManifest.json b/CloudronManifest.json index ee87f5e..69c506f 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -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", diff --git a/Dockerfile b/Dockerfile index 257e3fe..b166891 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 - && \