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

@ -1,5 +1,19 @@
# 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
### Patch Changes

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

Loading…
Cancel
Save