Version Packages (next) (#12920)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12922/head svelte@5.0.0-next.227
github-actions[bot] 1 month ago committed by GitHub
parent 0812b10100
commit b2214d1c5b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -192,6 +192,7 @@
"few-mugs-fail",
"few-teachers-know",
"few-zoos-own",
"fifty-actors-agree",
"fifty-masks-give",
"fifty-rice-wait",
"fifty-steaks-float",
@ -265,6 +266,7 @@
"gorgeous-coats-jog",
"gorgeous-hats-wonder",
"gorgeous-monkeys-carry",
"gorgeous-pans-sort",
"gorgeous-singers-rest",
"great-fans-unite",
"great-icons-retire",
@ -293,6 +295,7 @@
"heavy-ducks-leave",
"heavy-ears-rule",
"heavy-feet-attend",
"heavy-houses-pay",
"hip-balloons-begin",
"hip-garlics-tap",
"hip-goats-smoke",
@ -594,6 +597,7 @@
"shiny-starfishes-cross",
"short-buses-camp",
"short-countries-rush",
"short-starfishes-beg",
"shy-fishes-drive",
"shy-scissors-smile",
"silent-apes-report",

@ -1,5 +1,17 @@
# svelte
## 5.0.0-next.227
### Patch Changes
- breaking: disallow `Object.defineProperty` on state proxies with non-basic descriptors ([#12916](https://github.com/sveltejs/svelte/pull/12916))
- breaking: allow frozen objects to be proxied ([#12916](https://github.com/sveltejs/svelte/pull/12916))
- breaking: avoid mutations to underlying proxied object with $state ([#12916](https://github.com/sveltejs/svelte/pull/12916))
- breaking: remove $state.is rune ([#12916](https://github.com/sveltejs/svelte/pull/12916))
## 5.0.0-next.226
### Patch Changes

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

Loading…
Cancel
Save