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: 1 addition & 1 deletion .changeset/chilled-turkeys-leave.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"@solidjs/start": patch
---

Fix multiple Set-Cookie headers being lost on redirect responses
Fix multiple `Set-Cookie` headers being lost on redirect responses
2 changes: 1 addition & 1 deletion .changeset/eager-wings-crash.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"@solidjs/start": minor
---

fix onBeforeResponse
fix `body` being `undefined` for `onBeforeResponse` middlewares
2 changes: 1 addition & 1 deletion .changeset/nasty-ladybugs-trade.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"@solidjs/start": patch
---

Handle base url in api routes
Handle base url in API routes
10 changes: 9 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,17 @@
},
"changesets": [
"brave-baboons-talk",
"calm-paths-pull",
"chilled-turkeys-leave",
"eager-wings-crash",
"eight-months-camp",
"fifty-flies-yell",
"fresh-eyes-bet",
"little-gifts-wave",
"moody-hands-check",
"nasty-ladybugs-trade",
"sharp-llamas-grab"
"sharp-llamas-grab",
"tricky-hounds-relate",
"wicked-laws-bake"
]
}
2 changes: 1 addition & 1 deletion .changeset/sharp-llamas-grab.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
"@solidjs/start": patch
---

export server types from /server
export server types from `/server`
7 changes: 7 additions & 0 deletions packages/start-nitro-v2-vite-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @solidjs/vite-plugin-nitro-2

## 0.2.0-alpha.0

### Minor Changes

- 9c1c936: fix edge presets like netlify and cloudflare
- 64b0c2c: needed to avoid weird issues like Cannot resolve "@tailwindcss/oxide-android-arm64/package.json"

## 0.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/start-nitro-v2-vite-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@solidjs/vite-plugin-nitro-2",
"description": "Nitro v2 plugin for development with SolidStart 2.0",
"version": "0.1.0",
"version": "0.2.0",
"type": "module",
"scripts": {
"build": "tsc",
Expand Down
14 changes: 14 additions & 0 deletions packages/start/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @solidjs/start

## 2.0.0-alpha.2

### Minor Changes

- 10bf932: Fix path resolution on Windows
- 40d5a27: fix onBeforeResponse
- 9201e71: fix text/html missing when ssr is false
- a9cd2cc: add `vite preview` support

### Patch Changes

- 7077a49: Fixed CSS from shared chunks not being collected via the chunk name.
- a620eeb: Fixed virtual module CSS not being collected in vite dev.

## 2.0.0-alpha.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/start/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@solidjs/start",
"version": "2.0.0-alpha.1",
"version": "2.0.0-alpha.2",
"type": "module",
"scripts": {
"build": "pnpm validate-imports && tsc && node scripts/build.js",
Expand Down
Loading