From 20d61cd8b9b25d60596a85855f4f312ac71bc69e Mon Sep 17 00:00:00 2001 From: Clark Boylan Date: Tue, 28 Jan 2025 12:59:37 -0800 Subject: [PATCH] Upgrade etherpad to v2.2.7 This appears to be a very minor update from 2.2.6 (as far as I can tell dockerfile and settings haven't changed). The changelog indicates that important changes were rewritten to use react 19 and react router v7. Other than that only dependency updates were made. https://github.com/ether/etherpad-lite/blob/v2.2.7/CHANGELOG.md Change-Id: I48e8914ffa7026e35b6341628a709301c6a61c26 --- docker/etherpad/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/etherpad/Dockerfile b/docker/etherpad/Dockerfile index b228e34e9e..c48817553a 100644 --- a/docker/etherpad/Dockerfile +++ b/docker/etherpad/Dockerfile @@ -42,7 +42,7 @@ RUN export DEBIAN_FRONTEND=noninteractive; \ rm -rf /var/lib/apt/lists/* RUN npm install -g pnpm@9.0.4 RUN git clone https://github.com/ether/etherpad-lite ${EP_DIR} -RUN git checkout v2.2.6 +RUN git checkout v2.2.7 RUN pnpm install RUN pnpm run build:ui @@ -149,7 +149,7 @@ USER etherpad RUN git clone https://github.com/ether/etherpad-lite ${EP_DIR} WORKDIR "${EP_DIR}" -RUN git checkout v2.2.6 +RUN git checkout v2.2.7 FROM build AS development ARG ETHERPAD_PLUGINS