Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/admin/Dockerfile.admin
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN corepack enable pnpm

FROM base AS builder

RUN pnpm add -g turbo@2.8.12
RUN pnpm add -g turbo@2.9.4

COPY . .

Expand Down
2 changes: 1 addition & 1 deletion apps/live/Dockerfile.live
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN apk update
RUN apk add --no-cache libc6-compat
# Set working directory
WORKDIR /app
ARG TURBO_VERSION=2.8.12
ARG TURBO_VERSION=2.9.4
RUN corepack enable pnpm && pnpm add -g turbo@${TURBO_VERSION}
COPY . .
RUN turbo prune --scope=live --docker
Expand Down
2 changes: 1 addition & 1 deletion apps/space/Dockerfile.space
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ RUN corepack enable pnpm

FROM base AS builder

RUN pnpm add -g turbo@2.8.12
RUN pnpm add -g turbo@2.9.4

COPY . .

Expand Down
2 changes: 1 addition & 1 deletion apps/web/Dockerfile.web
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN apk add --no-cache libc6-compat
# Set working directory
WORKDIR /app

ARG TURBO_VERSION=2.8.12
ARG TURBO_VERSION=2.9.4
RUN corepack enable pnpm && pnpm add -g turbo@${TURBO_VERSION}
COPY . .

Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"lint-staged": "16.2.7",
"oxfmt": "0.35.0",
"oxlint": "1.51.0",
"turbo": "2.8.12"
"turbo": "2.9.4"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,cjs,mjs,cts,mts,json,css,md}": [
Expand Down Expand Up @@ -75,7 +75,8 @@
"picomatch": "2.3.2",
"yaml@1": "1.10.3",
"yaml@2": "2.8.3",
"path-to-regexp": "0.1.13"
"path-to-regexp": "0.1.13",
"defu": "6.1.5"
},
Comment on lines 75 to 80
Copy link

Copilot AI Apr 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR is described as only upgrading Turborepo, but it also introduces a new pnpm.overrides pin for defu (and the lock/workspace catalog changes include other dependency bumps like lodash-es). Please confirm these additional dependency changes are intentional and update the PR description/scope accordingly (or split them into a separate PR) so reviewers can evaluate the extra risk appropriately.

Copilot uses AI. Check for mistakes.
"onlyBuiltDependencies": [
"@parcel/watcher",
Expand Down
170 changes: 86 additions & 84 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pnpm-workspace.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ catalog:
"@types/react": 18.3.11
axios: 1.13.5
express: 4.22.0
lodash-es: 4.17.23
lodash-es: 4.18.0
Copy link

Copilot AI Apr 6, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The workspace catalog pins lodash-es to 4.18.0, but the lockfile marks lodash-es@4.18.0 as deprecated with the note “Bad release. Please use lodash-es@4.17.23 instead.” This pin should be reverted (e.g., back to 4.17.23) or updated to a known-good lodash-es version to avoid pulling a broken/deprecated release across the monorepo.

Suggested change
lodash-es: 4.18.0
lodash-es: 4.17.23

Copilot uses AI. Check for mistakes.
lucide-react: 0.469.0
mobx-react: 9.1.1
mobx-utils: 6.0.8
Expand Down
Loading