Version Packages (next) (#13497)

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

@ -197,6 +197,7 @@
"fair-bags-smoke",
"fair-beers-help",
"fair-crabs-check",
"fair-items-bathe",
"fair-pianos-talk",
"fair-spies-repeat",
"famous-chairs-notice",
@ -260,8 +261,10 @@
"fresh-zoos-burn",
"friendly-candles-relate",
"friendly-clouds-rhyme",
"friendly-dryers-jog",
"friendly-lies-camp",
"friendly-rice-confess",
"friendly-taxis-hammer",
"funny-bugs-kiss",
"funny-cooks-clean",
"funny-dragons-double",
@ -287,6 +290,7 @@
"giant-planets-shake",
"giant-plants-grin",
"giant-roses-press",
"gold-pens-sell",
"gold-students-jump",
"gold-tools-nail",
"good-buses-reply",
@ -304,6 +308,7 @@
"gorgeous-monkeys-carry",
"gorgeous-pans-sort",
"gorgeous-singers-rest",
"great-dots-wonder",
"great-fans-unite",
"great-icons-retire",
"great-plums-pretend",
@ -514,6 +519,7 @@
"nice-jobs-breathe",
"nine-ants-invite",
"nine-cooks-join",
"nine-kids-whisper",
"ninety-days-visit",
"ninety-dingos-walk",
"ninety-dots-train",
@ -736,6 +742,7 @@
"small-planets-destroy",
"small-sheep-type",
"small-spiders-fail",
"small-suns-lie",
"smart-cars-know",
"smart-cherries-leave",
"smart-fans-crash",
@ -826,6 +833,7 @@
"ten-foxes-repeat",
"ten-geese-share",
"ten-jokes-divide",
"ten-laws-grow",
"ten-peaches-sleep",
"ten-singers-cough",
"ten-singers-repair",
@ -895,6 +903,7 @@
"two-brooms-fail",
"two-candles-move",
"two-cats-approve",
"two-chefs-lie",
"two-dogs-accept",
"two-dragons-yell",
"two-falcons-buy",

@ -1,5 +1,27 @@
# svelte
## 5.0.0-next.263
### Patch Changes
- fix: add media listeners immediately when using `bind:paused` ([#13502](https://github.com/sveltejs/svelte/pull/13502))
- fix: further improve reconciliation of inert each block rows ([#13527](https://github.com/sveltejs/svelte/pull/13527))
- feat: add types for the search element ([#13489](https://github.com/sveltejs/svelte/pull/13489))
- feat: support migrating `svelte:self` ([#13504](https://github.com/sveltejs/svelte/pull/13504))
- feat: support migration of single assignment labeled statements ([#13461](https://github.com/sveltejs/svelte/pull/13461))
- fix: correctly migrate `$slots` with bracket member expressions & slots with static props ([#13468](https://github.com/sveltejs/svelte/pull/13468))
- feat: migrate slot usages ([#13500](https://github.com/sveltejs/svelte/pull/13500))
- fix: recreate `SvelteDate` methods deriveds if they are destroyed ([#13515](https://github.com/sveltejs/svelte/pull/13515))
- fix: allow imports from `svelte/legacy` in SSR ([#13523](https://github.com/sveltejs/svelte/pull/13523))
## 5.0.0-next.262
### Patch Changes

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

Loading…
Cancel
Save