One grouped update advances four dependencies while leaving application source untouched. It continues the bounded maintenance approach from the earlier [package refresh](/posts/a-small-maintenance-window#the-boundary-of-this-update), this time spanning error reporting, test DOMs, and the build tool.

## Keep the update in one review

The changes stay within the packages' existing major versions. Dependabot groups the SDK, both DOM test environments, and Vite in one update, with the manifest recording the updated version ranges and the lockfile recording their resolved dependency trees.

```text
@sentry/sveltekit  10.73.0 → 10.75.0
happy-dom          20.11.13 → 20.14.5
jsdom              30.0.1 → 30.1.0
vite                8.2.2 → 8.3.0
```

The diff is limited to `package.json` and `pnpm-lock.yaml`; no application code changes with it. The update keeps the toolchain's declared versions current while preserving a reproducible install from the lockfile.

There is no player-facing behavior change to claim from this range.