Version Packages (next) (#9899)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/9912/head svelte@5.0.0-next.24
github-actions[bot] 7 months ago committed by GitHub
parent 55656f520d
commit f2d111264c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -11,8 +11,10 @@
"changesets": [
"afraid-moose-matter",
"beige-flies-wash",
"beige-rabbits-shave",
"brave-walls-destroy",
"brown-spoons-boil",
"chatty-cups-drop",
"chatty-taxis-juggle",
"chilled-pumas-invite",
"chilly-dolphins-lick",
@ -45,7 +47,9 @@
"great-icons-retire",
"green-eggs-approve",
"green-hounds-play",
"happy-suits-film",
"healthy-planes-vanish",
"heavy-ears-rule",
"honest-icons-change",
"hungry-dots-fry",
"hungry-tips-unite",
@ -56,6 +60,7 @@
"kind-deers-lay",
"kind-eagles-join",
"large-clouds-carry",
"large-turkeys-deny",
"late-crabs-lay",
"lazy-masks-sit",
"lazy-months-knock",
@ -119,6 +124,7 @@
"tall-tigers-wait",
"tasty-numbers-perform",
"ten-foxes-repeat",
"ten-peaches-sleep",
"ten-worms-reflect",
"thin-foxes-lick",
"thirty-flowers-sit",

@ -1,5 +1,21 @@
# svelte
## 5.0.0-next.24
### Patch Changes
- fix: improve props aliasing ([#9900](https://github.com/sveltejs/svelte/pull/9900))
- feat: add support for `{@const}` inside snippet block ([#9904](https://github.com/sveltejs/svelte/pull/9904))
- fix: improve attribute directive reactivity detection ([#9907](https://github.com/sveltejs/svelte/pull/9907))
- fix: improve $inspect batching ([#9902](https://github.com/sveltejs/svelte/pull/9902))
- chore: improve readonly prop messaging ([#9901](https://github.com/sveltejs/svelte/pull/9901))
- fix: better support for top-level snippet declarations ([#9898](https://github.com/sveltejs/svelte/pull/9898))
## 5.0.0-next.23
### Patch Changes

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

Loading…
Cancel
Save