Version Packages (next) (#12504)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12511/head svelte@5.0.0-next.192
github-actions[bot] 4 months ago committed by GitHub
parent e02c90209b
commit 30b143cef0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -142,6 +142,7 @@
"eleven-beers-yell",
"eleven-cows-judge",
"eleven-cycles-applaud",
"eleven-donuts-sit",
"eleven-hounds-pump",
"empty-bags-heal",
"empty-bulldogs-exercise",
@ -379,6 +380,7 @@
"nasty-carrots-develop",
"nasty-glasses-begin",
"nasty-lions-double",
"nasty-mayflies-smoke",
"nasty-yaks-peel",
"neat-boats-shake",
"neat-dingos-clap",
@ -521,6 +523,7 @@
"shiny-pillows-relax",
"shiny-rats-heal",
"shiny-shrimps-march",
"shiny-starfishes-cross",
"short-buses-camp",
"short-countries-rush",
"shy-fishes-drive",

@ -1,5 +1,15 @@
# svelte
## 5.0.0-next.192
### Patch Changes
- fix: make animations more robust to quick shuffling ([#12496](https://github.com/sveltejs/svelte/pull/12496))
- feat: warn if binding to a non-reactive property ([#12500](https://github.com/sveltejs/svelte/pull/12500))
- fix: ensure $state proxy invokes set accessor if present ([#12503](https://github.com/sveltejs/svelte/pull/12503))
## 5.0.0-next.191
### Patch Changes

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

Loading…
Cancel
Save