Version Packages (next) (#13621)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13626/head svelte@5.0.0-next.267
github-actions[bot] 11 months ago committed by GitHub
parent 75fecf82a6
commit 99c744adbe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -112,6 +112,7 @@
"cold-teachers-turn",
"cool-actors-tan",
"cool-ants-leave",
"cool-apes-confess",
"cool-comics-marry",
"cool-jobs-scream",
"cool-peas-lick",
@ -334,6 +335,7 @@
"happy-beds-scream",
"happy-dogs-jump",
"happy-dolls-joke",
"happy-eggs-rest",
"happy-lobsters-lick",
"happy-moles-live",
"happy-planets-rest",
@ -530,6 +532,7 @@
"nine-ants-invite",
"nine-cooks-join",
"nine-kids-whisper",
"nine-vans-admire",
"ninety-days-visit",
"ninety-dingos-walk",
"ninety-dots-train",
@ -899,6 +902,7 @@
"tiny-moose-kiss",
"tiny-taxis-whisper",
"tough-buckets-thank",
"tough-pans-boil",
"tough-radios-punch",
"tough-snails-chew",
"tough-tomatoes-explain",

@ -1,5 +1,17 @@
# svelte
## 5.0.0-next.267
### Patch Changes
- fix: ensure inserted code is preserved during migration ([#13617](https://github.com/sveltejs/svelte/pull/13617))
- fix: ensure each block consistency to internal mutations to the collection ([#13614](https://github.com/sveltejs/svelte/pull/13614))
- chore: improve derived ownership model ([#13623](https://github.com/sveltejs/svelte/pull/13623))
- fix: ensure await block scope transforms are isolated ([#13622](https://github.com/sveltejs/svelte/pull/13622))
## 5.0.0-next.266
### Patch Changes

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

Loading…
Cancel
Save