Version Packages (next) (#12924)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
readonly-props svelte@5.0.0-next.229
github-actions[bot] 1 month ago committed by GitHub
parent 63ec2e2e88
commit 363a5418e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -231,6 +231,7 @@
"friendly-candles-relate",
"friendly-clouds-rhyme",
"friendly-lies-camp",
"friendly-rice-confess",
"funny-bugs-kiss",
"funny-cooks-clean",
"funny-dragons-double",
@ -468,6 +469,7 @@
"old-jokes-deliver",
"old-mails-sneeze",
"old-oranges-compete",
"old-planets-bow",
"olive-apples-lick",
"olive-cobras-wonder",
"olive-forks-grin",
@ -545,6 +547,7 @@
"rich-cobras-exist",
"rich-elephants-relax",
"rich-garlics-laugh",
"rich-ladybugs-admire",
"rich-olives-yell",
"rich-plums-thank",
"rich-sheep-burn",
@ -704,6 +707,7 @@
"swift-feet-juggle",
"swift-knives-tie",
"swift-poets-carry",
"swift-queens-begin",
"swift-rats-sing",
"swift-ravens-hunt",
"swift-seahorses-deliver",
@ -731,6 +735,7 @@
"ten-ties-repair",
"ten-trainers-juggle",
"ten-worms-reflect",
"tender-bats-switch",
"tender-lemons-judge",
"tender-rocks-walk",
"tender-suns-love",

@ -1,5 +1,19 @@
# svelte
## 5.0.0-next.229
### Patch Changes
- feat: add `$state.link` rune ([#12545](https://github.com/sveltejs/svelte/pull/12545))
- fix: allow mixing slots and snippets in custom elements mode ([#12929](https://github.com/sveltejs/svelte/pull/12929))
- fix: small legibility improvement in `Snippet` type hint ([#12928](https://github.com/sveltejs/svelte/pull/12928))
- feat: support HMR with custom elements ([#12926](https://github.com/sveltejs/svelte/pull/12926))
- feat: error on invalid component name ([#12821](https://github.com/sveltejs/svelte/pull/12821))
## 5.0.0-next.228
### Patch Changes

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

Loading…
Cancel
Save