Version Packages (next) (#11580)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11600/head svelte@5.0.0-next.132
github-actions[bot] 10 months ago committed by GitHub
parent b964a4ce1d
commit 5e9428a65d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -101,12 +101,14 @@
"eight-steaks-shout",
"eighty-bikes-camp",
"eighty-days-cheat",
"eighty-lizards-notice",
"eleven-beers-yell",
"eleven-cycles-applaud",
"empty-bags-heal",
"empty-bulldogs-exercise",
"empty-coins-build",
"empty-crabs-think",
"empty-flowers-change",
"empty-geckos-pretend",
"empty-tools-share",
"fair-bags-smoke",
@ -152,6 +154,7 @@
"gentle-sheep-hug",
"gentle-spies-happen",
"gentle-toys-chew",
"gentle-trees-exercise",
"giant-bananas-turn",
"giant-moons-own",
"giant-planets-shake",
@ -163,6 +166,7 @@
"good-pianos-jump",
"good-plums-type",
"good-rivers-yawn",
"good-roses-argue",
"gorgeous-monkeys-carry",
"gorgeous-singers-rest",
"great-fans-unite",
@ -302,12 +306,14 @@
"pink-goats-promise",
"pink-mayflies-tie",
"plenty-starfishes-dress",
"plenty-zoos-fix",
"polite-dolphins-care",
"polite-pumpkins-guess",
"polite-ravens-study",
"poor-eggs-enjoy",
"poor-hats-design",
"poor-seahorses-flash",
"popular-apes-bathe",
"popular-ligers-perform",
"popular-mangos-rest",
"popular-walls-hunt",

@ -1,5 +1,21 @@
# svelte
## 5.0.0-next.132
### Patch Changes
- chore: improve runtime overhead of creating comment templates ([#11591](https://github.com/sveltejs/svelte/pull/11591))
- fix: replicate Svelte 4 props update detection in legacy mode ([#11577](https://github.com/sveltejs/svelte/pull/11577))
- fix: allow for non optional chain call expression in render ([#11578](https://github.com/sveltejs/svelte/pull/11578))
- fix: correctly handle falsy values of style directives in SSR mode ([#11583](https://github.com/sveltejs/svelte/pull/11583))
- fix: improve handling of lazy image elements ([#11593](https://github.com/sveltejs/svelte/pull/11593))
- fix: skip deriveds for props with known safe calls ([#11595](https://github.com/sveltejs/svelte/pull/11595))
## 5.0.0-next.131
### Patch Changes

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

Loading…
Cancel
Save