Version Packages (next) (#11656)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11669/head svelte@5.0.0-next.136
github-actions[bot] 2 months ago committed by GitHub
parent c29b74669d
commit 62e2647c8a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -15,6 +15,7 @@
"afraid-moose-matter",
"angry-books-jam",
"angry-plums-punch",
"angry-wasps-help",
"beige-cobras-smoke",
"beige-flies-wash",
"beige-mirrors-listen",
@ -98,6 +99,7 @@
"dull-mangos-wave",
"dull-pots-add",
"dull-roses-relate",
"dull-worms-relax",
"early-ads-tie",
"early-months-whisper",
"eight-carrots-hunt",
@ -147,6 +149,7 @@
"four-flies-hammer",
"four-mice-hammer",
"four-pugs-listen",
"fresh-beds-wash",
"fresh-dots-destroy",
"fresh-impalas-bow",
"fresh-weeks-trade",
@ -327,6 +330,7 @@
"popular-games-hug",
"popular-ligers-perform",
"popular-mangos-rest",
"popular-roses-teach",
"popular-walls-hunt",
"pretty-ties-help",
"proud-pets-hang",
@ -478,6 +482,7 @@
"thick-shirts-deliver",
"thick-swans-type",
"thin-foxes-lick",
"thin-years-rhyme",
"thirty-flowers-sit",
"thirty-ghosts-fix",
"thirty-impalas-repair",
@ -509,6 +514,7 @@
"unlucky-boxes-obey",
"unlucky-steaks-warn",
"unlucky-trees-lick",
"violet-mails-trade",
"violet-mugs-behave",
"violet-pigs-jam",
"warm-cherries-shake",
@ -529,6 +535,7 @@
"wise-dodos-tell",
"wise-donkeys-marry",
"wise-jobs-admire",
"wise-kids-wash",
"wise-radios-exercise",
"wise-ties-clap",
"witty-camels-warn",

@ -1,5 +1,23 @@
# svelte
## 5.0.0-next.136
### Patch Changes
- chore: remove `handle_compile_error` ([#11639](https://github.com/sveltejs/svelte/pull/11639))
- breaking: disallow string literal values in `<svelte:element this="...">` ([#11454](https://github.com/sveltejs/svelte/pull/11454))
- fix: use coarse-grained updates for derived expressions passed to props in legacy mode ([#11652](https://github.com/sveltejs/svelte/pull/11652))
- fix: robustify `bind:scrollX/Y` binding ([#11655](https://github.com/sveltejs/svelte/pull/11655))
- feat: migrate `<svelte:element this="div">` ([#11659](https://github.com/sveltejs/svelte/pull/11659))
- feat: more information when hydration fails ([#11649](https://github.com/sveltejs/svelte/pull/11649))
- fix: replay load and error events on load during hydration ([#11642](https://github.com/sveltejs/svelte/pull/11642))
## 5.0.0-next.135
### Patch Changes

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

Loading…
Cancel
Save