Skip to content

Rox 2026.6.0

Latest

Choose a tag to compare

@github-actions github-actions released this 21 Jun 12:36
b455658

Version Information

Component Version
Rox (Project) 2026.6.0
Hono Rox (Backend) 1.8.0
Waku Rox (Frontend) 1.8.0
Shared 1.8.0

⚠️ Upgrade Notes

This release is a maintenance + toolchain release. No database migrations and no breaking API changes — pulling the new version and reinstalling dependencies is enough.

git pull origin main
bun install --frozen-lockfile
bun run build

TypeScript 7 (RC) toolchain

  • The workspace now builds and type-checks with TypeScript 7.0.1-rc, the native (Go) compiler. The tsc command is unchanged. This affects contributors and anyone building from source — runtime behavior is unaffected.
  • It is still an RC. If you maintain a fork, run your full CI before relying on it in production.
  • Editor setup: to use TS7 in VS Code / JetBrains, point the workspace TypeScript version at node_modules/typescript/lib.
  • TypeDoc does not support TS7 yet, so API-doc generation runs from an isolated install pinned to TypeScript 6 under tools/apidocs/. To build docs locally, run bun run typedoc:install once, then bun run typedoc.
  • ioredis is pinned to a single version (5.11.1) via overrides to dedupe with BullMQ. If you adjust dependencies, keep this override in place.

Dependency refresh

  • All dependencies were updated to their latest versions (React 19.2.7, Hono 4.12.26, @lingui/* 6.4.0, @sentry/* 10.59.0, BullMQ 5.79.0, pg 8.22.0, sharp 0.35.2, Vite 8.0.16, Waku 1.0.0-beta.3, and more). A clean bun install --frozen-lockfile is recommended after pulling.

Optional: multiplexed Sentry transport

  • New optional environment variables SENTRY_SECONDARY_DSN / VITE_SENTRY_SECONDARY_DSN. When set, every event is delivered to both the primary and the secondary DSN via a multiplexed transport (each destination retries independently) — handy for comparing Sentry / GlitchTip / Bugsink side by side.
  • Fully backward compatible: leave them unset and behavior is identical to before.

What's Changed

🚀 New Features

🧰 Maintenance


Full Changelog: v2026.5.1...v2026.6.0