Version Packages (next) (#11541)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/11548/head svelte@5.0.0-next.127
github-actions[bot] 2 months ago committed by GitHub
parent 3103a0d81e
commit 7e9b109de6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -43,6 +43,7 @@
"brown-houses-obey",
"brown-months-fry",
"brown-spoons-boil",
"calm-buses-clap",
"calm-pandas-vanish",
"calm-ravens-sneeze",
"chatty-beans-divide",
@ -183,6 +184,7 @@
"hot-jobs-tap",
"hungry-boxes-relate",
"hungry-dots-fry",
"hungry-pants-push",
"hungry-singers-share",
"hungry-tips-unite",
"hungry-trees-travel",
@ -312,6 +314,7 @@
"quiet-camels-mate",
"quiet-crabs-nail",
"quiet-timers-speak",
"rare-mirrors-act",
"rare-pears-whisper",
"rare-worms-hunt",
"real-guests-do",
@ -415,6 +418,7 @@
"stale-fans-rest",
"stale-jeans-refuse",
"strange-apricots-happen",
"strong-apricots-destroy",
"strong-gifts-smoke",
"strong-lemons-provide",
"strong-pans-doubt",
@ -474,6 +478,7 @@
"twelve-dragons-join",
"twelve-onions-juggle",
"twelve-worms-jog",
"two-brooms-fail",
"two-candles-move",
"two-dogs-accept",
"two-dragons-yell",

@ -1,5 +1,19 @@
# svelte
## 5.0.0-next.127
### Patch Changes
- fix: don't warn on writes to `$state` ([#11540](https://github.com/sveltejs/svelte/pull/11540))
- feat: provide better error messages in DEV ([#11526](https://github.com/sveltejs/svelte/pull/11526))
- fix: better support for lazy img elements ([#11545](https://github.com/sveltejs/svelte/pull/11545))
- fix: handle falsy prop aliases correctly ([#11539](https://github.com/sveltejs/svelte/pull/11539))
- fix: ensure spread events are added even when rerunning spread immediately ([#11535](https://github.com/sveltejs/svelte/pull/11535))
## 5.0.0-next.126
### Patch Changes

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

Loading…
Cancel
Save