Version Packages (next) (#11236)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11255/head svelte@5.0.0-next.109
github-actions[bot] 6 months ago committed by GitHub
parent 6bff8c0e93
commit 68a12f0a09
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -27,6 +27,7 @@
"blue-ants-raise",
"blue-rules-juggle",
"blue-timers-film",
"brave-carrots-draw",
"brave-gorillas-end",
"brave-points-sleep",
"brave-shrimps-kiss",
@ -124,6 +125,7 @@
"fresh-weeks-trade",
"friendly-candles-relate",
"friendly-lies-camp",
"funny-ties-jump",
"funny-wombats-argue",
"fuzzy-bags-camp",
"fuzzy-donuts-provide",
@ -204,6 +206,7 @@
"loud-cheetahs-flow",
"loud-mugs-smile",
"loud-ravens-drop",
"loud-socks-look",
"lovely-carpets-lick",
"lovely-houses-own",
"lovely-items-turn",
@ -327,6 +330,8 @@
"silly-ways-wash",
"silver-points-approve",
"sixty-items-crash",
"sixty-numbers-hope",
"sixty-pandas-rush",
"slimy-clouds-talk",
"slimy-laws-explode",
"slimy-walls-draw",
@ -343,6 +348,7 @@
"smart-parents-swim",
"smart-turkeys-tell",
"smart-zebras-pay",
"smooth-kids-protect",
"smooth-rings-rush",
"soft-clocks-remember",
"soft-geese-learn",
@ -367,6 +373,7 @@
"strong-gifts-smoke",
"strong-lemons-provide",
"strong-pans-doubt",
"stupid-parents-crash",
"sweet-mangos-beg",
"sweet-pens-sniff",
"swift-donkeys-perform",
@ -392,6 +399,7 @@
"ten-singers-cough",
"ten-ties-repair",
"ten-worms-reflect",
"tender-rocks-walk",
"thick-cycles-rule",
"thick-pans-tell",
"thick-shirts-deliver",

@ -1,5 +1,25 @@
# svelte
## 5.0.0-next.109
### Patch Changes
- fix: more robust moving of each item nodes ([#11254](https://github.com/sveltejs/svelte/pull/11254))
- fix: ensure that CSS is generated for the final frame of a transition ([#11251](https://github.com/sveltejs/svelte/pull/11251))
- fix: more accurate error message when creating orphan effects ([#11227](https://github.com/sveltejs/svelte/pull/11227))
- fix: support `$state.snapshot` as part of variable declarations ([#11235](https://github.com/sveltejs/svelte/pull/11235))
- fix: optimize object property mutations in compilation ([#11243](https://github.com/sveltejs/svelte/pull/11243))
- breaking: don't allow children in svelte:options ([#11250](https://github.com/sveltejs/svelte/pull/11250))
- fix: possible name clash in hoisted functions ([#11237](https://github.com/sveltejs/svelte/pull/11237))
- fix: preserve getters/setters in HMR mode ([#11231](https://github.com/sveltejs/svelte/pull/11231))
## 5.0.0-next.108
### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte",
"description": "Cybernetically enhanced web apps",
"license": "MIT",
"version": "5.0.0-next.108",
"version": "5.0.0-next.109",
"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.108';
export const VERSION = '5.0.0-next.109';
export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save