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

@ -1,5 +1,17 @@
# svelte # 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 ## 5.0.0-next.226
### 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.226", "version": "5.0.0-next.227",
"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.226'; export const VERSION = '5.0.0-next.227';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save