Version Packages (next) (#12998)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13014/head svelte@5.0.0-next.237
github-actions[bot] 4 weeks ago committed by GitHub
parent 975918c602
commit e7e7ef6d00
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -82,6 +82,7 @@
"clean-cats-wave",
"clean-eels-beg",
"clean-melons-wash",
"clean-shirts-yawn",
"clever-chefs-relate",
"clever-maps-travel",
"clever-rockets-burn",
@ -198,6 +199,7 @@
"fifty-rice-wait",
"fifty-steaks-float",
"fifty-toys-invite",
"five-maps-reflect",
"five-tigers-search",
"flat-feet-visit",
"flat-ghosts-fly",
@ -273,6 +275,7 @@
"great-fans-unite",
"great-icons-retire",
"great-plums-pretend",
"green-baboons-sip",
"green-eggs-approve",
"green-fishes-lie",
"green-hounds-play",
@ -419,6 +422,7 @@
"mighty-files-hammer",
"mighty-frogs-obey",
"mighty-paws-smash",
"mighty-poets-fix",
"mighty-shoes-nail",
"modern-apricots-promise",
"modern-fishes-double",
@ -824,6 +828,7 @@
"weak-terms-destroy",
"wet-bats-exercise",
"wet-games-fly",
"wet-pears-buy",
"wet-pears-remain",
"wet-wombats-repeat",
"wicked-bikes-matter",

@ -1,5 +1,19 @@
# svelte
## 5.0.0-next.237
### Patch Changes
- breaking: throw error if derived creates state and then depends on it ([#12985](https://github.com/sveltejs/svelte/pull/12985))
- fix: ensure assignments to state field inside constructor trigger effects ([#12985](https://github.com/sveltejs/svelte/pull/12985))
- fix: ensure $inspect works with SvelteMap and SvelteSet ([#12994](https://github.com/sveltejs/svelte/pull/12994))
- chore: default options.filename to "(unknown)" ([#12997](https://github.com/sveltejs/svelte/pull/12997))
- feat: allow non-synchronous legacy component instantiation ([#12970](https://github.com/sveltejs/svelte/pull/12970))
## 5.0.0-next.236
### Patch Changes

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

Loading…
Cancel
Save