diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 3ee72ebb..d3d0b4c8 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.13-alpine as base +FROM oven/bun:1.2.15-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 04e53ed3..8e6daf4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ - [x] 🥺 Emoji Reactions are now available! You can react to any note with custom emojis. - [x] 🔎 Added support for [batch account data API](https://docs.joinmastodon.org/methods/accounts/#index). +### Backend + +- [x] 🚀 Upgraded Bun to `1.2.15` + # `0.8.0` • Federation 2: Electric Boogaloo ## Backwards Compatibility diff --git a/Dockerfile b/Dockerfile index 0ff83039..41f5dadf 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.13-alpine +FROM oven/bun:1.2.15-alpine # Install libstdc++ for Bun and create app directory RUN apk add --no-cache libstdc++ && \ diff --git a/Worker.Dockerfile b/Worker.Dockerfile index 68bcde25..5c9a146b 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.13-alpine +FROM oven/bun:1.2.15-alpine # Install libstdc++ for Bun and create app directory RUN apk add --no-cache libstdc++ && \