From 14ace17ad42c31fbfb3ccf3928d65b0363178c55 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Mon, 4 Nov 2024 10:10:32 +0100 Subject: [PATCH] chore: :arrow_up: Upgrade Bun to 1.1.34 --- .devcontainer/Dockerfile | 2 +- CHANGELOG.md | 2 +- Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 20e56d3b..7fa612b3 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.1.33-alpine as base +FROM oven/bun:1.1.34-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 3904fdd7..6495f35f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ Versia Server `0.7.0` is backwards compatible with `0.6.0`. However, some new fe ## Features -- Upgraded Bun to `1.1.33`. This brings performance upgrades and better stability. +- Upgraded Bun to `1.1.34`. This brings performance upgrades and better stability. - Added support for the [ActivityPub Federation Bridge](https://github.com/versia-pub/activitypub). - Added support for the [Sonic](https://github.com/valeriansaliou/sonic) search indexer. - Note deletions are now federated. diff --git a/Dockerfile b/Dockerfile index f12fc6e6..be080807 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.1.33-alpine +FROM oven/bun:1.1.34-alpine # Install libstdc++ for Bun and create app directory RUN apk add --no-cache libstdc++ && \