diff --git a/.changeset/pre.json b/.changeset/pre.json index 8a25b9de9c..178102977c 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -76,6 +76,7 @@ "dry-clocks-grow", "dry-eggs-play", "dry-eggs-retire", + "dry-fans-march", "dry-pillows-exist", "dull-coins-vanish", "dull-mangos-wave", @@ -162,6 +163,7 @@ "hungry-trees-travel", "itchy-beans-melt", "itchy-bulldogs-tan", + "itchy-eels-marry", "itchy-kings-deliver", "itchy-lions-wash", "itchy-terms-guess", @@ -279,6 +281,7 @@ "rich-cobras-exist", "rich-garlics-laugh", "rich-olives-yell", + "rich-plums-thank", "rich-sheep-burn", "rich-tables-sing", "rich-waves-mix", @@ -308,6 +311,7 @@ "sharp-kids-happen", "sharp-tomatoes-learn", "shiny-baboons-play", + "shiny-rats-heal", "shiny-shrimps-march", "short-buses-camp", "short-countries-rush", diff --git a/packages/svelte/CHANGELOG.md b/packages/svelte/CHANGELOG.md index 2e22b024d4..f3106dfa22 100644 --- a/packages/svelte/CHANGELOG.md +++ b/packages/svelte/CHANGELOG.md @@ -1,5 +1,17 @@ # svelte +## 5.0.0-next.107 + +### Patch Changes + +- fix: refine css `:global()` selector checks in a compound selector ([#11142](https://github.com/sveltejs/svelte/pull/11142)) + +- fix: remove memory leak from bind:this ([#11194](https://github.com/sveltejs/svelte/pull/11194)) + +- fix: remove memory leak from retaining old DOM elements ([#11197](https://github.com/sveltejs/svelte/pull/11197)) + +- feat: add warning when using `$bindable` rune without calling it ([#11181](https://github.com/sveltejs/svelte/pull/11181)) + ## 5.0.0-next.106 ### Patch Changes diff --git a/packages/svelte/package.json b/packages/svelte/package.json index 82f502b32b..c02a89d8c3 100644 --- a/packages/svelte/package.json +++ b/packages/svelte/package.json @@ -2,7 +2,7 @@ "name": "svelte", "description": "Cybernetically enhanced web apps", "license": "MIT", - "version": "5.0.0-next.106", + "version": "5.0.0-next.107", "type": "module", "types": "./types/index.d.ts", "engines": { diff --git a/packages/svelte/src/version.js b/packages/svelte/src/version.js index e2cea9e696..0e037fd009 100644 --- a/packages/svelte/src/version.js +++ b/packages/svelte/src/version.js @@ -6,5 +6,5 @@ * https://svelte.dev/docs/svelte-compiler#svelte-version * @type {string} */ -export const VERSION = '5.0.0-next.106'; +export const VERSION = '5.0.0-next.107'; export const PUBLIC_VERSION = '5';