Skip to content
Closed
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: 2 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"bump-solid-beta-26",
"bump-solid-beta-28",
"bump-solid-beta-29",
"bump-solid-beta-30",
"clean-lazy-entries",
"client-build-first-normal-order",
"client-manifest-outdir",
Expand All @@ -23,6 +24,7 @@
"empty-dragons-grow",
"external-dev-styles",
"fix-runnable-environment-check",
"fix-ssr-stream-abort-crash",
"host-integration-extension-points",
"lazy-entry-eliminated-importers",
"lazy-entry-rolldown-reclassify",
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 3.0.0-next.22

### Patch Changes

- d6fcfb9: update to solid 2.0.0-beta.30 and @dom-expressions/compiler 0.50.0-next.35 (the compiler's module-URL pass now also annotates `clientOnly(() => import("x"))` calls — third argument, options slot padded with `void 0` — so the beta.30 server half can emit early modulepreload hints for browser-only modules; `resolveLazyModuleUrls` already resolves the placeholder position-independently)
- d1b2ed0: The generated SSR handler no longer crashes the server process when a client aborts a streaming response mid-flight. Enqueueing into a closed `ReadableStream` controller throws, and a streamed fragment can land seconds after the shell — an abort (page reload, navigation away) during that window took down the whole Node process with `ERR_INVALID_STATE`. Writes are now dropped once the stream closes or is cancelled.

## 3.0.0-next.21

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vite-plugin-solid",
"version": "3.0.0-next.21",
"version": "3.0.0-next.22",
"description": "solid-js integration plugin for vite 6/7/8",
"type": "module",
"files": [
Expand Down