From c8b909db0846f7078a03615295879f3693d4cfbd Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Mon, 9 Dec 2024 10:57:24 +0100 Subject: [PATCH] chore: :arrow_up: Upgrade Bun to 1.1.38 --- .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 199da827..8444b706 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.37-alpine as base +FROM oven/bun:1.1.38-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 6997aadc..4c16186c 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.37`. +- Upgraded Bun to `1.1.38`. - 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 8894a7c0..7c4cd2c2 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.37-alpine +FROM oven/bun:1.1.38-alpine # Install libstdc++ for Bun and create app directory RUN apk add --no-cache libstdc++ && \ diff --git a/Worker.Dockerfile b/Worker.Dockerfile index d5c54ab7..58600953 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.37-alpine +FROM oven/bun:1.1.38-alpine # Install libstdc++ for Bun and create app directory RUN apk add --no-cache libstdc++ && \