Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@
"client-manifest-outdir",
"dev-css-and-client-manifest",
"empty-dragons-grow",
"lazy-entry-eliminated-importers",
"lazy-entry-rolldown-reclassify",
"lazy-load-native-compiler",
"lazy-manifest-robustness",
"native-compiler-option",
"server-functions-compiler",
"server-functions-default-runtime",
"six-lions-joke",
"true-boxes-arrive"
]
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## 3.0.0-next.11

### Patch Changes

- 1914c40: Reclassify emitted lazy facade chunks even when their importers are eliminated from the final bundle. Emitted chunk references are now retained so lazy facades can be identified without relying on a surviving `dynamicImports` edge.
- bd2ed3f: Server functions now default their runtime to `@solidjs/web/server-functions`
(requires the solid release that ships that subpath): the `runtime` option is
optional and `serverFunctions: true` enables the compiler with the defaults.
The package's export conditions resolve the client or server half per
environment, so one specifier serves both builds — compiled output imports
`registerServerReference` / `createServerReference` from it and the HTTP endpoint
is one call to its `handleServerFunctionRequest` (see the reworked
`examples/server-functions` fixture, which also round-trips the `respond()`
helper). Custom runtimes still plug in through `runtime.{server,client}`.

## 3.0.0-next.10

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vite-plugin-solid",
"version": "3.0.0-next.10",
"version": "3.0.0-next.11",
"description": "solid-js integration plugin for vite 3/4/5/6/7",
"type": "module",
"files": [
Expand Down