Skip to content

Commit 454b8a3

Browse files
committed
fix(docker): align the remaining bun pins with 1.3.14
Two pins were missed in the first pass because the search was scoped to docker/, package.json and .github/workflows/: - .devcontainer/Dockerfile still built on oven/bun:1.3.13-alpine - PI_BUN_VERSION in apps/sim/scripts/pi-sandbox-packages.ts was still 1.3.13, despite being documented as mirroring the root packageManager field, so Pi sandbox images would have kept installing the Bun release that cannot load the Next 16.3.0 server runtime. Fixed surgically rather than with a repo-wide replace: "1.3.13" also appears inside SVG path data in apps/sim/components/icons.tsx and apps/docs/components/icons.tsx, which a blind sed would have corrupted.
1 parent d61ec74 commit 454b8a3

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM oven/bun:1.3.13-alpine
1+
FROM oven/bun:1.3.14-alpine
22

33
# Install necessary packages for development
44
RUN apk add --no-cache \

apps/sim/scripts/pi-sandbox-packages.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*/
1515

1616
/** Bun version mirrored from the root packageManager field. */
17-
export const PI_BUN_VERSION = '1.3.13'
17+
export const PI_BUN_VERSION = '1.3.14'
1818

1919
/** Exact global package versions mirrored from package.json and bun.lock. */
2020
export const PI_GLOBAL_NPM_PACKAGES = [

0 commit comments

Comments
 (0)