diff --git a/CHANGELOG b/CHANGELOG index bc27baa..399f501 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -157,3 +157,23 @@ [2.7.0] * Update PeerTube to 4.2.0 * [Full changelog](https://github.com/Chocobozzz/PeerTube/releases/tag/v4.2.0) + +[2.7.1] +* Update PeerTube to 4.2.1 +* [Full changelog](https://github.com/Chocobozzz/PeerTube/releases/tag/v4.2.1) +* Fix live ending job that breaks new live session +* Fix search filters counter +* Fix upload banner icon margin +* Fix button icon margin +* Fix my import expander icon that should only be displayed on import error +* Fix select components styling inconsistency +* Increase max watch section to avoid too much warnings in server +* Optimize broadcast job creation +* Optimize View activities delivery using a dedicated broadcast job queue that can be run in parallel +* Fix video selection buttons placement +* Fix searching into account blocklist +* Fix incorrect instance stats +* Fix broken player on ICE error +* Relax views federation +* Fix peertube user in docker +* Fix playlist element federation with a deleted video diff --git a/CloudronManifest.json b/CloudronManifest.json index d56a198..ee87f5e 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -1,6 +1,6 @@ { - "version": "2.7.0", - "upstreamVersion": "4.2.0", + "version": "2.7.1", + "upstreamVersion": "4.2.1", "id": "org.joinpeertube.cloudronapp", "title": "PeerTube", "author": "PeerTube developers", diff --git a/Dockerfile b/Dockerfile index f3b4b50..257e3fe 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.0 +ARG VERSION=4.2.1 # 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 - && \