Version Packages (next) (#10070)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10098/head svelte@5.0.0-next.29
github-actions[bot] 6 months ago committed by GitHub
parent ddd7926240
commit 0c58524d23
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -30,6 +30,8 @@
"dirty-garlics-design",
"dirty-tips-add",
"dry-clocks-grow",
"dry-eggs-play",
"dry-eggs-retire",
"dull-mangos-wave",
"early-ads-tie",
"eight-steaks-shout",
@ -49,6 +51,7 @@
"funny-wombats-argue",
"gentle-sheep-hug",
"giant-roses-press",
"good-cars-visit",
"good-pianos-jump",
"great-icons-retire",
"green-eggs-approve",
@ -74,6 +77,7 @@
"lazy-months-knock",
"lazy-spiders-think",
"lemon-geese-drum",
"light-humans-hang",
"light-pens-watch",
"long-buckets-lay",
"long-crews-return",
@ -91,7 +95,9 @@
"odd-schools-wait",
"odd-shoes-cheat",
"old-flies-jog",
"old-houses-drum",
"old-mails-sneeze",
"old-oranges-compete",
"orange-dingos-poke",
"polite-dolphins-care",
"polite-pumpkins-guess",
@ -114,6 +120,7 @@
"seven-deers-jam",
"seven-ravens-check",
"sharp-gorillas-impress",
"sharp-kids-happen",
"sharp-tomatoes-learn",
"shiny-baboons-play",
"shiny-shrimps-march",

@ -1,5 +1,23 @@
# svelte
## 5.0.0-next.29
### Patch Changes
- fix: improve text node output ([#10081](https://github.com/sveltejs/svelte/pull/10081))
- fix: improve style parser whitespace handling ([#10077](https://github.com/sveltejs/svelte/pull/10077))
- fix: allow input elements within button elements ([#10083](https://github.com/sveltejs/svelte/pull/10083))
- fix: support TypeScript's `satisfies` operator ([#10068](https://github.com/sveltejs/svelte/pull/10068))
- fix: provide `unstate` in server environment ([`877ff1ee7`](https://github.com/sveltejs/svelte/commit/877ff1ee7d637e2248145d975748e1012a977396))
- fix: improve key block reactivity detection ([#10092](https://github.com/sveltejs/svelte/pull/10092))
- fix: always treat spread attributes as reactive and separate them if needed ([#10071](https://github.com/sveltejs/svelte/pull/10071))
## 5.0.0-next.28
### Patch Changes

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

Loading…
Cancel
Save