Version Packages (next) (#9753)

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

@ -33,6 +33,7 @@
"fresh-weeks-trade",
"friendly-lies-camp",
"funny-wombats-argue",
"gentle-sheep-hug",
"good-pianos-jump",
"great-icons-retire",
"green-eggs-approve",
@ -42,6 +43,7 @@
"hungry-tips-unite",
"itchy-lions-wash",
"khaki-mails-draw",
"khaki-moose-arrive",
"kind-deers-lay",
"kind-eagles-join",
"large-clouds-carry",
@ -66,6 +68,8 @@
"rare-pears-whisper",
"rich-sheep-burn",
"rotten-buckets-develop",
"selfish-tools-hide",
"serious-socks-cover",
"serious-zebras-scream",
"seven-deers-jam",
"seven-ravens-check",

@ -1,5 +1,17 @@
# svelte
## 5.0.0-next.18
### Patch Changes
- chore: more validation errors ([#9723](https://github.com/sveltejs/svelte/pull/9723))
- fix: allow duplicate snippet declaration names ([#9759](https://github.com/sveltejs/svelte/pull/9759))
- fix: ensure computed props are cached with derived ([#9757](https://github.com/sveltejs/svelte/pull/9757))
- fix: ensure event handlers containing arguments are not hoisted ([#9758](https://github.com/sveltejs/svelte/pull/9758))
## 5.0.0-next.17
### Patch Changes

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

Loading…
Cancel
Save