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

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

Loading…
Cancel
Save