Version Packages (next) (#12750)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12786/head svelte@5.0.0-next.211
github-actions[bot] 1 month ago committed by GitHub
parent ec8a029db4
commit 37020384ca
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -266,6 +266,7 @@
"happy-moles-live", "happy-moles-live",
"happy-suits-film", "happy-suits-film",
"healthy-ants-film", "healthy-ants-film",
"healthy-dancers-play",
"healthy-mangos-brush", "healthy-mangos-brush",
"healthy-planes-vanish", "healthy-planes-vanish",
"healthy-zebras-accept", "healthy-zebras-accept",
@ -416,8 +417,10 @@
"nervous-turkeys-end", "nervous-turkeys-end",
"new-boats-wait", "new-boats-wait",
"new-brooms-grin", "new-brooms-grin",
"new-cooks-roll",
"new-rabbits-flow", "new-rabbits-flow",
"nice-avocados-move", "nice-avocados-move",
"nice-bottles-greet",
"nice-jobs-breathe", "nice-jobs-breathe",
"nine-cooks-join", "nine-cooks-join",
"ninety-days-visit", "ninety-days-visit",
@ -436,6 +439,7 @@
"old-oranges-compete", "old-oranges-compete",
"olive-apples-lick", "olive-apples-lick",
"olive-cobras-wonder", "olive-cobras-wonder",
"olive-forks-grin",
"olive-kangaroos-brake", "olive-kangaroos-brake",
"olive-mice-fix", "olive-mice-fix",
"olive-moons-act", "olive-moons-act",
@ -569,6 +573,7 @@
"silver-mice-double", "silver-mice-double",
"silver-points-approve", "silver-points-approve",
"silver-sheep-knock", "silver-sheep-knock",
"six-apes-peel",
"six-bears-trade", "six-bears-trade",
"six-boats-shave", "six-boats-shave",
"six-chicken-kneel", "six-chicken-kneel",

@ -1,5 +1,19 @@
# svelte # svelte
## 5.0.0-next.211
### Patch Changes
- fix: improve prop binding warning validation for stores ([#12745](https://github.com/sveltejs/svelte/pull/12745))
- chore: add error for derived self referencing ([#12746](https://github.com/sveltejs/svelte/pull/12746))
- fix: skip `is_standalone` optimisation for dynamic components ([#12767](https://github.com/sveltejs/svelte/pull/12767))
- fix: ensure unowned deriveds correctly update ([#12747](https://github.com/sveltejs/svelte/pull/12747))
- fix: order of arguments for `push_element` in `svelte:element` ([#12763](https://github.com/sveltejs/svelte/pull/12763))
## 5.0.0-next.210 ## 5.0.0-next.210
### 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.210", "version": "5.0.0-next.211",
"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.210'; export const VERSION = '5.0.0-next.211';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save