Skip to content

@tanstack/solid-router-ssr-query@2.0.0-rc.1

Pre-release
Pre-release

Choose a tag to compare

@github-actions github-actions released this 19 Aug 22:03
· 22 commits to main since this release
Immutable release. Only release title and notes can be modified.
b6984af

Patch Changes

  • #8081 252caa8 - lazyRouteComponent now delegates to Solid's lazy() using its { export }
    option (solid-js 2.0.0-rc.1): the module namespace passes through untouched,
    so SSR'd route chunks resolve their client assets (stylesheet links,
    modulepreload hints, hydration gating) through the client-assets manifest,
    and hydration claims the component synchronously from the preloaded module.
    Failed chunk downloads are retried by the next preload or render, and the
    module-not-found reload-once behavior is unchanged. Solid packages are
    bumped to the 2.0.0-rc.1 line (@solidjs/vite-plugin 3.0.0-next.30).

  • #8080 b60b741 - Register head tags through Solid's useHead registry. HeadContent now
    feeds the route-derived tags to Solid's head registry as one reactive group
    instead of rendering elements in-tree: the registry owns head emission on
    both runtimes (SSR splicing/streaming and client-side patching), replacing
    the manual relocate-into-head, imperative script injection, and
    document.title syncing. Inline scripts and styles carry a stable
    content-derived key so server and client reconcile on the same identity.
    HeadContent can now be rendered anywhere in the tree. The dedicated
    development entry (index.dev) and its development export conditions are
    retired along with it.