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

@ -1,5 +1,17 @@
# svelte # 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 ## 5.0.0-next.193
### 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.193", "version": "5.0.0-next.194",
"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.193'; export const VERSION = '5.0.0-next.194';
export const PUBLIC_VERSION = '5'; export const PUBLIC_VERSION = '5';

Loading…
Cancel
Save