Version Packages (next) (#12856)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12885/head svelte@5.0.0-next.223
github-actions[bot] 3 months ago committed by GitHub
parent 437509915c
commit c09decec44
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -159,6 +159,7 @@
"eleven-cycles-applaud", "eleven-cycles-applaud",
"eleven-donuts-sit", "eleven-donuts-sit",
"eleven-hounds-pump", "eleven-hounds-pump",
"eleven-teachers-drive",
"empty-bags-heal", "empty-bags-heal",
"empty-bulldogs-exercise", "empty-bulldogs-exercise",
"empty-coins-build", "empty-coins-build",
@ -258,6 +259,7 @@
"good-rivers-yawn", "good-rivers-yawn",
"good-roses-argue", "good-roses-argue",
"gorgeous-boxes-design", "gorgeous-boxes-design",
"gorgeous-coats-jog",
"gorgeous-hats-wonder", "gorgeous-hats-wonder",
"gorgeous-monkeys-carry", "gorgeous-monkeys-carry",
"gorgeous-singers-rest", "gorgeous-singers-rest",
@ -303,6 +305,7 @@
"hot-jobs-tap", "hot-jobs-tap",
"hot-rivers-punch", "hot-rivers-punch",
"hot-sloths-clap", "hot-sloths-clap",
"hot-tips-appear",
"hungry-boxes-relate", "hungry-boxes-relate",
"hungry-dots-fry", "hungry-dots-fry",
"hungry-pants-push", "hungry-pants-push",
@ -345,6 +348,7 @@
"late-grapes-judge", "late-grapes-judge",
"late-peaches-mate", "late-peaches-mate",
"late-zebras-argue", "late-zebras-argue",
"lazy-carrots-buy",
"lazy-knives-happen", "lazy-knives-happen",
"lazy-masks-sit", "lazy-masks-sit",
"lazy-months-knock", "lazy-months-knock",
@ -448,6 +452,7 @@
"odd-schools-wait", "odd-schools-wait",
"odd-shoes-cheat", "odd-shoes-cheat",
"odd-taxis-retire", "odd-taxis-retire",
"odd-toys-glow",
"old-flies-jog", "old-flies-jog",
"old-houses-drum", "old-houses-drum",
"old-jokes-deliver", "old-jokes-deliver",
@ -526,6 +531,7 @@
"red-poets-study", "red-poets-study",
"red-pots-pretend", "red-pots-pretend",
"rich-cobras-exist", "rich-cobras-exist",
"rich-elephants-relax",
"rich-garlics-laugh", "rich-garlics-laugh",
"rich-olives-yell", "rich-olives-yell",
"rich-plums-thank", "rich-plums-thank",
@ -598,6 +604,7 @@
"six-boats-shave", "six-boats-shave",
"six-chicken-kneel", "six-chicken-kneel",
"six-gorillas-obey", "six-gorillas-obey",
"six-vans-add",
"sixty-items-crash", "sixty-items-crash",
"sixty-numbers-hope", "sixty-numbers-hope",
"sixty-pandas-rush", "sixty-pandas-rush",

@ -1,5 +1,23 @@
# svelte # svelte
## 5.0.0-next.223
### Patch Changes
- fix: treat module-level imports as non-reactive in legacy mode ([#12845](https://github.com/sveltejs/svelte/pull/12845))
- breaking: remove foreign namespace ([#12869](https://github.com/sveltejs/svelte/pull/12869))
- feat: more efficient text-only fragments ([#12864](https://github.com/sveltejs/svelte/pull/12864))
- fix: ensure outro animation is not prematurely aborted ([#12865](https://github.com/sveltejs/svelte/pull/12865))
- chore: improve performance of DOM traversal operations ([#12863](https://github.com/sveltejs/svelte/pull/12863))
- feat: better destructuring assignments ([#12872](https://github.com/sveltejs/svelte/pull/12872))
- fix: stricter `crossorigin` and `wrap` attributes types ([#12858](https://github.com/sveltejs/svelte/pull/12858))
## 5.0.0-next.222 ## 5.0.0-next.222
### 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.222", "version": "5.0.0-next.223",
"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.222'; export const VERSION = '5.0.0-next.223';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save