Skip to content
Open
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
14 changes: 14 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
"mode": "pre",
"tag": "next",
"changesets": [
"adapter-node-manifest-mime-types",
"allow-hyphenated-params-matchers",
"app-manifest-module",
"better-clocks-own",
Expand All @@ -10,6 +11,7 @@
"bold-aliens-know",
"brave-canyons-crash",
"brave-files-cheat",
"breezy-bananas-divide",
"bright-mails-repair",
"callable-param-matchers",
"chilly-berries-press",
Expand All @@ -18,6 +20,7 @@
"cold-carrots-raise",
"collect-nested-refreshes",
"common-wings-doubt",
"compress-returns-files",
"cookies-get-cached-parse",
"cookies-getall-delete-phantom",
"cozy-crabs-attend",
Expand All @@ -38,12 +41,14 @@
"eight-lions-argue",
"eight-melons-brake",
"eighty-cups-jam",
"eighty-donuts-argue",
"eighty-paws-love",
"elliott-is-uncreative",
"env-empty-string",
"env-function-validators",
"fair-baths-pull",
"famous-bars-search",
"famous-pandas-hammer",
"famous-yaks-kneel",
"fast-feet-travel",
"feat-service-worker-module",
Expand Down Expand Up @@ -80,6 +85,7 @@
"inline-page-manifest",
"jolly-adults-wave",
"khaki-lights-design",
"kit-prerendered-mime-types",
"large-onions-attack",
"large-pugs-clap",
"late-lands-watch",
Expand Down Expand Up @@ -134,6 +140,7 @@
"rename-noscroll-keepfocus-reset",
"reserved-keyword-remote-exports",
"reset-failed-boundary-on-navigation",
"resolve-route-escape-sequences",
"respond-with-error-status",
"rich-poems-happen",
"ripe-boats-think",
Expand All @@ -142,6 +149,8 @@
"ripe-trains-dance",
"rolldown-min-version",
"route-changed-after-error-page",
"route-id-bracket-escapes",
"routeid-only-real-routes",
"salty-chefs-sleep",
"serialize-query-set-during-ssr",
"shiny-feet-crash",
Expand All @@ -163,6 +172,7 @@
"ten-lands-send",
"ten-worms-shine",
"thick-needles-fold",
"tidy-donkeys-shake",
"tidy-hoops-brake",
"tidy-icons-rest",
"tidy-pumas-travel",
Expand All @@ -172,7 +182,11 @@
"tweak-types-dedup",
"upset-cities-vanish",
"upset-needles-beg",
"vary-only-when-precompressed",
"violet-planets-tell",
"whole-buckets-clean",
"wide-mangos-admire",
"wild-donkeys-listen",
"wise-pumas-deny"
]
}
10 changes: 10 additions & 0 deletions packages/adapter-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @sveltejs/adapter-node

## 6.0.0-next.7

### Patch Changes

- fix: serve static files with the Content-Type recorded in the manifest ([#16564](https://github.com/sveltejs/kit/pull/16564))

- fix: don't send `Vary: Accept-Encoding` for assets that were never precompressed ([#16566](https://github.com/sveltejs/kit/pull/16566))
- Updated dependencies [[`b655dc7`](https://github.com/sveltejs/kit/commit/b655dc7cf043ff01d53e494e9744e548bb3ad9fd), [`b325afb`](https://github.com/sveltejs/kit/commit/b325afb509b54445f678348e88ea2bf0152f4cec), [`e76b3d7`](https://github.com/sveltejs/kit/commit/e76b3d778bacb429fdb40a41b13ff04b54d97c1f), [`fe9d8d9`](https://github.com/sveltejs/kit/commit/fe9d8d939b6d1a07b2957104fda6a1123f5eebd3), [`08d7e2a`](https://github.com/sveltejs/kit/commit/08d7e2a1b327d4e68c217f6e7d6b305732c82b1b), [`f4222ad`](https://github.com/sveltejs/kit/commit/f4222adc504a7041b50325424a3eb86af02961ed), [`089628b`](https://github.com/sveltejs/kit/commit/089628b0d9637578085ad61b5786cd1c4476e399), [`d8617b3`](https://github.com/sveltejs/kit/commit/d8617b3f2f08144f6acfc7c636b89d62b982a33d), [`38f1528`](https://github.com/sveltejs/kit/commit/38f15289e249942275eab1281516702de08b7a30), [`40092f3`](https://github.com/sveltejs/kit/commit/40092f34aa063d033fc7a4d1d6fb1c10abd8cbf6), [`ff4247e`](https://github.com/sveltejs/kit/commit/ff4247e2376862207dd9df7317f39d8bb8dd9ee4)]:
- @sveltejs/kit@3.0.0-next.14

## 6.0.0-next.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapter-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sveltejs/adapter-node",
"version": "6.0.0-next.6",
"version": "6.0.0-next.7",
"description": "Adapter for SvelteKit apps that generates a standalone Node server",
"keywords": [
"adapter",
Expand Down
30 changes: 30 additions & 0 deletions packages/kit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# @sveltejs/kit

## 3.0.0-next.14

### Major Changes

- breaking: refresh all load functions/queries when clicking a link to the current URL ([#16572](https://github.com/sveltejs/kit/pull/16572))

- breaking: only include routes with a `+page` or `+server` in `RouteId` ([#16580](https://github.com/sveltejs/kit/pull/16580))

- breaking: remove deprecated `.run()` method from live queries ([#16573](https://github.com/sveltejs/kit/pull/16573))

### Minor Changes

- feat: return the list of compressed files from `builder.compress` ([#16566](https://github.com/sveltejs/kit/pull/16566))

### Patch Changes

- chore: deduplicate request hashing for serialized fetch responses ([#16499](https://github.com/sveltejs/kit/pull/16499))

- fix: exclude routes without a page or endpoint from `routes` in `$app/manifest`, and remove directories with no route files from `LayoutParams` ([#16588](https://github.com/sveltejs/kit/pull/16588))

- fix: record the mime types of prerendered paths in the server manifest ([#16564](https://github.com/sveltejs/kit/pull/16564))

- fix: expand `[x+nn]` and `[u+nnnn]` escape sequences when resolving a route id to a pathname ([#16570](https://github.com/sveltejs/kit/pull/16570))

- fix: allow routes to contain `[` and `]` via the `[x+5b]` and `[x+5d]` escapes ([#16569](https://github.com/sveltejs/kit/pull/16569))

- fix: write generated tsconfig to `node_modules/$app/tsconfig.json` so that tools with simplified tsconfig resolution can find it ([#16589](https://github.com/sveltejs/kit/pull/16589))

- fix: prerender and crawl pages whose `content-type` header carries a `charset` parameter ([#16567](https://github.com/sveltejs/kit/pull/16567))

## 3.0.0-next.13

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/kit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sveltejs/kit",
"version": "3.0.0-next.13",
"version": "3.0.0-next.14",
"description": "SvelteKit is the fastest way to build Svelte apps",
"keywords": [
"framework",
Expand Down
2 changes: 1 addition & 1 deletion packages/kit/src/version.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// generated during release, do not modify

/** @type {string} */
export const VERSION = '3.0.0-next.13';
export const VERSION = '3.0.0-next.14';
6 changes: 6 additions & 0 deletions packages/package/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @sveltejs/package

## 3.0.0-next.4

### Patch Changes

- fix: emit declarations when the tsconfig lives above the package root ([#16568](https://github.com/sveltejs/kit/pull/16568))

## 3.0.0-next.3

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/package/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sveltejs/package",
"version": "3.0.0-next.3",
"version": "3.0.0-next.4",
"description": "The fastest way to build Svelte packages",
"repository": {
"type": "git",
Expand Down