Version Packages (next) (#10601)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10620/head svelte@5.0.0-next.66
github-actions[bot] 10 months ago committed by GitHub
parent fc6666bc56
commit cc6155922b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -20,6 +20,7 @@
"big-eggs-flash", "big-eggs-flash",
"big-eyes-carry", "big-eyes-carry",
"big-geese-act", "big-geese-act",
"blue-rules-juggle",
"blue-timers-film", "blue-timers-film",
"brave-points-sleep", "brave-points-sleep",
"brave-shrimps-kiss", "brave-shrimps-kiss",
@ -29,6 +30,7 @@
"bright-snakes-sing", "bright-snakes-sing",
"brown-months-fry", "brown-months-fry",
"brown-spoons-boil", "brown-spoons-boil",
"chatty-beans-divide",
"chatty-cups-drop", "chatty-cups-drop",
"chatty-taxis-juggle", "chatty-taxis-juggle",
"chilled-pumas-invite", "chilled-pumas-invite",
@ -38,6 +40,7 @@
"clever-chefs-relate", "clever-chefs-relate",
"clever-rockets-burn", "clever-rockets-burn",
"cold-birds-own", "cold-birds-own",
"cold-masks-learn",
"cool-ants-leave", "cool-ants-leave",
"cool-rabbits-tickle", "cool-rabbits-tickle",
"cool-roses-trade", "cool-roses-trade",
@ -83,6 +86,7 @@
"forty-peaches-unite", "forty-peaches-unite",
"forty-suns-smile", "forty-suns-smile",
"four-flies-hammer", "four-flies-hammer",
"fresh-impalas-bow",
"fresh-weeks-trade", "fresh-weeks-trade",
"friendly-candles-relate", "friendly-candles-relate",
"friendly-lies-camp", "friendly-lies-camp",
@ -92,6 +96,7 @@
"gentle-spies-happen", "gentle-spies-happen",
"giant-moons-own", "giant-moons-own",
"giant-roses-press", "giant-roses-press",
"good-buses-reply",
"good-cars-visit", "good-cars-visit",
"good-pianos-jump", "good-pianos-jump",
"good-rivers-yawn", "good-rivers-yawn",
@ -151,6 +156,7 @@
"moody-carrots-lay", "moody-carrots-lay",
"moody-frogs-exist", "moody-frogs-exist",
"moody-owls-cry", "moody-owls-cry",
"moody-sheep-type",
"nasty-lions-double", "nasty-lions-double",
"nasty-yaks-peel", "nasty-yaks-peel",
"neat-boats-shake", "neat-boats-shake",
@ -184,6 +190,7 @@
"pretty-ties-help", "pretty-ties-help",
"purple-dragons-peel", "purple-dragons-peel",
"quiet-apricots-dream", "quiet-apricots-dream",
"quiet-berries-end",
"quiet-camels-mate", "quiet-camels-mate",
"quiet-crabs-nail", "quiet-crabs-nail",
"quiet-timers-speak", "quiet-timers-speak",
@ -202,6 +209,7 @@
"rotten-bags-type", "rotten-bags-type",
"rotten-buckets-develop", "rotten-buckets-develop",
"rotten-experts-relax", "rotten-experts-relax",
"rude-ghosts-tickle",
"selfish-dragons-knock", "selfish-dragons-knock",
"selfish-tools-hide", "selfish-tools-hide",
"serious-kids-deliver", "serious-kids-deliver",

@ -1,5 +1,25 @@
# svelte # svelte
## 5.0.0-next.66
### Patch Changes
- fix: don't clear date input on temporarily invalid value ([#10616](https://github.com/sveltejs/svelte/pull/10616))
- fix: use safe-equals comparison for `@const` tags in legacy mode ([#10606](https://github.com/sveltejs/svelte/pull/10606))
- fix: improve proxy effect dependency tracking ([#10605](https://github.com/sveltejs/svelte/pull/10605))
- fix: prevent window listeners from triggering events twice ([#10611](https://github.com/sveltejs/svelte/pull/10611))
- feat: allow dynamic `type` attribute with `bind:value` ([#10608](https://github.com/sveltejs/svelte/pull/10608))
- fix: make `bind_this` implementation more robust ([#10598](https://github.com/sveltejs/svelte/pull/10598))
- fix: tweak initial `bind:clientWidth/clientHeight/offsetWidth/offsetHeight` update timing ([#10512](https://github.com/sveltejs/svelte/pull/10512))
- fix: correctly handle proxied signal writes before reads ([#10612](https://github.com/sveltejs/svelte/pull/10612))
## 5.0.0-next.65 ## 5.0.0-next.65
### 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.65", "version": "5.0.0-next.66",
"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.65'; export const VERSION = '5.0.0-next.66';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save