Skip to content

Version Packages (next) #11093

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 9, 2024
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
8 changes: 8 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@
"chatty-taxis-juggle",
"chilled-pumas-invite",
"chilly-dolphins-lick",
"chilly-rocks-hug",
"chilly-snakes-scream",
"clean-eels-beg",
"clever-chefs-relate",
Expand All @@ -54,6 +55,7 @@
"cool-rabbits-tickle",
"cool-roses-trade",
"cuddly-pianos-drop",
"cuddly-points-tickle",
"curly-lizards-dream",
"curvy-buses-laugh",
"curvy-cups-cough",
Expand All @@ -74,6 +76,7 @@
"dull-pots-add",
"dull-roses-relate",
"early-ads-tie",
"eight-hornets-punch",
"eight-steaks-shout",
"eighty-bikes-camp",
"eighty-days-cheat",
Expand Down Expand Up @@ -104,6 +107,7 @@
"forty-peaches-unite",
"forty-suns-smile",
"four-flies-hammer",
"four-mice-hammer",
"fresh-impalas-bow",
"fresh-weeks-trade",
"friendly-candles-relate",
Expand All @@ -116,6 +120,7 @@
"gentle-spies-happen",
"giant-moons-own",
"giant-planets-shake",
"giant-plants-grin",
"giant-roses-press",
"good-buses-reply",
"good-cars-visit",
Expand Down Expand Up @@ -191,6 +196,7 @@
"metal-lobsters-burn",
"mighty-cooks-scream",
"mighty-files-hammer",
"mighty-frogs-obey",
"moody-carrots-lay",
"moody-frogs-exist",
"moody-houses-argue",
Expand Down Expand Up @@ -234,7 +240,9 @@
"poor-seahorses-flash",
"popular-ligers-perform",
"popular-mangos-rest",
"popular-walls-hunt",
"pretty-ties-help",
"proud-queens-sniff",
"purple-dragons-peel",
"quiet-apricots-dream",
"quiet-berries-end",
Expand Down
20 changes: 20 additions & 0 deletions packages/svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# svelte

## 5.0.0-next.96

### Patch Changes

- feat: introduce `$host` rune, deprecate `createEventDispatcher` ([#11059](https://github.com/sveltejs/svelte/pull/11059))

- fix: execute sole static script tag ([#11095](https://github.com/sveltejs/svelte/pull/11095))

- fix: make static `element` property available for the SvelteComponent type ([#11079](https://github.com/sveltejs/svelte/pull/11079))

- fix: improve internal proxied state signal heuristic ([#11102](https://github.com/sveltejs/svelte/pull/11102))

- fix: keep sibling selectors when dealing with slots/render tags/`svelte:element` tags ([#11096](https://github.com/sveltejs/svelte/pull/11096))

- fix: ensure deep mutation ownership widening ([#11094](https://github.com/sveltejs/svelte/pull/11094))

- fix: improve compiled output of multiple call expression in single text node ([#11097](https://github.com/sveltejs/svelte/pull/11097))

- fix: improve hydration of svelte head blocks ([#11099](https://github.com/sveltejs/svelte/pull/11099))

## 5.0.0-next.95

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.0.0-next.95",
"version": "5.0.0-next.96",
"type": "module",
"types": "./types/index.d.ts",
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/src/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string}
*/
export const VERSION = '5.0.0-next.95';
export const VERSION = '5.0.0-next.96';
export const PUBLIC_VERSION = '5';