Version Packages (next) (#10869)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10881/head svelte@5.0.0-next.82
github-actions[bot] 10 months ago committed by GitHub
parent 83f30bf0e8
commit c47c5713e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -225,6 +225,7 @@
"real-pandas-brush",
"red-doors-own",
"red-feet-worry",
"red-poets-study",
"rich-cobras-exist",
"rich-olives-yell",
"rich-sheep-burn",
@ -258,6 +259,7 @@
"short-countries-rush",
"silent-apes-report",
"silly-laws-happen",
"silly-ways-wash",
"silver-points-approve",
"sixty-items-crash",
"slimy-clouds-talk",
@ -266,9 +268,11 @@
"slow-beds-shave",
"slow-chefs-dream",
"slow-kids-sparkle",
"slow-plums-chew",
"slow-wombats-reply",
"small-papayas-laugh",
"small-sheep-type",
"small-spiders-fail",
"smart-parents-swim",
"smart-turkeys-tell",
"smart-zebras-pay",

@ -1,5 +1,17 @@
# svelte
## 5.0.0-next.82
### Patch Changes
- fix: allow runes for variable declarations in the template ([#10879](https://github.com/sveltejs/svelte/pull/10879))
- feat: take form resets into account for two way bindings ([#10617](https://github.com/sveltejs/svelte/pull/10617))
- fix: handle multiple snippet parameters with one or more being optional ([#10833](https://github.com/sveltejs/svelte/pull/10833))
- breaking: apply fallback value every time in runes mode ([#10797](https://github.com/sveltejs/svelte/pull/10797))
## 5.0.0-next.81
### Patch Changes

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

Loading…
Cancel
Save