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

@ -1,5 +1,19 @@
# 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
### Patch Changes

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

Loading…
Cancel
Save