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

@ -1,5 +1,17 @@
# svelte # 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 ## 5.0.0-next.36
### 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.36", "version": "5.0.0-next.37",
"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.36'; export const VERSION = '5.0.0-next.37';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save