Version Packages (next) (#10164)

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

@ -10,6 +10,7 @@
}, },
"changesets": [ "changesets": [
"afraid-moose-matter", "afraid-moose-matter",
"angry-books-jam",
"beige-flies-wash", "beige-flies-wash",
"beige-rabbits-shave", "beige-rabbits-shave",
"brave-walls-destroy", "brave-walls-destroy",
@ -127,6 +128,7 @@
"rare-pears-whisper", "rare-pears-whisper",
"real-guests-do", "real-guests-do",
"red-doors-own", "red-doors-own",
"rich-cobras-exist",
"rich-sheep-burn", "rich-sheep-burn",
"rich-tables-sing", "rich-tables-sing",
"rotten-bags-type", "rotten-bags-type",
@ -159,6 +161,7 @@
"sour-weeks-fix", "sour-weeks-fix",
"spicy-plums-admire", "spicy-plums-admire",
"spotty-pens-agree", "spotty-pens-agree",
"spotty-spiders-compare",
"stale-books-perform", "stale-books-perform",
"stale-comics-look", "stale-comics-look",
"strong-gifts-smoke", "strong-gifts-smoke",
@ -172,9 +175,11 @@
"tall-garlics-try", "tall-garlics-try",
"tall-shrimps-worry", "tall-shrimps-worry",
"tall-tigers-wait", "tall-tigers-wait",
"tame-spies-drum",
"tasty-numbers-perform", "tasty-numbers-perform",
"ten-foxes-repeat", "ten-foxes-repeat",
"ten-peaches-sleep", "ten-peaches-sleep",
"ten-ties-repair",
"ten-worms-reflect", "ten-worms-reflect",
"thin-foxes-lick", "thin-foxes-lick",
"thirty-flowers-sit", "thirty-flowers-sit",

@ -1,5 +1,19 @@
# svelte # svelte
## 5.0.0-next.35
### Patch Changes
- fix: improve nested effect heuristics ([#10171](https://github.com/sveltejs/svelte/pull/10171))
- fix: simplify event delegation logic, only delegate event attributes ([#10169](https://github.com/sveltejs/svelte/pull/10169))
- fix: prevent transition action overfiring ([#10163](https://github.com/sveltejs/svelte/pull/10163))
- fix: improve event handling compatibility with delegation ([#10168](https://github.com/sveltejs/svelte/pull/10168))
- fix: ensure topological order for render effects ([#10175](https://github.com/sveltejs/svelte/pull/10175))
## 5.0.0-next.34 ## 5.0.0-next.34
### 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.34", "version": "5.0.0-next.35",
"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.34'; export const VERSION = '5.0.0-next.35';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save