From 156667f5107babe13e235861c366e52990a3dceb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 18 Jul 2026 15:19:00 +0000 Subject: [PATCH] chore: release (beta) --- .changeset/pre.json | 2 ++ packages/start/CHANGELOG.md | 10 ++++++++++ packages/start/package.json | 2 +- 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index c9efaad40..c2a25e148 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -5,7 +5,9 @@ "@solidjs/start": "2.0.0-beta.7" }, "changesets": [ + "fix-2068-server-only-guard", "fix-dev-server-function-lookup", + "support-server-client-only", "tame-dingos-wave" ] } diff --git a/packages/start/CHANGELOG.md b/packages/start/CHANGELOG.md index bee3e6175..fd93729cb 100644 --- a/packages/start/CHANGELOG.md +++ b/packages/start/CHANGELOG.md @@ -1,5 +1,15 @@ # @solidjs/start +## 2.0.0-beta.9 + +### Minor Changes + +- f3e84ec: Add support for `server-only` and `client-only` modules + +### Patch Changes + +- a8a2328: fix: mark `@solidjs/start/http` and `@solidjs/start/middleware` as `server-only` so importing them from client-reachable code fails loudly at dev/build time, instead of silently shipping them to the browser where they crashed hydration and broke unrelated actions/forms with no diagnostic (#2068) + ## 2.0.0-beta.8 ### Patch Changes diff --git a/packages/start/package.json b/packages/start/package.json index 353a1d1d9..e985d9711 100644 --- a/packages/start/package.json +++ b/packages/start/package.json @@ -1,6 +1,6 @@ { "name": "@solidjs/start", - "version": "2.0.0-beta.8", + "version": "2.0.0-beta.9", "type": "module", "files": [ "dist",