Skip to content

Commit 1430d6f

Browse files
committed
chore: ⬆️ Upgrade to Bun 1.3.2
1 parent f00ac1a commit 1430d6f

10 files changed

Lines changed: 16 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
### Backend
1111

12-
- [x] 🚀 Upgraded Bun to `1.2.18`
12+
- [x] 🚀 Upgraded Bun to `1.3.2`
1313

1414
# `0.8.0` • Federation 2: Electric Boogaloo
1515

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ RUN bun run build api
2424
WORKDIR /temp/dist
2525

2626
# Copy production dependencies and source code into final image
27-
FROM oven/bun:1.2.18-alpine
27+
FROM oven/bun:1.3.2-alpine
2828

2929
# Install libstdc++ for Bun and create app directory
3030
RUN mkdir -p /app

Worker.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ RUN bun run build worker
2424
WORKDIR /temp/dist
2525

2626
# Copy production dependencies and source code into final image
27-
FROM oven/bun:1.2.18-alpine
27+
FROM oven/bun:1.3.2-alpine
2828

2929
# Install libstdc++ for Bun and create app directory
3030
RUN mkdir -p /app

bun.lock

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bunfig.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,6 @@
33

44
[test]
55
preload = ["./packages/tests/setup.ts"]
6+
7+
[install]
8+
linker = "hoisted"

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

nix/package.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ in
5454
# Required else we get errors that our fixed-output derivation references store paths
5555
dontFixup = true;
5656

57-
outputHash = "sha256-U1bCDAFWmA4kJw9LODdhP0bKIZ4pxAscS6aVLNV9lkI=";
57+
outputHash = "sha256-2ytoiv8+0XTcGhxb/f/xmFk8xWpfotFD0Z+ZIfG9j/I=";
5858
outputHashAlgo = "sha256";
5959
outputHashMode = "recursive";
6060
};

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
],
4242
"catalog": {
4343
"@biomejs/biome": "2.3.4",
44-
"@types/bun": "~1.2.18",
44+
"@types/bun": "~1.3.2",
4545
"@types/html-to-text": "~9.0.4",
4646
"@types/markdown-it-container": "~2.0.10",
4747
"@types/mime-types": "~3.0.1",

packages/kit/db/notification.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,6 @@ export class Notification extends BaseInterface<
189189
created_at: new Date(this.data.createdAt).toISOString(),
190190
id: this.data.id,
191191
type: this.data.type,
192-
event: undefined,
193192
status: this.data.status
194193
? await new Note(this.data.status).toApi(account)
195194
: undefined,

utils/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import type { HonoEnv } from "~/types/api.ts";
88
export const createServer = (
99
config: z.infer<typeof ConfigSchema>,
1010
app: Hono<HonoEnv>,
11-
): Server =>
11+
): Server<undefined> =>
1212
serve({
1313
port: config.http.bind_port,
1414
reusePort: true,

0 commit comments

Comments
 (0)