Version Packages (next) (#12552)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12572/head svelte@5.0.0-next.196
github-actions[bot] 2 months ago committed by GitHub
parent 64e9f0e5f6
commit 5669c7de4f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -46,6 +46,7 @@
"breezy-rules-beg",
"breezy-waves-camp",
"bright-berries-smell",
"bright-colts-play",
"bright-falcons-float",
"bright-needles-pretend",
"bright-peas-juggle",
@ -55,6 +56,7 @@
"brown-months-fry",
"brown-spoons-boil",
"calm-buses-clap",
"calm-cameras-hide",
"calm-pandas-vanish",
"calm-ravens-sneeze",
"chatty-beans-divide",
@ -62,6 +64,7 @@
"chatty-ghosts-unite",
"chatty-sloths-allow",
"chatty-taxis-juggle",
"chilled-ladybugs-invite",
"chilled-pumas-invite",
"chilled-seas-jog",
"chilly-dolphins-lick",
@ -112,6 +115,7 @@
"dirty-donuts-yell",
"dirty-eyes-itch",
"dirty-garlics-design",
"dirty-pianos-eat",
"dirty-tips-add",
"dry-clocks-grow",
"dry-eggs-play",
@ -376,6 +380,7 @@
"moody-frogs-exist",
"moody-ghosts-buy",
"moody-houses-argue",
"moody-lions-watch",
"moody-owls-cry",
"moody-sheep-type",
"moody-toys-relax",
@ -539,6 +544,7 @@
"silly-laws-happen",
"silly-lies-film",
"silly-ways-wash",
"silver-mice-double",
"silver-points-approve",
"silver-sheep-knock",
"six-bears-trade",

@ -1,5 +1,21 @@
# svelte
## 5.0.0-next.196
### Patch Changes
- fix: ensure dynamic event handlers are wrapped in a derived ([#12563](https://github.com/sveltejs/svelte/pull/12563))
- chore: tidy up dynamic event handler generated code ([#12553](https://github.com/sveltejs/svelte/pull/12553))
- fix: dynamic event delegation for stateful call expressions ([#12549](https://github.com/sveltejs/svelte/pull/12549))
- fix: ensure $state.snapshot correctly clones Date objects ([#12564](https://github.com/sveltejs/svelte/pull/12564))
- fix: remove runtime validation of components/snippets, rely on types instead ([#12507](https://github.com/sveltejs/svelte/pull/12507))
- fix: properly update store values ([#12562](https://github.com/sveltejs/svelte/pull/12562))
## 5.0.0-next.195
### Patch Changes

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

Loading…
Cancel
Save