From 8c48b2c52773bac1ecd7a502843552ef00fed4a0 Mon Sep 17 00:00:00 2001 From: TrueCharts-Admin Date: Fri, 26 Jun 2026 05:05:08 +0000 Subject: [PATCH 1/3] =?UTF-8?q?feat(deps):=20update=20yooooomi/your=5Fspot?= =?UTF-8?q?ify=201.19.0=20=E2=86=92=201.20.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/your_spotify/docker-bake.hcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/your_spotify/docker-bake.hcl b/apps/your_spotify/docker-bake.hcl index 3a142b169..fac7b0865 100644 --- a/apps/your_spotify/docker-bake.hcl +++ b/apps/your_spotify/docker-bake.hcl @@ -6,7 +6,7 @@ variable "APP" { variable "VERSION" { // renovate: datasource=github-releases depName=Yooooomi/your_spotify versioning=loose - default = "1.19.0" + default = "1.20.0" } variable "LICENSE" { From 0b7f7b0a229ce5fbc92a653597da1bb5cb7cc81a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alfred=20G=C3=B6ppel?= <43101280+alfi0812@users.noreply.github.com> Date: Fri, 26 Jun 2026 21:04:28 +0200 Subject: [PATCH 2/3] Update Dockerfile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Alfred Göppel <43101280+alfi0812@users.noreply.github.com> --- apps/your_spotify/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/your_spotify/Dockerfile b/apps/your_spotify/Dockerfile index 72a7f76cd..817182a1f 100644 --- a/apps/your_spotify/Dockerfile +++ b/apps/your_spotify/Dockerfile @@ -26,7 +26,9 @@ RUN \ /app/www/ --strip-components=1 && \ echo "*** install workspace dependencies ***" && \ cd /app/www && \ - pnpm install --frozen-lockfile + pnpm install \ + --frozen-lockfile \ + --allow-build=core-js,unrs-resolver FROM buildbase AS buildclient From 7eed4352299080ad05a5b0bf80798b6171a04386 Mon Sep 17 00:00:00 2001 From: Alfi0812 Date: Fri, 26 Jun 2026 19:31:09 +0000 Subject: [PATCH 3/3] fix --- apps/your_spotify/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/your_spotify/Dockerfile b/apps/your_spotify/Dockerfile index 817182a1f..5c8c91d11 100644 --- a/apps/your_spotify/Dockerfile +++ b/apps/your_spotify/Dockerfile @@ -24,11 +24,11 @@ RUN \ tar xzf \ /tmp/your_spotify.tar.gz -C \ /app/www/ --strip-components=1 && \ + grep -q '^allowBuilds:' /app/www/pnpm-workspace.yaml || printf '\nallowBuilds:\n core-js: true\n unrs-resolver: true\n' >> /app/www/pnpm-workspace.yaml && \ echo "*** install workspace dependencies ***" && \ cd /app/www && \ pnpm install \ - --frozen-lockfile \ - --allow-build=core-js,unrs-resolver + --frozen-lockfile FROM buildbase AS buildclient