Version Packages (next) (#12972)

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

@ -375,6 +375,7 @@
"light-humans-hang", "light-humans-hang",
"light-penguins-invent", "light-penguins-invent",
"light-pens-watch", "light-pens-watch",
"light-tigers-smoke",
"little-ligers-exist", "little-ligers-exist",
"little-pans-jog", "little-pans-jog",
"little-seals-reflect", "little-seals-reflect",
@ -528,6 +529,7 @@
"proud-queens-sniff", "proud-queens-sniff",
"purple-dragons-peel", "purple-dragons-peel",
"quick-eagles-sit", "quick-eagles-sit",
"quick-paws-wash",
"quick-pumpkins-study", "quick-pumpkins-study",
"quiet-apricots-dream", "quiet-apricots-dream",
"quiet-berries-end", "quiet-berries-end",

@ -1,5 +1,13 @@
# svelte # svelte
## 5.0.0-next.234
### Patch Changes
- fix: allow deleting non-existent `$restProps` properties ([#12971](https://github.com/sveltejs/svelte/pull/12971))
- feat: only traverse trailing static nodes during hydration ([#12935](https://github.com/sveltejs/svelte/pull/12935))
## 5.0.0-next.233 ## 5.0.0-next.233
### 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.233", "version": "5.0.0-next.234",
"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.233'; export const VERSION = '5.0.0-next.234';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save