Skip to content

Releases: solidjs/solid-start

@solidjs/start@2.0.5

Choose a tag to compare

@github-actions github-actions released this 10 Sep 20:37
56197ef

Patch Changes

  • eca4cc4: Only strip a whole index segment when mapping route files to paths. Route files whose names merely end in "index", such as routes/reindex.tsx, were previously served at /re instead of /reindex.

@solidjs/start@2.0.4

Choose a tag to compare

@github-actions github-actions released this 24 Aug 22:30
5d23efb

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

@solidjs/start@2.0.3

Choose a tag to compare

@github-actions github-actions released this 20 Aug 21:22
22f07b8

Patch Changes

  • 91fc972: Prefix production entry scripts, stylesheets, modulepreloads, and serialized manifest paths with Vite's configured base URL.

@solidjs/start@2.0.2

Choose a tag to compare

@github-actions github-actions released this 19 Aug 12:23
97fee2a

Patch Changes

  • e21fadf: fix potentially incomplete first chunk for chunk readers
  • d78288f: Declare an explicit Content-Type: text/plain; charset=utf-8 on seroval-stream server function responses (success and error paths) so intermediaries cannot content-sniff a type onto them

@solidjs/start@2.0.1

Choose a tag to compare

@github-actions github-actions released this 18 Aug 10:58
af827ad

Patch Changes

  • fd5e2ae: Delegate vite preview to Nitro when its preview plugin is active, including for static builds that intentionally have no server entry.

@solidjs/start@2.0.0

Choose a tag to compare

@github-actions github-actions released this 04 Aug 19:47
e0edaa1

Highlights

SolidStart v2 is now stable. This release replaces Vinxi with direct use of Vite’s Environment API, providing Solid v1 applications with a simpler Vite 8 and Rolldown-powered foundation, improved compatibility with the Vite ecosystem, and direct integration with deployment plugins.

SolidStart v2 requires Node.js 24 or newer and Vite 8. Most SolidStart v1 applications can upgrade by moving their framework configuration from app.config.ts to vite.config.ts and following the migration guide.

@solidjs/start@2.0.0-rc.10

Pre-release

Choose a tag to compare

@github-actions github-actions released this 02 Aug 13:59
f7023cf

Minor Changes

  • 3f2b7a7: The file filter logic used for CSS crawling in development can now be configured with the vite plugin option css.filter analog to serverFunctions.filter:

    solidStart({
      css: {
        filter: {
          // Exclude all node_modules except "my-dependency" with a flat node_modules layout
          exclude: "node_modules/!(my-dependency)/**/*",
        },
      },
    });

Patch Changes

  • 6581877: Fixed shared chunk css not being server rendered in production (Vite 8 regression).
  • 37d4488: Migrate the built-in Vite configuration from the deprecated rollupOptions alias to rolldownOptions.
  • 3f2b7a7: Fixed css from files with url sensitive characters such as + not being server-rendered.

@solidjs/start@2.0.0-rc.9

Pre-release

Choose a tag to compare

@github-actions github-actions released this 30 Jul 16:01
4fbca7a

Patch Changes

  • 8eef552: Remove type-only import remnants from client server-function transforms so they do not retain server-only dependency chains.

@solidjs/start@2.0.0-rc.8

Pre-release

Choose a tag to compare

@github-actions github-actions released this 30 Jul 02:27
ffeb0be

Patch Changes

  • 3573985: Await asynchronous serverFunctions.onError handlers before serializing server function errors.
    Preserve the original error if the handler throws or rejects.

@solidjs/start@2.0.0-rc.7

Pre-release

Choose a tag to compare

@github-actions github-actions released this 29 Jul 17:14
0a49519

Patch Changes

  • 87d73e1: chore: bump seroval to v1.6.0