Version Packages (next) (#10640)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10669/head svelte@5.0.0-next.69
github-actions[bot] 7 months ago committed by GitHub
parent 710f73f9cf
commit e21488fc4b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -32,6 +32,7 @@
"brown-spoons-boil",
"chatty-beans-divide",
"chatty-cups-drop",
"chatty-sloths-allow",
"chatty-taxis-juggle",
"chilled-pumas-invite",
"chilly-dolphins-lick",
@ -116,6 +117,7 @@
"honest-icons-change",
"hungry-boxes-relate",
"hungry-dots-fry",
"hungry-singers-share",
"hungry-tips-unite",
"hungry-trees-travel",
"itchy-beans-melt",
@ -165,6 +167,7 @@
"nervous-spoons-relax",
"new-boats-wait",
"new-rabbits-flow",
"nice-avocados-move",
"ninety-dingos-walk",
"odd-buckets-lie",
"odd-needles-joke",
@ -211,6 +214,7 @@
"rotten-bags-type",
"rotten-buckets-develop",
"rotten-experts-relax",
"rotten-poems-applaud",
"rude-ghosts-tickle",
"selfish-dragons-knock",
"selfish-tools-hide",
@ -237,6 +241,7 @@
"slimy-walls-draw",
"slow-beds-shave",
"slow-chefs-dream",
"slow-kids-sparkle",
"slow-wombats-reply",
"small-papayas-laugh",
"smart-parents-swim",
@ -276,8 +281,10 @@
"tall-tigers-wait",
"tame-cycles-kneel",
"tame-spies-drum",
"tasty-cheetahs-appear",
"tasty-numbers-perform",
"ten-foxes-repeat",
"ten-jokes-divide",
"ten-peaches-sleep",
"ten-ties-repair",
"ten-worms-reflect",
@ -297,6 +304,7 @@
"tidy-buses-whisper",
"tidy-starfishes-allow",
"tiny-kings-whisper",
"tough-radios-punch",
"twelve-dragons-join",
"twelve-onions-juggle",
"twelve-worms-jog",

@ -1,5 +1,25 @@
# svelte
## 5.0.0-next.69
### Patch Changes
- perf: bail early when traversing non-state ([#10654](https://github.com/sveltejs/svelte/pull/10654))
- feat: improve ssr html mismatch validation ([#10658](https://github.com/sveltejs/svelte/pull/10658))
- fix: improve ssr output of dynamic textarea elements ([#10638](https://github.com/sveltejs/svelte/pull/10638))
- fix: improve ssr code generation for class property $derived ([#10661](https://github.com/sveltejs/svelte/pull/10661))
- fix: warn when `$props` rune not called ([#10655](https://github.com/sveltejs/svelte/pull/10655))
- fix: improve derived rune destructuring support ([#10665](https://github.com/sveltejs/svelte/pull/10665))
- feat: allow arbitrary call expressions and optional chaining for snippets ([#10656](https://github.com/sveltejs/svelte/pull/10656))
- fix: add `$set` and `$on` methods in legacy compat mode ([#10642](https://github.com/sveltejs/svelte/pull/10642))
## 5.0.0-next.68
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.0.0-next.68",
"version": "5.0.0-next.69",
"type": "module",
"types": "./types/index.d.ts",
"engines": {

@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string}
*/
export const VERSION = '5.0.0-next.68';
export const VERSION = '5.0.0-next.69';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save