Skip to content

Releases: solidjs/solid-start

@solidjs/start@2.0.0-alpha.1

20 Dec 00:45
4a8d415

Choose a tag to compare

Pre-release

Patch Changes

  • 8256190: Rework @solidjs/start/env

  • 6cbba24: Fix multiple Set-Cookie headers being lost on redirect responses

  • d4cc548: ## Bump Seroval

    • version 1.4.1
  • dd40610: Handle base url in api routes

  • 0c8a5e2: export server types from /server

@solidjs/start@1.2.0

11 Sep 18:47
d59409a

Choose a tag to compare

Minor Changes

  • b454563: adds the option to change the public directory to something other than the default "public"

Patch Changes

  • 7282ef4: fix: check for null instad of undefined in HeaderProxy
  • 12f3a3d: Handle multiple exports from the same file in fs-router
  • 222c8fc: Enhance route matching to return isPage flag and add tests for plain text API response and Missing page handling that has both api/file routes.
  • f674717: delete expired cookies in Single-Flight requests
  • 12f3a3d: Add a test route for multiple exports handling and correct variable typos

@solidjs/start@1.1.7

14 Jul 18:38
eafd915

Choose a tag to compare

Patch Changes

@solidjs/start@1.1.6

03 Jul 20:59
7d98afa

Choose a tag to compare

Patch Changes

  • ca310ec: respondWith and node.res.end behaves correctly

@solidjs/start@1.1.5

19 Jun 18:25
5d0c44e

Choose a tag to compare

Patch Changes

  • 2bae61e: fix infinite loop on unexpected response from server function (issue #1898)
  • bb5eaef: bump vinxi to latest AND pin @tanstack/server-functions-plugin to 1.121.21

@solidjs/start@1.1.4

12 May 14:17
7030a13

Choose a tag to compare

Patch Changes

  • #1888: Add back support for generators in server functions

@solidjs/start@1.1.3

03 Mar 22:36
a696b99

Choose a tag to compare

Patch Changes

  • ffd7cba: fix nested route with escaping resolved incorrectly (#1829).
    before /routes/nested/(ignored)route.tsx resolved to /nestedroute,
    and now it resolves to /nested/route.

@solidjs/start@1.1.2

03 Mar 02:39
4c26a2f

Choose a tag to compare

Patch Changes

  • 0c9bc47: Fix issue with anonymous default exports
  • 26e97be: Fix ssr for tanstack router

v1.1.1 - Constantly Exported

13 Feb 19:33
e3b9073

Choose a tag to compare

Patch Changes

  • efd762e: Bump tanstack server functions plugin
    This fixes export const in top-level "use server" files.
    The bundler warning for top-level "use server" is still there, but still code-removal works.

v1.1.0 - Gear 5

10 Feb 19:01
2683e26

Choose a tag to compare

gear 5

At last our first post 1.0 minor release!!

It took us some time but it is an important one. It includes the update to Vite 6 along with tons of bug fixes around Server functions. But the most important thing is over this time we've doubled down to make sure that we have a proper team supporting this project. This includes setting up the people and infrastructure for SolidStart to work independently from the core project. So we are cranking stuff up to Gear 5 to improve our release cadence and overall responsiveness.

We've been working very closely with @tannerlinsley and the Tanstack Start team in ushering the future of Metaframeworks and I'd almost call it one shared team at this point. That's the direction things are heading. These are more than sister projects but part of a unified picture for the future. More details of that will be revealed as the is collaboration continues.

Huge thanks to the SolidStart team for making this all possible: @birkskyum, @atilafassina, @katywings, @brenelz. PRs from @christhornham, @AirBorne04, @edivados, @loetjvr. As well as continued support from core team members @lxsmnsyc and @nksaraf.

Enjoy!
@ryansolid

Minor Changes

  • 4ec5d9b: - Added "OPTIONS" to the HTTP_METHODS array in packages/start/config/fs-router.js.
    I made this change so developers can handle preflight OPTIONS requests when using SolidStart as a public facing REST API.
    Existing users will not have to change their code. This change only adds an additional feature.
  • b434665: Vite 6 support
  • 600c115: move the RequestEventLocals definition into the App namespace for easier end user retyping

Patch Changes

  • 00c6d33: update vinxi to 0.5.3

  • df32b0d: Await internal sendWebResponse calls for middlewares that return responses.

  • cda037b: Return 404 when server-function is not found

  • a97093f: Move getServerFunctionMeta from @solidjs/start/server to @solidjs/start to fix circular import issues.

    The old export at @solidjs/start/server still exists, but is deprecated and will be removed in a future release.

  • 5a166a4: Adopt tanstack server functions plugin