Version Packages (next) (#13015)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13026/head svelte@5.0.0-next.238
github-actions[bot] 4 weeks ago committed by GitHub
parent cb4f82f811
commit 5aa082ce37
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -21,6 +21,7 @@
"beige-cobras-smoke", "beige-cobras-smoke",
"beige-flies-wash", "beige-flies-wash",
"beige-gifts-appear", "beige-gifts-appear",
"beige-lamps-ring",
"beige-mirrors-listen", "beige-mirrors-listen",
"beige-rabbits-shave", "beige-rabbits-shave",
"beige-seas-share", "beige-seas-share",
@ -282,6 +283,7 @@
"green-snails-tickle", "green-snails-tickle",
"green-tigers-judge", "green-tigers-judge",
"green-walls-clap", "green-walls-clap",
"green-windows-tap",
"grumpy-avocados-fetch", "grumpy-avocados-fetch",
"grumpy-insects-sleep", "grumpy-insects-sleep",
"grumpy-jars-sparkle", "grumpy-jars-sparkle",
@ -635,6 +637,7 @@
"six-boats-shave", "six-boats-shave",
"six-chicken-kneel", "six-chicken-kneel",
"six-gorillas-obey", "six-gorillas-obey",
"six-moons-invent",
"six-vans-add", "six-vans-add",
"sixty-items-crash", "sixty-items-crash",
"sixty-numbers-hope", "sixty-numbers-hope",
@ -827,6 +830,7 @@
"weak-frogs-bow", "weak-frogs-bow",
"weak-terms-destroy", "weak-terms-destroy",
"wet-bats-exercise", "wet-bats-exercise",
"wet-donkeys-fry",
"wet-games-fly", "wet-games-fly",
"wet-pears-buy", "wet-pears-buy",
"wet-pears-remain", "wet-pears-remain",

@ -1,5 +1,17 @@
# svelte # svelte
## 5.0.0-next.238
### Patch Changes
- fix: always return true from `deleteProperty` trap ([#13008](https://github.com/sveltejs/svelte/pull/13008))
- fix: handle deletions of previously-unread state proxy properties ([#13008](https://github.com/sveltejs/svelte/pull/13008))
- fix: make internal sources ownerless ([#13013](https://github.com/sveltejs/svelte/pull/13013))
- fix: join text nodes separated by comments ([#13009](https://github.com/sveltejs/svelte/pull/13009))
## 5.0.0-next.237 ## 5.0.0-next.237
### 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.237", "version": "5.0.0-next.238",
"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.237'; export const VERSION = '5.0.0-next.238';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save