From 99fac323c809ad9c5929d3b4c903f3cede684505 Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Sat, 1 Feb 2025 11:10:57 +0100 Subject: [PATCH] chore: :arrow_up: Upgrade Bun to 1.2.2 --- .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 780b927f..fd356e56 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.1-alpine as base +FROM oven/bun:1.2.2-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 f4b6b986..c1a4715f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ Versia Server `0.8.0` is fully backwards compatible with `0.7.0`. - Added an administration UI for managing the queue. - Media processing is now also handled by a queue system. - Added [Push Notifications](https://docs.joinmastodon.org/methods/push) support. -- Upgraded Bun to `1.2.1`. +- Upgraded Bun to `1.2.2`. - 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 9c85cb9a..fca3b393 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.1-alpine +FROM oven/bun:1.2.2-alpine # Install libstdc++ for Bun and create app directory RUN apk add --no-cache libstdc++ && \ diff --git a/Worker.Dockerfile b/Worker.Dockerfile index 053f5efc..d603de1b 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.1-alpine +FROM oven/bun:1.2.2-alpine # Install libstdc++ for Bun and create app directory RUN apk add --no-cache libstdc++ && \