Version Packages (next) - #291
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/next
branch
from
July 29, 2026 17:51
5bc9705 to
494dd5c
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to next, this PR will be updated.
nextis currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, runchangeset pre exitonnext.Releases
vite-plugin-solid@3.0.0-next.19
Patch Changes
83f7bb5: Two pieces hoisted from SolidStart so any host gets them plugin-side:
lives in the Vite process and is normally reached through a
process-global registry; hosts that evaluate server modules in an
isolated module runner (nitro's dev worker, workerd via
@cloudflare/vite-plugin) can't see it, which broke lazy-route CSS and
hydration preloads in dev. With
ssrenabled the dev server now servesGET /@vite-plugin-solid/dev-manifest?key=<module key>(ResolvedAssetsJSON,
nullfor unresolvable keys), and the dev flavor ofvirtual:solid-manifesttransparently falls back to fetching it when theregistry has no entry for the root — the endpoint URL is baked in at
module generation time from the live server's resolved origin, so
isolated runners need zero host code. In-process consumers still
short-circuit on the registry hit and never touch HTTP. Misses log loudly
on both sides (registry miss / empty resolution on the serve side,
non-OK responses and network failures on the fetch side) and resolve to
null, keeping the runtime's own no-assets warning as the finalcatch-all.
server-only/client-onlyboundary marker modules:importing
server-onlyfrom a module bundled for the client fails thebuild with an error naming the importer (and vice versa for
client-only); the allowed environment resolves the marker to an emptymodule. Ambient type declarations ship at
vite-plugin-solid/boundary-modules. The bare specifiers are claimedeven when React's same-named npm packages are installed; the errors are
prefixed
[vite-plugin-solid].8386fb4: Let provider-owned SSR environments serve turnkey development requests without
calling
ssrLoadModule. Entry CSS and server functions are transported throughthe generated handler so isolated runtimes retain SSR styles and HMR support.
Add
ssr.externalfor integrations that also own the server build wiring.