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

@ -1,5 +1,19 @@
# svelte # 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 ## 5.0.0-next.126
### Patch Changes ### Patch Changes

@ -2,7 +2,7 @@
"name": "svelte", "name": "svelte",
"description": "Cybernetically enhanced web apps", "description": "Cybernetically enhanced web apps",
"license": "MIT", "license": "MIT",
"version": "5.0.0-next.126", "version": "5.0.0-next.127",
"type": "module", "type": "module",
"types": "./types/index.d.ts", "types": "./types/index.d.ts",
"engines": { "engines": {

@ -6,5 +6,5 @@
* https://svelte.dev/docs/svelte-compiler#svelte-version * https://svelte.dev/docs/svelte-compiler#svelte-version
* @type {string} * @type {string}
*/ */
export const VERSION = '5.0.0-next.126'; export const VERSION = '5.0.0-next.127';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save