Version Packages (next) (#13311)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13316/head svelte@5.0.0-next.252
github-actions[bot] 2 days ago committed by GitHub
parent 19179822c3
commit b3842d7982
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -436,6 +436,7 @@
"lovely-rules-eat",
"lovely-zebras-own",
"lucky-colts-remember",
"lucky-drinks-push",
"lucky-experts-float",
"lucky-geckos-swim",
"lucky-panthers-chew",
@ -543,6 +544,7 @@
"plenty-clouds-reply",
"plenty-elephants-fry",
"plenty-items-build",
"plenty-rings-stare",
"plenty-starfishes-dress",
"plenty-turkeys-raise",
"plenty-zoos-fix",
@ -663,6 +665,7 @@
"shy-fishes-drive",
"shy-scissors-smile",
"silent-apes-report",
"silent-elephants-film",
"silent-hats-stare",
"silent-rabbits-join",
"silent-rocks-yell",

@ -1,5 +1,15 @@
# svelte
## 5.0.0-next.252
### Patch Changes
- fix: handle `$Props` interface during migration ([#13305](https://github.com/sveltejs/svelte/pull/13305))
- fix: attach effects-inside-deriveds to the parent of the derived ([#13309](https://github.com/sveltejs/svelte/pull/13309))
- fix: simplify and robustify appending styles ([#13303](https://github.com/sveltejs/svelte/pull/13303))
## 5.0.0-next.251
### Patch Changes

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

Loading…
Cancel
Save