Problem
api/package.json asks for hono: ^4.13.5 (bumped in #3249), but its overrides block still pins "hono": "^4.12.27". Bun applies the override, so api/bun.lock locks hono@4.12.27 and every API image ships 4.12.27. #3249 only changed the dependency spec line inside the lockfile; the resolved package never moved.
Evidence
Fix
Raise the hono override to ^4.13.5 (or drop it if no transitive consumer still needs forcing), regenerate api/bun.lock, and confirm hono resolves to 4.13.5 or later. Audit the other overrides entries (@hono/node-server, defu, postcss) for the same stale-pin pattern.
Acceptance criteria
Problem
api/package.jsonasks forhono: ^4.13.5(bumped in #3249), but itsoverridesblock still pins"hono": "^4.12.27". Bun applies the override, soapi/bun.locklockshono@4.12.27and every API image ships 4.12.27. #3249 only changed the dependency spec line inside the lockfile; the resolved package never moved.Evidence
api/bun.lockat 466c49a:"hono": ["hono@4.12.27", ...], withoverrides"hono": "^4.12.27".api/package-lock.json; none is open againstapi/bun.lock.Fix
Raise the hono override to
^4.13.5(or drop it if no transitive consumer still needs forcing), regenerateapi/bun.lock, and confirm hono resolves to 4.13.5 or later. Audit the otheroverridesentries (@hono/node-server,defu,postcss) for the same stale-pin pattern.Acceptance criteria
api/bun.lockresolves hono 4.13.5 or lateroverridesentry pins a package below its direct dependency range or below a known patched version