diff --git a/.changeset/dev-toolbar-error-stack-parser-es.md b/.changeset/dev-toolbar-error-stack-parser-es.md deleted file mode 100644 index 54c45ac7c..000000000 --- a/.changeset/dev-toolbar-error-stack-parser-es.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@solidjs/start": patch ---- - -Parse stack traces in the dev toolbar's error overlay with `error-stack-parser-es/lite` instead of `error-stack-parser`. The lite entry point is a much smaller, ESM-only parser that returns plain frame objects rather than class instances, and it no longer pulls in the `stackframe` package. Errors that carry no stack are now handled as an empty frame list instead of throwing. diff --git a/.changeset/dev-toolbar-redesign.md b/.changeset/dev-toolbar-redesign.md deleted file mode 100644 index dd1a77cb8..000000000 --- a/.changeset/dev-toolbar-redesign.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@solidjs/start": patch ---- - -Redesign the dev toolbar. The toolbar and its panels share a common set of design tokens, giving them a consistent dark palette, translucent surfaces, and elevation. The server function inspector is now a master-detail split with a persistent call list beside the request/response pane, and the error overlay places the stack frame list beside a code preview that fills the panel. Headers, form data, and URL search params render as aligned key-value tables, the hex viewer gains an offset gutter with the ASCII column aligned per row, and blobs are shown as file cards with their type and size. The seroval body inspector is now an expandable tree with collapsed previews, syntax-colored values, cycle detection, and live promise and stream state, replacing the previous column-based drill-down. - -Along with the redesign, the toolbar only starts a drag from the toolbar itself rather than from its panels, unhandled promise rejections are captured by the error overlay, the code preview shows more surrounding lines, and a stack frame whose source cannot be loaded now stays listed and reports that its source is unavailable instead of silently rendering nothing. diff --git a/.changeset/dev-toolbar-trace-mapping.md b/.changeset/dev-toolbar-trace-mapping.md deleted file mode 100644 index b033fe74c..000000000 --- a/.changeset/dev-toolbar-trace-mapping.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@solidjs/start": patch ---- - -Use `@jridgewell/trace-mapping` instead of `source-map-js` to resolve original sources in the dev toolbar's error overlay. It decodes mappings lazily, so only the positions actually inspected are resolved, it is significantly smaller in the browser bundle, and it understands indexed source maps. diff --git a/.changeset/olive-donkeys-shave.md b/.changeset/olive-donkeys-shave.md deleted file mode 100644 index f863a3e12..000000000 --- a/.changeset/olive-donkeys-shave.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@solidjs/start": patch ---- - -Pre-bundle the dev toolbar's CommonJS dependencies so it no longer throws on every dev page load diff --git a/.changeset/update-solid-1-9-15.md b/.changeset/update-solid-1-9-15.md deleted file mode 100644 index 73904d3a8..000000000 --- a/.changeset/update-solid-1-9-15.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@solidjs/start": patch ---- - -Update Solid to 1.9.15 to include the latest lazy loading and hydration fixes diff --git a/packages/start/CHANGELOG.md b/packages/start/CHANGELOG.md index 3a396e504..54f178f51 100644 --- a/packages/start/CHANGELOG.md +++ b/packages/start/CHANGELOG.md @@ -1,5 +1,18 @@ # @solidjs/start +## 2.0.4 + +### Patch Changes + +- ac3f321: Parse stack traces in the dev toolbar's error overlay with `error-stack-parser-es/lite` instead of `error-stack-parser`. The lite entry point is a much smaller, ESM-only parser that returns plain frame objects rather than class instances, and it no longer pulls in the `stackframe` package. Errors that carry no stack are now handled as an empty frame list instead of throwing. +- ac3f321: Redesign the dev toolbar. The toolbar and its panels share a common set of design tokens, giving them a consistent dark palette, translucent surfaces, and elevation. The server function inspector is now a master-detail split with a persistent call list beside the request/response pane, and the error overlay places the stack frame list beside a code preview that fills the panel. Headers, form data, and URL search params render as aligned key-value tables, the hex viewer gains an offset gutter with the ASCII column aligned per row, and blobs are shown as file cards with their type and size. The seroval body inspector is now an expandable tree with collapsed previews, syntax-colored values, cycle detection, and live promise and stream state, replacing the previous column-based drill-down. + + Along with the redesign, the toolbar only starts a drag from the toolbar itself rather than from its panels, unhandled promise rejections are captured by the error overlay, the code preview shows more surrounding lines, and a stack frame whose source cannot be loaded now stays listed and reports that its source is unavailable instead of silently rendering nothing. + +- ac3f321: Use `@jridgewell/trace-mapping` instead of `source-map-js` to resolve original sources in the dev toolbar's error overlay. It decodes mappings lazily, so only the positions actually inspected are resolved, it is significantly smaller in the browser bundle, and it understands indexed source maps. +- f619c7f: Pre-bundle the dev toolbar's CommonJS dependencies so it no longer throws on every dev page load +- d43ad1b: Update Solid to 1.9.15 to include the latest lazy loading and hydration fixes + ## 2.0.3 ### Patch Changes diff --git a/packages/start/package.json b/packages/start/package.json index 7fc1fc45a..26713064f 100644 --- a/packages/start/package.json +++ b/packages/start/package.json @@ -1,6 +1,6 @@ { "name": "@solidjs/start", - "version": "2.0.3", + "version": "2.0.4", "repository": { "type": "git", "url": "git+https://github.com/solidjs/solid-start.git",