Version Packages (next) (#13290)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/13294/head svelte@5.0.0-next.249
github-actions[bot] 2 months ago committed by GitHub
parent 5210ae2610
commit 758fb2aa0f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -174,6 +174,7 @@
"eleven-donuts-sit",
"eleven-hounds-pump",
"eleven-icons-sniff",
"eleven-peaches-tap",
"eleven-teachers-drive",
"empty-bags-heal",
"empty-bulldogs-exercise",
@ -662,6 +663,7 @@
"silent-rabbits-join",
"silent-rocks-yell",
"silly-ducks-mix",
"silly-fishes-deny",
"silly-laws-happen",
"silly-lies-film",
"silly-masks-exist",
@ -895,6 +897,7 @@
"wicked-years-drive",
"wild-cows-chew",
"wild-foxes-wonder",
"wild-mice-look",
"wild-moose-compare",
"wild-moose-destroy",
"wild-poems-design",

@ -1,5 +1,15 @@
# svelte
## 5.0.0-next.249
### Patch Changes
- fix: ensure snapshot logs don't affect dependency graph ([#13286](https://github.com/sveltejs/svelte/pull/13286))
- fix: allow custom element styles to be updated in HMR mode ([#13225](https://github.com/sveltejs/svelte/pull/13225))
- fix: inject styles correctly when mounting inside an iframe ([#13225](https://github.com/sveltejs/svelte/pull/13225))
## 5.0.0-next.248
### Patch Changes

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

Loading…
Cancel
Save