Version Packages (next) (#9771)

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

@ -10,6 +10,7 @@
},
"changesets": [
"afraid-moose-matter",
"beige-flies-wash",
"brave-walls-destroy",
"brown-spoons-boil",
"chatty-taxis-juggle",
@ -17,6 +18,7 @@
"chilly-dolphins-lick",
"clean-eels-beg",
"cold-birds-own",
"cool-ants-leave",
"cuddly-pianos-drop",
"curly-lizards-dream",
"dirty-garlics-design",
@ -41,12 +43,15 @@
"honest-icons-change",
"hungry-dots-fry",
"hungry-tips-unite",
"itchy-beans-melt",
"itchy-lions-wash",
"khaki-mails-draw",
"khaki-moose-arrive",
"kind-deers-lay",
"kind-eagles-join",
"large-clouds-carry",
"lazy-masks-sit",
"lazy-months-knock",
"lazy-spiders-think",
"lemon-geese-drum",
"light-pens-watch",
@ -56,12 +61,15 @@
"lucky-schools-hang",
"moody-frogs-exist",
"moody-owls-cry",
"neat-dingos-clap",
"new-boats-wait",
"ninety-dingos-walk",
"odd-needles-joke",
"odd-schools-wait",
"odd-shoes-cheat",
"old-flies-jog",
"polite-pumpkins-guess",
"polite-ravens-study",
"poor-eggs-enjoy",
"popular-mangos-rest",
"quiet-camels-mate",
@ -81,9 +89,12 @@
"soft-geese-learn",
"sour-forks-stare",
"sour-rules-march",
"spicy-plums-admire",
"stale-comics-look",
"strong-lemons-provide",
"sweet-mangos-beg",
"swift-ravens-hunt",
"swift-seahorses-deliver",
"tall-shrimps-worry",
"tall-tigers-wait",
"ten-worms-reflect",

@ -1,5 +1,31 @@
# svelte
## 5.0.0-next.19
### Patch Changes
- feat: add unstate utility function ([#9776](https://github.com/sveltejs/svelte/pull/9776))
- fix: ensure proxied array length is updated ([#9782](https://github.com/sveltejs/svelte/pull/9782))
- chore: fix compiler errors test suite ([#9754](https://github.com/sveltejs/svelte/pull/9754))
- fix: ensure transitions properly cancel on completion ([#9778](https://github.com/sveltejs/svelte/pull/9778))
- feat: make fallback prop values readonly ([#9789](https://github.com/sveltejs/svelte/pull/9789))
- fix: tweak invalid dollar prefix rules around function args ([#9792](https://github.com/sveltejs/svelte/pull/9792))
- fix: ensure generated code does not use keywords as variable names ([#9790](https://github.com/sveltejs/svelte/pull/9790))
- feat: disallow fallback values with bindings in runes mode ([#9784](https://github.com/sveltejs/svelte/pull/9784))
- fix: apply event attribute validation to elements only ([#9772](https://github.com/sveltejs/svelte/pull/9772))
- fix: handle css nth-selector syntax ([#9754](https://github.com/sveltejs/svelte/pull/9754))
- feat: throw descriptive error for using runes globals outside of Svelte-compiled files ([#9773](https://github.com/sveltejs/svelte/pull/9773))
## 5.0.0-next.18
### Patch Changes

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

Loading…
Cancel
Save