From c334cd9cc85450a1142e387fb4e1e687221c36a7 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Wed, 18 Dec 2024 20:46:26 +0100 Subject: [PATCH] chore: :arrow_up: Upgrade Bun to 1.1.40 --- .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 8444b706..8bc8a690 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.38-alpine as base +FROM oven/bun:1.1.40-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 77915905..3e4b95c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ Versia Server `0.8.0` is fully backwards compatible with `0.7.0`. - Outbound federation, inbox processing and data fetching are now handled by a queue system (like most federated software). - Added an administration UI for managing the queue. -- Upgraded Bun to `1.1.38`. +- Upgraded Bun to `1.1.40`. - Implemented support for the [**Instance Messaging Extension**](https://versia.pub/extensions/instance-messaging) - Implement [**Shared Inboxes**](https://versia.pub/federation#inboxes) support. - Allowed `
` and `` tags in Markdown. diff --git a/Dockerfile b/Dockerfile index 7c4cd2c2..2cae1abc 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.38-alpine +FROM oven/bun:1.1.40-alpine # Install libstdc++ for Bun and create app directory RUN apk add --no-cache libstdc++ && \ diff --git a/Worker.Dockerfile b/Worker.Dockerfile index 58600953..65a4b877 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.1.38-alpine +FROM oven/bun:1.1.40-alpine # Install libstdc++ for Bun and create app directory RUN apk add --no-cache libstdc++ && \