Version Packages (next) (#10202)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10218/head svelte@5.0.0-next.37
github-actions[bot] 9 months ago committed by GitHub
parent 9f87f059d2
commit 2e238ada92
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -14,6 +14,7 @@
"beige-flies-wash",
"beige-rabbits-shave",
"big-cars-serve",
"blue-timers-film",
"brave-shrimps-kiss",
"brave-walls-destroy",
"breezy-carrots-flash",
@ -46,7 +47,9 @@
"eighty-days-cheat",
"empty-bulldogs-exercise",
"empty-crabs-think",
"empty-tools-share",
"fair-crabs-check",
"fair-pianos-talk",
"famous-knives-sneeze",
"fast-weeks-clean",
"few-mugs-fail",
@ -186,6 +189,7 @@
"ten-peaches-sleep",
"ten-ties-repair",
"ten-worms-reflect",
"thick-cycles-rule",
"thin-foxes-lick",
"thirty-flowers-sit",
"thirty-ghosts-fix",

@ -1,5 +1,17 @@
# svelte
## 5.0.0-next.37
### Patch Changes
- fix: skip certain slot validations for custom elements ([#10207](https://github.com/sveltejs/svelte/pull/10207))
- fix: add compiler error for invalid <p> contents ([#10201](https://github.com/sveltejs/svelte/pull/10201))
- fix: correctly apply event.currentTarget ([#10216](https://github.com/sveltejs/svelte/pull/10216))
- fix: ensure derived signals properly capture consumers ([#10213](https://github.com/sveltejs/svelte/pull/10213))
## 5.0.0-next.36
### Patch Changes

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

Loading…
Cancel
Save