Version Packages (next) (#10568)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10574/head svelte@5.0.0-next.62
github-actions[bot] 5 months ago committed by GitHub
parent 8613a6f28a
commit 662eda4ae7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -189,7 +189,9 @@
"real-guests-do",
"real-items-suffer",
"red-doors-own",
"red-feet-worry",
"rich-cobras-exist",
"rich-olives-yell",
"rich-sheep-burn",
"rich-tables-sing",
"rich-waves-mix",
@ -279,6 +281,7 @@
"tiny-kings-whisper",
"twelve-dragons-join",
"twelve-onions-juggle",
"twelve-worms-jog",
"two-dragons-yell",
"two-falcons-buy",
"unlucky-boxes-obey",

@ -1,5 +1,15 @@
# svelte
## 5.0.0-next.62
### Patch Changes
- feat: allow state/derived/props to be explicitly exported from components ([#10523](https://github.com/sveltejs/svelte/pull/10523))
- fix: replace proxy-based readonly validation with stack-trace-based ownership tracking ([#10464](https://github.com/sveltejs/svelte/pull/10464))
- fix: correct context applied to batch_inspect ([#10569](https://github.com/sveltejs/svelte/pull/10569))
## 5.0.0-next.61
### Patch Changes

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

Loading…
Cancel
Save