Version Packages (next) (#10188)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10207/head svelte@5.0.0-next.36
github-actions[bot] 1 year ago committed by GitHub
parent b04c5bb398
commit 73c5983e9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -13,6 +13,8 @@
"angry-books-jam",
"beige-flies-wash",
"beige-rabbits-shave",
"big-cars-serve",
"brave-shrimps-kiss",
"brave-walls-destroy",
"breezy-carrots-flash",
"bright-peas-juggle",
@ -53,11 +55,13 @@
"five-tigers-search",
"flat-melons-protect",
"forty-comics-invent",
"forty-peaches-unite",
"four-flies-hammer",
"fresh-weeks-trade",
"friendly-lies-camp",
"funny-wombats-argue",
"gentle-sheep-hug",
"giant-moons-own",
"giant-roses-press",
"good-cars-visit",
"good-pianos-jump",
@ -114,6 +118,7 @@
"old-mails-sneeze",
"old-oranges-compete",
"olive-kangaroos-brake",
"olive-shirts-complain",
"orange-dingos-poke",
"polite-dolphins-care",
"polite-pumpkins-guess",

@ -1,5 +1,19 @@
# svelte
## 5.0.0-next.36
### Patch Changes
- fix: transform textarea and contenteditable binding expressions ([#10187](https://github.com/sveltejs/svelte/pull/10187))
- fix: improve transition outro easing ([#10190](https://github.com/sveltejs/svelte/pull/10190))
- fix: ensure unstate() only deeply applies to plain objects and arrays ([#10191](https://github.com/sveltejs/svelte/pull/10191))
- fix: improve invalid nested interactive element error ([#10199](https://github.com/sveltejs/svelte/pull/10199))
- fix: react to mutated slot props in legacy mode ([#10197](https://github.com/sveltejs/svelte/pull/10197))
## 5.0.0-next.35
### Patch Changes

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

Loading…
Cancel
Save