Version Packages (next) (#12536)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12548/head svelte@5.0.0-next.194
github-actions[bot] 4 months ago committed by GitHub
parent 73ac4fe456
commit 53d32d4dfe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -385,10 +385,12 @@
"nasty-mayflies-smoke",
"nasty-yaks-peel",
"neat-boats-shake",
"neat-boxes-chew",
"neat-dingos-clap",
"neat-files-rescue",
"neat-jokes-beam",
"nervous-berries-boil",
"nervous-dolphins-allow",
"nervous-ducks-repeat",
"nervous-spoons-relax",
"nervous-turkeys-end",
@ -645,6 +647,7 @@
"ten-worms-reflect",
"tender-lemons-judge",
"tender-rocks-walk",
"tender-suns-love",
"thick-cycles-rule",
"thick-pans-tell",
"thick-shirts-deliver",
@ -695,6 +698,7 @@
"two-dogs-accept",
"two-dragons-yell",
"two-falcons-buy",
"two-keys-watch",
"unlucky-boxes-obey",
"unlucky-steaks-warn",
"unlucky-trees-lick",

@ -1,5 +1,17 @@
# svelte
## 5.0.0-next.194
### Patch Changes
- fix: bail-out of hydrating head if no anchor is found ([#12541](https://github.com/sveltejs/svelte/pull/12541))
- chore: add warning for invalid render function of createRawSnippet ([#12535](https://github.com/sveltejs/svelte/pull/12535))
- fix: correctly set filename on HMR wrappers ([#12543](https://github.com/sveltejs/svelte/pull/12543))
- fix: only emit binding_property_non_reactive warning in runes mode ([#12544](https://github.com/sveltejs/svelte/pull/12544))
## 5.0.0-next.193
### Patch Changes

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

Loading…
Cancel
Save