Version Packages (next) (#10509)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/10516/head svelte@5.0.0-next.57
github-actions[bot] 8 months ago committed by GitHub
parent 5605e8cf49
commit 11b69459b9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -14,8 +14,10 @@
"angry-books-jam",
"angry-plums-punch",
"beige-flies-wash",
"beige-mirrors-listen",
"beige-rabbits-shave",
"big-cars-serve",
"big-eggs-flash",
"big-eyes-carry",
"big-geese-act",
"blue-timers-film",
@ -24,16 +26,19 @@
"breezy-carrots-flash",
"bright-peas-juggle",
"bright-snakes-sing",
"brown-months-fry",
"brown-spoons-boil",
"chatty-cups-drop",
"chatty-taxis-juggle",
"chilled-pumas-invite",
"chilly-dolphins-lick",
"chilly-snakes-scream",
"clean-eels-beg",
"clever-chefs-relate",
"clever-rockets-burn",
"cold-birds-own",
"cool-ants-leave",
"cool-rabbits-tickle",
"cuddly-pianos-drop",
"curly-lizards-dream",
"curvy-cups-cough",
@ -67,6 +72,7 @@
"fifty-steaks-float",
"five-tigers-search",
"flat-melons-protect",
"fluffy-dolls-share",
"fluffy-humans-worry",
"forty-comics-invent",
"forty-dolls-wave",
@ -247,6 +253,7 @@
"ten-worms-reflect",
"thick-cycles-rule",
"thick-pans-tell",
"thick-shirts-deliver",
"thin-foxes-lick",
"thirty-flowers-sit",
"thirty-ghosts-fix",

@ -1,5 +1,23 @@
# svelte
## 5.0.0-next.57
### Patch Changes
- fix: correctly scope CSS selectors with descendant combinators ([#10490](https://github.com/sveltejs/svelte/pull/10490))
- feat: implement support for `:is(...)` and `:where(...)` ([#10490](https://github.com/sveltejs/svelte/pull/10490))
- chore: treeshake unused store subscriptions in SSR mode ([#10506](https://github.com/sveltejs/svelte/pull/10506))
- fix: warn against accidental global event referenced ([#10442](https://github.com/sveltejs/svelte/pull/10442))
- fix: improve bind:this support for each blocks ([#10510](https://github.com/sveltejs/svelte/pull/10510))
- feat: implement nested CSS support ([#10490](https://github.com/sveltejs/svelte/pull/10490))
- breaking: encapsulate/remove selectors inside `:is(...)` and `:where(...)` ([#10490](https://github.com/sveltejs/svelte/pull/10490))
## 5.0.0-next.56
### Patch Changes

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

Loading…
Cancel
Save