Version Packages (next) - #290
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/next
branch
2 times, most recently
from
July 29, 2026 07:32
cff325c to
972201c
Compare
github-actions
Bot
force-pushed
the
changeset-release/next
branch
from
July 29, 2026 07:34
972201c to
1e982e9
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.18
Patch Changes
cdb19bf: update to solid 2.0.0-beta.28 and @dom-expressions/compiler 0.50.0-next.33
98fd955: Three extension points for composing the plugin with host environments
(e.g. @cloudflare/vite-plugin) without giving up the turnkey option forms:
serverFunctions.devMiddlewareoption (defaulttrue): setfalseto keep the plugin's dev middleware off the endpoint so a host's server
environment owns dispatch in dev — functions then run where the bindings
live (e.g. workerd), exactly like production. Compilation and the
manifest/handler virtual modules keep working; the host loads
virtual:solid-server-function-handleritself and calls itshandleServerFunctionRequest(request)export (and should side-effectimport
virtual:solid-server-function-manifestin its server entry tocover functions referenced only by client code, since the middleware's
on-demand loading is off too).
app builds, absorbed into the plugin: with
ssrenabled, a pre-orderbuildApphook (Vite 7.1+) builds the client environment (manifest andall) before any other orchestrator runs, so setups whose orchestrator
builds server environments first — @cloudflare/vite-plugin builds workers
before the client — no longer need a hand-written ordering plugin for the
server bundle to bake real hashed assets. A post-order hook reinstates
Vite's build-everything fallback when no other orchestrator built
anything, so plain
builder: {}setups (turnkey included) behave exactlyas before, just explicitly client-first.
serverFunctions.configureoption: path to a server-only module(resolved against the Vite root) that the generated
virtual:solid-server-function-handlermodule side-effect imports beforeany dispatch. The guaranteed pre-dispatch home for server-side runtime
registration — e.g.
configureServerFunctionsServer({ collectFlightData })for a router's single-flight collector — effective on both dispatch
surfaces (dev middleware and production handler, where it bundles into
the handler chunk), immune to the dev-restart race where app-graph
registration only loads with the first page render, and hot-invalidating
the handler when edited in dev.
62d9a89: Send non-client server environments their own full-reload signal during hot
updates. Environment-runner based servers now re-evaluate changed modules
instead of serving stale SSR output, while client HMR remains unaffected.