Skip to content

Version Packages (next) #10509

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down
18 changes: 18 additions & 0 deletions packages/svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion packages/svelte/src/version.js
Original file line number Diff line number Diff line change
Expand Up @@ -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';