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

@ -1,5 +1,23 @@
# 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
### Patch Changes

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

Loading…
Cancel
Save