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

@ -1,5 +1,17 @@
# 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
### Patch Changes

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

Loading…
Cancel
Save