From 7a6b93a36c533b16d8eab1b23cdfa806e9aeb137 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Tue, 1 Apr 2025 13:18:14 +0200 Subject: [PATCH] chore: :arrow_up: Upgrade Bun to 1.2.8 --- .devcontainer/Dockerfile | 2 +- CHANGELOG.md | 2 +- Dockerfile | 2 +- Worker.Dockerfile | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 3a476fd2..5d11180a 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,5 +1,5 @@ # Bun doesn't run well on Musl but this seems to work -FROM oven/bun:1.2.7-alpine as base +FROM oven/bun:1.2.8-alpine as base # Switch to Bash by editing /etc/passwd RUN apk add --no-cache libstdc++ git bash curl openssh cloc && \ diff --git a/CHANGELOG.md b/CHANGELOG.md index 84b27475..28e09d1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -41,7 +41,7 @@ Versia Server now serves static files directly from a configurable path, and `ve ### Backend -- [x] 🚀 Upgraded Bun to `1.2.7` +- [x] 🚀 Upgraded Bun to `1.2.8` - [x] 🔥 Removed dependency on the `pg_uuidv7` extension. Versia Server can now be used with "vanilla" PostgreSQL. - [x] 🖼️ Simplified media pipeline: this will improve S3 performance - [ ] 📈 It is now possible to disable media proxying for your CDN (offloading considerable bandwidth to your more optimized CDN). diff --git a/Dockerfile b/Dockerfile index ffd28db2..85503e8c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ RUN bun run build WORKDIR /temp/dist # Copy production dependencies and source code into final image -FROM oven/bun:1.2.7-alpine +FROM oven/bun:1.2.8-alpine # Install libstdc++ for Bun and create app directory RUN apk add --no-cache libstdc++ && \ diff --git a/Worker.Dockerfile b/Worker.Dockerfile index 14f3a5a8..c90f0481 100644 --- a/Worker.Dockerfile +++ b/Worker.Dockerfile @@ -26,7 +26,7 @@ RUN bun run build:worker WORKDIR /temp/dist # Copy production dependencies and source code into final image -FROM oven/bun:1.2.7-alpine +FROM oven/bun:1.2.8-alpine # Install libstdc++ for Bun and create app directory RUN apk add --no-cache libstdc++ && \