Version Packages (next) - #329
Merged
Merged
Conversation
github-actions
Bot
force-pushed
the
changeset-release/next
branch
from
August 26, 2026 07:42
9751feb to
e648cad
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
@solidjs/vite-plugin@3.0.0-next.34
Minor Changes
diagnosticsoption (dev serve only): injects a client module that installs the in-page bridge from the app's own@solidjs/diagnosticsand serves a/__solid/diagnosticsendpoint on the dev server. Out-of-process consumers (agents, tests, curl) drive capture sessions (begin/end),whyDidRun, and cost queries over the Vite WebSocket. Works for plain index.html apps (transformIndexHtml injection) and start mode (generated/custom client entry injection).@solidjs/diagnosticsis a type-only dependency of the plugin; the runtime bridge always comes from the app's installed copy.@solidjs/compiler(was@dom-expressions/compiler) and the Babel escape hatch is@solidjs/babel-plugin(wasbabel-preset-solid— now a plugin rather than a preset, hosted inpluginswith the same pass order: user plugins run before it, user presets after). Both backends now bake in the Solid defaults (moduleName: "@solidjs/web", the control-flowbuiltIns,contextToCustomElements,wrapConditionals), so the plugin only passes the posture it actually decides (generate/hydratable/dev/serverComponents) plus usersolidoptions, which override the built-in defaults exactly as before.Patch Changes
server-only/client-onlyboundary guard no longer crashes whenthis.environmentisn't available on resolve hooks, and now detects thetarget environment through the same
getEnvironmentConsumerhelper usedby the rest of the plugin, falling back to the resolve hook's
ssrflagwhen the environment is absent.