Version Packages (next) (#11970)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11992/head svelte@5.0.0-next.153
github-actions[bot] 4 months ago committed by GitHub
parent c39805d027
commit f1c9edcc63
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -259,6 +259,7 @@
"kind-spoons-return",
"large-clouds-carry",
"large-turkeys-deny",
"late-bees-vanish",
"late-crabs-lay",
"late-grapes-judge",
"late-peaches-mate",
@ -318,6 +319,7 @@
"neat-boats-shake",
"neat-dingos-clap",
"neat-files-rescue",
"neat-jokes-beam",
"nervous-berries-boil",
"nervous-spoons-relax",
"nervous-turkeys-end",
@ -534,6 +536,7 @@
"ten-jokes-divide",
"ten-peaches-sleep",
"ten-singers-cough",
"ten-teachers-travel",
"ten-ties-repair",
"ten-worms-reflect",
"tender-rocks-walk",
@ -606,12 +609,14 @@
"wise-kids-wash",
"wise-radios-exercise",
"wise-ties-clap",
"witty-bikes-shave",
"witty-camels-warn",
"witty-readers-provide",
"witty-steaks-dream",
"witty-tomatoes-care",
"witty-years-crash",
"yellow-pugs-raise",
"yellow-rockets-sit",
"yellow-taxis-double",
"yellow-trees-juggle",
"young-ads-roll",

@ -1,5 +1,19 @@
# svelte
## 5.0.0-next.153
### Patch Changes
- feat: defer tasks without creating effects ([#11960](https://github.com/sveltejs/svelte/pull/11960))
- fix: enusre dev validation in dynamic component works as intended ([#11985](https://github.com/sveltejs/svelte/pull/11985))
- feat: detach inert effects ([#11955](https://github.com/sveltejs/svelte/pull/11955))
- feat: sort possible bindings in invalid binding error ([#11950](https://github.com/sveltejs/svelte/pull/11950))
- fix: apply style directives to element with empty style attribute ([#11971](https://github.com/sveltejs/svelte/pull/11971))
## 5.0.0-next.152
### Patch Changes

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

Loading…
Cancel
Save