Version Packages (next) (#12443)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12460/head svelte@5.0.0-next.185
github-actions[bot] 2 months ago committed by GitHub
parent da6e192e1d
commit 649a0507f7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -192,6 +192,7 @@
"fresh-impalas-bow",
"fresh-walls-bathe",
"fresh-weeks-trade",
"fresh-wombats-learn",
"friendly-candles-relate",
"friendly-clouds-rhyme",
"friendly-lies-camp",
@ -211,6 +212,7 @@
"gentle-trees-exercise",
"gentle-wasps-pull",
"giant-bananas-turn",
"giant-jars-applaud",
"giant-moons-own",
"giant-planets-shake",
"giant-plants-grin",
@ -410,6 +412,7 @@
"orange-yaks-protect",
"orange-zoos-heal",
"perfect-actors-bake",
"perfect-hats-dance",
"pink-bikes-agree",
"pink-goats-promise",
"pink-mayflies-tie",
@ -631,6 +634,7 @@
"thin-foxes-lick",
"thin-spoons-float",
"thin-years-rhyme",
"thirty-dogs-whisper",
"thirty-flies-push",
"thirty-flowers-sit",
"thirty-ghosts-fix",

@ -1,5 +1,17 @@
# svelte
## 5.0.0-next.185
### Patch Changes
- fix: allow leading and trailing comments in mustache expression ([#11866](https://github.com/sveltejs/svelte/pull/11866))
- fix: ensure hydration walks all nodes ([#12448](https://github.com/sveltejs/svelte/pull/12448))
- fix: prevent whitespaces merging across component boundaries ([#12449](https://github.com/sveltejs/svelte/pull/12449))
- fix: detect mutations within assignment expressions ([#12429](https://github.com/sveltejs/svelte/pull/12429))
## 5.0.0-next.184
### Patch Changes

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

Loading…
Cancel
Save