Version Packages (next) (#12366)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
pull/12386/head svelte@5.0.0-next.180
github-actions[bot] 2 months ago committed by GitHub
parent 9c1371a487
commit ce669987a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -339,6 +339,7 @@
"many-rockets-give",
"many-trees-fix",
"mean-jokes-exist",
"mean-numbers-cry",
"metal-clouds-raise",
"metal-lobsters-burn",
"metal-pans-trade",
@ -452,6 +453,7 @@
"rich-plums-thank",
"rich-sheep-burn",
"rich-tables-sing",
"rich-taxis-hear",
"rich-waves-mix",
"rotten-bags-type",
"rotten-buckets-develop",
@ -526,6 +528,7 @@
"slow-plums-chew",
"slow-wombats-reply",
"small-apples-eat",
"small-chefs-sing",
"small-owls-remain",
"small-papayas-laugh",
"small-sheep-type",
@ -550,6 +553,7 @@
"sour-geese-listen",
"sour-jeans-collect",
"sour-rules-march",
"sour-tomatoes-knock",
"sour-weeks-fix",
"spicy-jeans-deliver",
"spicy-peas-vanish",
@ -691,6 +695,7 @@
"witty-hornets-think",
"witty-phones-retire",
"witty-readers-provide",
"witty-sloths-impress",
"witty-steaks-dream",
"witty-tomatoes-care",
"witty-years-crash",

@ -1,5 +1,19 @@
# svelte
## 5.0.0-next.180
### Patch Changes
- fix: handle nested `:global(...)` selectors ([#12365](https://github.com/sveltejs/svelte/pull/12365))
- feat: include CSS in `<head>` when `css: 'injected'` ([#12374](https://github.com/sveltejs/svelte/pull/12374))
- fix: destroy effects that error on creation ([#12376](https://github.com/sveltejs/svelte/pull/12376))
- breaking: rename `legacy.componentApi` to `compatibility.componentApi` ([#12370](https://github.com/sveltejs/svelte/pull/12370))
- fix: correctly validate `<svelte:component>` with `bind:this` ([#12368](https://github.com/sveltejs/svelte/pull/12368))
## 5.0.0-next.179
### Patch Changes

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

Loading…
Cancel
Save