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

@ -1,5 +1,25 @@
# svelte # 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 ## 5.0.0-next.108
### Patch Changes ### Patch Changes

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

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

Loading…
Cancel
Save